diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-26 04:06:37 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-26 04:06:37 +0000 |
commit | 1e7ba2928ca4c01a3283bf34ceb5b02071cd45dc (patch) | |
tree | cec3ef90c14a7acca1cad8159a8cc89c79a8ac91 /sbin/isakmpd/regress/rsakeygen/Makefile | |
parent | 13713aa5481cbfad5bc3a6e734d6195a3c172980 (diff) |
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.
| =============================================================================
Diffstat (limited to 'sbin/isakmpd/regress/rsakeygen/Makefile')
-rw-r--r-- | sbin/isakmpd/regress/rsakeygen/Makefile | 17 |
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> |