diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-26 03:28:32 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-26 03:28:32 +0000 |
commit | 253a98f9b557f6762c6dac227529df363a1693ee (patch) | |
tree | dccb811853bb247d71335366ecb10124ad252896 /sbin | |
parent | 70bf08f9852b0bd2f3c1ba786f863a8ea81b80bf (diff) |
Merge from the Ericsson repository
| revision 1.3
| date: 1999/02/25 15:14:24; author: niklas; state: Exp; lines: +6 -3
| Yet more messing with the new sysdep paths
| ----------------------------
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/isakmpd/regress/hmac/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/sbin/isakmpd/regress/hmac/Makefile b/sbin/isakmpd/regress/hmac/Makefile index a5c5f4a67d3..39bb2c7b8c8 100644 --- a/sbin/isakmpd/regress/hmac/Makefile +++ b/sbin/isakmpd/regress/hmac/Makefile @@ -1,13 +1,16 @@ -# $OpenBSD: Makefile,v 1.3 1998/12/21 01:02:34 niklas Exp $ -# $EOM: Makefile,v 1.2 1998/12/21 00:41:55 niklas Exp $ +# $OpenBSD: Makefile,v 1.4 1999/02/26 03:28:31 niklas Exp $ +# $EOM: Makefile,v 1.3 1999/02/25 15:14:24 niklas Exp $ # Test HMAC: PROG= hmactest SRCS= hash.c hmactest.c -.PATH: ${.CURDIR}/../../ +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 NOMAN= -CFLAGS+= -I${.CURDIR}/../../ -Wall DEBUG= -g -.include <bsd.prog.mk>
\ No newline at end of file +.include <bsd.prog.mk> |