aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/login/Makefile
diff options
context:
space:
mode:
authorPaul Traina <pst@FreeBSD.org>1994-10-19 00:03:45 +0000
committerPaul Traina <pst@FreeBSD.org>1994-10-19 00:03:45 +0000
commit2ddadf840c8d36ddbe8f3ebe10e718016126e00f (patch)
tree18581614639f8a987cdf2526bd645ecfdd38abd3 /usr.bin/login/Makefile
parent1c423e89edcc640179d4ef310390bb3d6ab5a302 (diff)
Notes
Diffstat (limited to 'usr.bin/login/Makefile')
-rw-r--r--usr.bin/login/Makefile15
1 files changed, 8 insertions, 7 deletions
diff --git a/usr.bin/login/Makefile b/usr.bin/login/Makefile
index bae657d9640e..21131d954da0 100644
--- a/usr.bin/login/Makefile
+++ b/usr.bin/login/Makefile
@@ -1,16 +1,18 @@
# From: @(#)Makefile 8.1 (Berkeley) 7/19/93
-# $Id$
+# $Id: Makefile,v 1.8 1994/09/30 13:26:15 csgr Exp $
PROG= login
MAN1= login.1
MAN5= login.access.5
-SRCS= login.c login_access.c login_skey.c login_fbtab.c
-DPADD= ${LIBUTIL} ${LIBSKEY}
-LDADD= -lutil -lcrypt -lskey
+SRCS= login.c login_access.c login_fbtab.c
+
CFLAGS+=-DLOGIN_ACCESS -DSKEY -DLOGALL
-.if exists(${DESTDIR}/usr/lib/libkrb.a) && (defined(MAKE_KERBEROS) \
- || defined(MAKE_EBONES))
+DPADD= ${LIBUTIL} ${LIBCRYPT} ${LIBSKEY} ${LIBMD}
+LDADD= -lutil -lcrypt -lskey -lmd
+
+.if exists(${DESTDIR}/usr/lib/libkrb.a) && \
+ (defined(MAKE_KERBEROS) || defined(MAKE_EBONES))
CFLAGS+=-DKERBEROS
SRCS+= klogin.c
DPADD+= ${LIBKRB} ${LIBDES}
@@ -22,4 +24,3 @@ BINMODE=4555
INSTALLFLAGS=-fschg
.include <bsd.prog.mk>
-