Module Name: src
Committed By: agc
Date: Mon Jun 8 06:13:56 UTC 2009
Added Files:
src/crypto/external/bsd/netpgp/netpgpverify: Makefile
Log Message:
Add a reachover Makefile for building the standalone netpgpverify program
To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/crypto/external/bsd/netpgp/netpgpverify/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Added files:
Index: src/crypto/external/bsd/netpgp/netpgpverify/Makefile
diff -u /dev/null src/crypto/external/bsd/netpgp/netpgpverify/Makefile:1.1
--- /dev/null Mon Jun 8 06:13:56 2009
+++ src/crypto/external/bsd/netpgp/netpgpverify/Makefile Mon Jun 8 06:13:56 2009
@@ -0,0 +1,21 @@
+# $NetBSD: Makefile,v 1.1 2009/06/08 06:13:56 agc Exp $
+
+PROG= netpgpverify
+BINDIR= /usr/bin
+SRCS= verify.c
+
+CPPFLAGS+= -I${.CURDIR}/../dist/include
+
+LDADD+= -lcrypto -lz -lbz2
+DPADD+= ${LIBCRYPTO} ${LIBZ} ${LIBBZ2}
+
+MAN= netpgpverify.1
+
+# although the code is/was WARNS=4 clean, when linking, there is a warning
+# about libidea being a patented algorithm, and WARNS>0 treats warnings as
+# errors. For now, just set WARNS off.
+WARNS= 0
+
+.PATH: ${.CURDIR}/../dist/src/lib ${.CURDIR}/../dist/src/bin
+
+.include <bsd.prog.mk>