summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorniklas <niklas@openbsd.org>1999-02-26 04:03:01 +0000
committerniklas <niklas@openbsd.org>1999-02-26 04:03:01 +0000
commit83e92ffcc31717684f4ceed7429a55c1bb3a03e9 (patch)
tree450f6dc4800f7770db84548c707f32f368f4f42f
parentMerge from the Ericsson repository (diff)
downloadwireguard-openbsd-83e92ffcc31717684f4ceed7429a55c1bb3a03e9.tar.xz
wireguard-openbsd-83e92ffcc31717684f4ceed7429a55c1bb3a03e9.zip
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. | =============================================================================
-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>