NetBSD/usr.bin/pwhash/Makefile
provos d15e0fa262 password hashing utility that allows des, md5 or bcrypt passwords to be
created in scripts;  tool originally from downsj@openbsd.org;
approved by perry.
2002-10-01 20:48:58 +00:00

16 lines
314 B
Makefile

# $NetBSD: Makefile,v 1.1 2002/10/01 20:48:58 provos Exp $
# from: @(#)Makefile 8.3 (Berkeley) 4/2/94
.include <bsd.own.mk>
PROG= pwhash
SRCS= pwhash.c pwd_gensalt.c
.PATH: ${.CURDIR}/../passwd
CPPFLAGS+=-I${.CURDIR} -DLOGIN_CAP
DPADD+= ${LIBCRYPT} ${LIBUTIL}
LDADD+= -lcrypt -lutil
.include <bsd.prog.mk>