5c00743626
Based on work by Vivek Prakash and Gianluca Guida. See UPDATING about caveats on currently existing accounts. . restores netbsd libc pwcache functions
19 lines
374 B
Makefile
19 lines
374 B
Makefile
# from: @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $NetBSD: Makefile,v 1.19 2009/01/14 23:18:57 christos Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= pwd_mkdb
|
|
MAN= pwd_mkdb.8
|
|
.if defined(__MINIX)
|
|
CPPFLAGS+= -I${NETBSDSRCDIR}/lib/nbsd_libc/include
|
|
.else
|
|
CPPFLAGS+= -I${NETBSDSRCDIR}/lib/libc/include
|
|
.endif
|
|
|
|
.ifndef HOSTPROG
|
|
LDADD+= -lutil
|
|
DPADD+= ${LIBUTIL}
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|