Add build glue for the example client and server programs for PAA

This commit is contained in:
agc 2010-09-10 05:30:28 +00:00
parent 0a453369f8
commit b1c86f5f08
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# $NetBSD: Makefile,v 1.1 2010/09/10 05:30:28 agc Exp $
.include <bsd.own.mk>
PROG= paaclient
#BINDIR= /usr/bin
SRCS= b64.c libpaa.c client.c
CPPFLAGS+= -I${.CURDIR}/../../dist/include -I${.CURDIR}/../../dist/src/pgp2ssh
LDADD+= -lmj -lnetpgp -lcrypto -lz -lbz2
MKMAN=no
WARNS= 0
.PATH: ${.CURDIR}/../../dist/src/libpaa ${.CURDIR}/../../dist/src/pgp2ssh
.include <bsd.prog.mk>

View File

@ -0,0 +1,18 @@
# $NetBSD: Makefile,v 1.1 2010/09/10 05:30:28 agc Exp $
.include <bsd.own.mk>
PROG= paaserver
#BINDIR= /usr/bin
SRCS= b64.c libpaa.c server.c
CPPFLAGS+= -I${.CURDIR}/../../dist/include -I${.CURDIR}/../../dist/src/pgp2ssh
LDADD+= -lmj -lnetpgp -lcrypto -lz -lbz2
MKMAN=no
WARNS= 0
.PATH: ${.CURDIR}/../../dist/src/libpaa ${.CURDIR}/../../dist/src/pgp2ssh
.include <bsd.prog.mk>