Add a reachover Makefile for building the standalone netpgpverify program

This commit is contained in:
agc 2009-06-08 06:13:56 +00:00
parent 953dc192b5
commit 1dfa6d3632
1 changed files with 21 additions and 0 deletions

View File

@ -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>