ebffaa4250
. move crypt() from minix-specific to netbsd -lcrypt
11 lines
226 B
Makefile
11 lines
226 B
Makefile
PROG= passwd
|
|
BINMODE= 4755
|
|
MAN=
|
|
.if defined(NBSD_LIBC) && (${NBSD_LIBC} != "no")
|
|
LDADD+= -lcrypt
|
|
.endif
|
|
|
|
LINKS+= ${BINDIR}/passwd ${BINDIR}/chsh
|
|
LINKS+= ${BINDIR}/passwd ${BINDIR}/chfn
|
|
|
|
.include <bsd.prog.mk>
|