5c00743626
Based on work by Vivek Prakash and Gianluca Guida. See UPDATING about caveats on currently existing accounts. . restores netbsd libc pwcache functions
51 lines
1 KiB
Makefile
51 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.41 2007/05/28 12:06:29 tls Exp $
|
|
# from: @(#)Makefile 8.3 (Berkeley) 4/2/94
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if defined(__MINIX)
|
|
USE_YP= no
|
|
USE_KERBEROS= no
|
|
USE_PAM= no
|
|
.endif
|
|
|
|
USE_FORT?= yes # setuid
|
|
PROG= passwd
|
|
SRCS= local_passwd.c passwd.c
|
|
MAN= passwd.1
|
|
|
|
CPPFLAGS+=-I${.CURDIR} #-DLOGIN_CAP
|
|
|
|
.if (${USE_YP} != "no")
|
|
SRCS+= yp_passwd.c
|
|
CPPFLAGS+=-DYP
|
|
DPADD+= ${LIBRPCSVC}
|
|
LDADD+= -lrpcsvc
|
|
LINKS+= ${BINDIR}/passwd ${BINDIR}/yppasswd
|
|
MAN+= yppasswd.1
|
|
.endif
|
|
|
|
DPADD+= ${LIBCRYPT} ${LIBUTIL}
|
|
LDADD+= -lcrypt -lutil
|
|
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
|
|
.if (${USE_KERBEROS} != "no")
|
|
CPPFLAGS+= -DKERBEROS5 -I${DESTDIR}/usr/include/krb5
|
|
SRCS+= krb5_passwd.c
|
|
|
|
DPADD+= ${LIBKRB5} ${LIBCRYPTO} ${LIBASN1} ${LIBCOM_ERR} ${LIBROKEN} ${LIBCRYPT}
|
|
LDADD+= -lkrb5 -lcrypto -lasn1 -lcom_err -lroken -lcrypt
|
|
LINKS+= ${BINDIR}/passwd ${BINDIR}/kpasswd
|
|
MAN+= kpasswd.1
|
|
.endif
|
|
|
|
.if (${USE_PAM} != "no")
|
|
CPPFLAGS+=-DUSE_PAM
|
|
SRCS+= pam_passwd.c
|
|
LDADD+=-lpam ${PAM_STATIC_LDADD}
|
|
DPADD+=${LIBPAM} ${PAM_STATIC_DPADD}
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|