Makefile revision 1.1.1.1.2.2
1#	$NetBSD: Makefile,v 1.1.1.1.2.2 2009/05/13 19:16:01 jym Exp $
2
3.include <bsd.own.mk>
4
5PROG=		netpgp
6BINDIR=		/usr/bin
7
8CPPFLAGS+=	-I${.CURDIR}/../dist/include
9
10LIBNETPGPDIR!=	cd ${.CURDIR}/../lib && ${PRINTOBJDIR}
11LDADD+=		-L${LIBNETPGPDIR} -lnetpgp
12DPADD+=		${LIBNETPGPDIR}/libnetpgp.a
13
14MAN=		netpgp.1
15
16# although the code is/was WARNS=4 clean, when linking, there is a warning
17# about libidea being a patented algorithm, and WARNS>0 treats warnings as
18# errors. For now, just set WARNS off.
19WARNS=		0
20
21.PATH: ${.CURDIR}/../dist/src/bin
22
23.include <bsd.prog.mk>
24