84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
30 lines
627 B
Makefile
30 lines
627 B
Makefile
# $NetBSD: Makefile,v 1.15 2007/05/28 12:06:25 tls Exp $
|
|
# @(#)Makefile 8.2 (Berkeley) 4/2/94
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
USE_FORT?= yes # setuid
|
|
PROG= chpass
|
|
SRCS= chpass.c edit.c field.c table.c util.c
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
.PATH: ${NETBSDSRCDIR}/lib/libc/gen
|
|
LINKS= ${BINDIR}/chpass ${BINDIR}/chfn ${BINDIR}/chpass ${BINDIR}/chsh
|
|
MLINKS= chpass.1 chfn.1 chpass.1 chsh.1
|
|
|
|
CPPFLAGS+=-I${NETBSDSRCDIR}/lib/libc/include
|
|
|
|
.if (${USE_YP} != "no")
|
|
SRCS+= pw_yp.c
|
|
CPPFLAGS+=-DYP
|
|
DPADD+= ${LIBRPCSVC}
|
|
LDADD+= -lrpcsvc
|
|
.else
|
|
SRCS+= getpwent.c
|
|
CPPFLAGS.getpwent.c=-UYP
|
|
.endif
|
|
|
|
DPADD+= ${LIBUTIL}
|
|
LDADD+= -lutil
|
|
|
|
.include <bsd.prog.mk>
|