summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorniklas <niklas@openbsd.org>1999-02-26 04:06:36 +0000
committerniklas <niklas@openbsd.org>1999-02-26 04:06:36 +0000
commitc654956eb08c37eebc9b1faa7803193148125e02 (patch)
treed49818b06a5eaa172a039b52f896723870c052bb
parentMerge from the Ericsson repository (diff)
downloadwireguard-openbsd-c654956eb08c37eebc9b1faa7803193148125e02.tar.xz
wireguard-openbsd-c654956eb08c37eebc9b1faa7803193148125e02.zip
Merge from the Ericsson repository
| revision 1.3 | date: 1999/02/25 15:12:01; author: niklas; state: Exp; lines: +6 -3 | More messing with the new sysdep paths | ---------------------------- | revision 1.2 | date: 1998/12/21 00:41:58; author: niklas; state: Exp; lines: +2 -0 | RCS Ids | ---------------------------- | revision 1.1 | date: 1998/08/09 20:04:41; author: provos; state: Exp; | a tool for generating rsa keypair, a spin off of this might be used later | as key generation tool for the daemon. | =============================================================================
-rw-r--r--sbin/isakmpd/regress/rsakeygen/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/sbin/isakmpd/regress/rsakeygen/Makefile b/sbin/isakmpd/regress/rsakeygen/Makefile
new file mode 100644
index 00000000000..b199ad8d108
--- /dev/null
+++ b/sbin/isakmpd/regress/rsakeygen/Makefile
@@ -0,0 +1,17 @@
+# $Id: Makefile,v 1.4 1999/02/26 04:06:36 niklas Exp $
+
+# RSA Key Generation
+
+PROG= rsakeygen
+SRCS= log.c asn.c gmp_util.c pkcs.c rsakeygen.c sysdep.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>