diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-26 03:27:32 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-26 03:27:32 +0000 |
commit | 89a2d8582f3314fec69d61b62bb715b93f9fe979 (patch) | |
tree | ab0b0fb1677def96db6888d7d789939ae2243c47 /sbin/isakmpd | |
parent | 78e7a73cff63dd6a05572f1a92466acf86a396f8 (diff) |
Merge from the Ericsson repository
| revision 1.6
| date: 1999/02/25 15:10:08; author: niklas; state: Exp; lines: +2 -2
| Whoops
| ----------------------------
| revision 1.5
| date: 1999/02/25 15:07:32; author: niklas; state: Exp; lines: +6 -4
| Mesing with the new sysdep paths
| ----------------------------
Diffstat (limited to 'sbin/isakmpd')
-rw-r--r-- | sbin/isakmpd/regress/ec2n/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sbin/isakmpd/regress/ec2n/Makefile b/sbin/isakmpd/regress/ec2n/Makefile index c1a1a28cc37..a8750d9581b 100644 --- a/sbin/isakmpd/regress/ec2n/Makefile +++ b/sbin/isakmpd/regress/ec2n/Makefile @@ -1,14 +1,16 @@ -# $OpenBSD: Makefile,v 1.3 1998/12/21 01:02:30 niklas Exp $ -# $EOM: Makefile,v 1.4 1998/12/21 00:41:52 niklas Exp $ +# $OpenBSD: Makefile,v 1.4 1999/02/26 03:27:31 niklas Exp $ +# $EOM: Makefile,v 1.6 1999/02/25 15:10:08 niklas Exp $ # Test EC2N: PROG= ec2ntest SRCS= math_2n.c math_ec2n.c ec2ntest.c util.c sysdep.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= -TOPOBJ!= cd ${.CURDIR}/../..; printf "all:\n\t@pwd\n" |${MAKE} -f- -CFLAGS+= -I${TOPOBJ} -I${.CURDIR}/../../ -Wall DEBUG= -g .include <bsd.prog.mk> |