xref: /openbsd/usr.bin/encrypt/Makefile (revision 404b540a)
1#	$OpenBSD: Makefile,v 1.7 2002/06/27 19:56:03 art Exp $
2
3# Must be static because the floppies use it through a chroot.
4
5LDSTATIC=	${STATIC}
6PROG=	encrypt
7SRCS= encrypt.c pwd_gensalt.c
8.PATH: ${.CURDIR}/../passwd
9
10LDADD = -lutil
11DPADD= ${LIBUTIL}
12LIBEXEC?=       /usr/libexec
13
14LINKS=	${BINDIR}/encrypt ${LIBEXEC}/makekey
15MLINKS=	encrypt.1 makekey.8
16
17.include <bsd.prog.mk>
18