summaryrefslogtreecommitdiff
path: root/sbin/isakmpd/regress
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1999-02-26 04:03:02 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1999-02-26 04:03:02 +0000
commit5855b453d763d1c134e46524e2bd25a2a9eaa643 (patch)
tree72fddecb9c83a546a63bd11401a6feffbda01cce /sbin/isakmpd/regress
parent29e4a813db932d9781baf3df66596e031374505c (diff)
Merge from the Ericsson repository
| revision 1.5 | date: 1999/02/25 15:10:04; author: niklas; state: Exp; lines: +1 -1 | Whoops | ---------------------------- | revision 1.4 | date: 1999/02/25 15:07:29; author: niklas; state: Exp; lines: +5 -3 | Mesing with the new sysdep paths | ---------------------------- | revision 1.3 | date: 1998/08/14 08:52:17; author: niklas; state: Exp; lines: +3 -2 | Work in objdir setups correctly | ---------------------------- | revision 1.2 | date: 1998/08/11 20:30:41; author: provos; state: Exp; lines: +1 -1 | update to reflect recent changes | ---------------------------- | revision 1.1 | date: 1998/08/08 23:18:08; author: provos; state: Exp; | regress for ASN.1 decoding, basically only parses the SSH certificate | down until reaching the public key. | =============================================================================
Diffstat (limited to 'sbin/isakmpd/regress')
-rw-r--r--sbin/isakmpd/regress/asn/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/sbin/isakmpd/regress/asn/Makefile b/sbin/isakmpd/regress/asn/Makefile
new file mode 100644
index 00000000000..f0d60e3f6ec
--- /dev/null
+++ b/sbin/isakmpd/regress/asn/Makefile
@@ -0,0 +1,16 @@
+# Test ASN
+
+PROG= asntest
+SRCS= asntest.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>