1 # $NetBSD: Makefile,v 1.23 1999/12/23 01:02:52 mjl Exp $ 2 # from: @(#)Makefile 8.3 (Berkeley) 4/2/94 3 4 SRCTOP= ../.. 5 .include <bsd.crypto.mk> 6 7 PROG= passwd 8 SRCS= local_passwd.c yp_passwd.c passwd.c 9 DPADD+= ${LIBRPCSVC} ${LIBCRYPT} ${LIBUTIL} 10 LDADD+= -lrpcsvc -lcrypt -lutil 11 CPPFLAGS+=-I${.CURDIR} -DYP 12 13 LINKS= ${BINDIR}/passwd ${BINDIR}/yppasswd 14 MLINKS= passwd.1 yppasswd.1 15 16 BINOWN= root 17 BINMODE=4555 18 .if defined(notyet) 19 INSTALLFLAGS=-fschg 20 .endif 21 22 .if defined(CRYPTOPATH) 23 .sinclude "${CRYPTOPATH}/usr.bin/passwd/Makefile.frag" 24 .endif 25 26 .include <bsd.prog.mk> 27 28 # getpwent.o: getpwent.c 29 # ${COMPILE.c} -UYP ${.IMPSRC} 30