diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-26 04:07:36 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-26 04:07:36 +0000 |
commit | 8047a2479610fb608a57e41a55520c7f67fed44e (patch) | |
tree | 28c6986bd204e28761741e3b3a8445658b7365bf /sbin | |
parent | 00175648c763da9bd7e9544f3cec68fc8e507e24 (diff) |
Merge from the Ericsson repository
| revision 1.5
| date: 1999/02/25 15:10:11; author: niklas; state: Exp; lines: +2 -2
| Whoops
| ----------------------------
| revision 1.4
| date: 1999/02/25 15:07:36; author: niklas; state: Exp; lines: +6 -4
| Mesing with the new sysdep paths
| ----------------------------
| revision 1.3
| date: 1998/12/21 00:41:59; author: niklas; state: Exp; lines: +2 -0
| RCS Ids
| ----------------------------
| revision 1.2
| date: 1998/08/14 08:52:19; author: niklas; state: Exp; lines: +3 -2
| Work in objdir setups correctly
| ----------------------------
| revision 1.1
| date: 1998/08/11 20:29:16; author: provos; state: Exp;
| add a tool for generating x509 certificates
| =============================================================================
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/isakmpd/regress/x509/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sbin/isakmpd/regress/x509/Makefile b/sbin/isakmpd/regress/x509/Makefile new file mode 100644 index 00000000000..3121f71e2cb --- /dev/null +++ b/sbin/isakmpd/regress/x509/Makefile @@ -0,0 +1,18 @@ +# $Id: Makefile,v 1.4 1999/02/26 04:07:35 niklas Exp $ + +# Test X509 + +PROG= x509test +SRCS= x509test.c conf.c asn.c asn_useful.c gmp_util.c log.c pkcs.c \ + sysdep.c hash.c x509.c +TOPSRC= ${.CURDIR}/../.. +TOPOBJ!= cd ${TOPSRC}; printf "all:\n\t@pwd\n" |${MAKE} -f- +OS!= awk '/^OS=/ { print $$2 }' ${.CURDIR}/../../Makefile +.PATH: ${TOPSRC} ${TOPSRC}/sysdep/${OS} ${TOPOBJ} +CFLAGS+= -I${TOPSRC} -I${TOPSRC}/sysdep/${OS} -I${TOPOBJ} -Wall +LDADD+= -lgmp +DPADD+= ${LIBDES} +NOMAN= +DEBUG= -g + +.include <bsd.prog.mk> |