diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-26 03:26:53 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-26 03:26:53 +0000 |
commit | 248594aab3e39a2852b7b5596dccf847f3fe307a (patch) | |
tree | 44727f4f05145dc239fd393e7a19486a821fcb55 /sbin/isakmpd/regress/b2n | |
parent | b0067b927db9a5fb07226e49ce0ff2a951c024aa (diff) |
Merge from the Ericsson repository
| revision 1.7
| date: 1999/02/25 15:10:05; author: niklas; state: Exp; lines: +2 -2
| Whoops
| ----------------------------
| revision 1.6
| date: 1999/02/25 15:07:30; author: niklas; state: Exp; lines: +6 -4
| Mesing with the new sysdep paths
| ----------------------------
Diffstat (limited to 'sbin/isakmpd/regress/b2n')
-rw-r--r-- | sbin/isakmpd/regress/b2n/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sbin/isakmpd/regress/b2n/Makefile b/sbin/isakmpd/regress/b2n/Makefile index 3447de969d6..09cd9ada81b 100644 --- a/sbin/isakmpd/regress/b2n/Makefile +++ b/sbin/isakmpd/regress/b2n/Makefile @@ -1,14 +1,16 @@ -# $OpenBSD: Makefile,v 1.3 1998/12/21 01:02:28 niklas Exp $ -# $EOM: Makefile,v 1.5 1998/12/21 00:32:58 niklas Exp $ +# $OpenBSD: Makefile,v 1.4 1999/02/26 03:26:52 niklas Exp $ +# $EOM: Makefile,v 1.7 1999/02/25 15:10:05 niklas Exp $ # Test HMAC: PROG= b2ntest SRCS= math_2n.c b2ntest.c util.c sysdep.c -.PATH: ${.CURDIR}/../../ NOMAN= -TOPOBJ!= cd ${.CURDIR}/../..; printf "all:\n\t@pwd\n" |${MAKE} -f- -CFLAGS+= -I${TOPOBJ} -I${.CURDIR}/../../ -Wall +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 DEBUG= -g -.include <bsd.prog.mk>
\ No newline at end of file +.include <bsd.prog.mk> |