aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/passwd/Makefile
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>1997-09-28 08:57:24 +0000
committerMark Murray <markm@FreeBSD.org>1997-09-28 08:57:24 +0000
commit7f80a020808cbee4f6fae0a3b01e85b5b9e317ee (patch)
tree3b827e7e3b74604affc98a33edc81ffdd81fc47d /usr.bin/passwd/Makefile
parentf714a88adcc16bcb0941a5be8eb15974b37ac788 (diff)
Changes for KTH KerberosIV.
Also quieten -Wall a bit.
Notes
Notes: svn path=/head/; revision=29922
Diffstat (limited to 'usr.bin/passwd/Makefile')
-rw-r--r--usr.bin/passwd/Makefile13
1 files changed, 6 insertions, 7 deletions
diff --git a/usr.bin/passwd/Makefile b/usr.bin/passwd/Makefile
index b2346b208f27..c4c1586f624a 100644
--- a/usr.bin/passwd/Makefile
+++ b/usr.bin/passwd/Makefile
@@ -1,9 +1,10 @@
# From: @(#)Makefile 8.3 (Berkeley) 4/2/94
-# $Id: Makefile,v 1.2 1997/07/28 18:31:45 wpaul Exp $
+# $Id: Makefile,v 1.25 1997/07/29 15:45:04 wpaul Exp $
PROG= passwd
SRCS= local_passwd.c yppasswd_private_xdr.c yp_passwd.c \
passwd.c pw_copy.c pw_util.c pw_yp.c
+CFLAGS+=-Wall
DPADD= ${LIBCRYPT} ${LIBRPCSVC} ${LIBUTIL}
LDADD= -lcrypt -lrpcsvc -lutil
@@ -55,15 +56,13 @@ MAN1=passwd.1
LINKS=${BINDIR}/passwd ${BINDIR}/yppasswd
MLINKS=passwd.1 yppasswd.1
-.if exists(${DESTDIR}/usr/lib/libkrb.a) && (defined(MAKE_EBONES))
-SRCS+= kpasswd.c
+.if exists(${DESTDIR}/usr/lib/libkrb.a) && (defined(MAKE_KERBEROS4))
+SRCS+= kpasswd_standalone.c
.PATH: ${.CURDIR}/../../usr.bin/chpass ${.CURDIR}/../../usr.sbin/vipw \
${.CURDIR}/../../usr.bin/rlogin ${.CURDIR}/../../usr.bin/passwd \
- ${.CURDIR}/../../eBones/usr.bin/passwd
+ ${.CURDIR}/../../crypto/kerberosIV/kadmin
-CFLAGS+= -DKERBEROS \
- -I${.CURDIR}/../../eBones/include \
- -I${.CURDIR}/../../eBones/lib/libkadm
+CFLAGS+= -DKERBEROS
# XXX not defined: ${LIBKADM}, ${LIBCOM_ERR}
DPADD= ${LIBKADM} ${LIBKRB} ${LIBDES} ${LIBCRYPT} ${LIBRPCSVC} ${LIBCOM_ERR} ${LIBUTIL}
LDADD= -lkadm -lkrb -ldes -lcrypt -lrpcsvc -lcom_err -lutil