Home | History | Annotate | Line # | Download | only in bin
Makefile revision 1.1.1.1
      1 #	$NetBSD: Makefile,v 1.1.1.1 2009/04/23 06:31:55 agc Exp $
      2 
      3 .include <bsd.own.mk>
      4 
      5 PROG=		netpgp
      6 BINDIR=		/usr/bin
      7 
      8 CPPFLAGS+=	-I${.CURDIR}/../dist/include
      9 
     10 LIBNETPGPDIR!=	cd ${.CURDIR}/../lib && ${PRINTOBJDIR}
     11 LDADD+=		-L${LIBNETPGPDIR} -lnetpgp
     12 DPADD+=		${LIBNETPGPDIR}/libnetpgp.a
     13 
     14 MAN=		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.
     19 WARNS=		0
     20 
     21 .PATH: ${.CURDIR}/../dist/src/bin
     22 
     23 .include <bsd.prog.mk>
     24