minix/usr.sbin/pwd_mkdb/Makefile
Ben Gras 5c00743626 Switch to NetBSD passwd format
Based on work by Vivek Prakash and Gianluca Guida.

See UPDATING about caveats on currently existing accounts.

	. restores netbsd libc pwcache functions
2011-11-14 14:47:42 +00:00

20 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>