diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-12-22 02:09:47 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-12-22 02:09:47 +0000 |
commit | 1811f757a04bf7d8b9e375df19433f5e7e42b65a (patch) | |
tree | 964cb8a0d19cb7c77d1217518590dec23b63a1d3 | |
parent | 0d5cbcdc3e039aac9668a3eeee4a3da076bd34fc (diff) |
My former hack lost, better solution
-rw-r--r-- | sbin/isakmpd/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sbin/isakmpd/Makefile b/sbin/isakmpd/Makefile index 6ec0dca53be..c577526d4dc 100644 --- a/sbin/isakmpd/Makefile +++ b/sbin/isakmpd/Makefile @@ -1,5 +1,5 @@ -# $OpenBSD: Makefile,v 1.8 1998/12/22 02:03:32 niklas Exp $ -# $EOM: Makefile,v 1.35 1998/12/22 02:02:19 niklas Exp $ +# $OpenBSD: Makefile,v 1.9 1998/12/22 02:09:46 niklas Exp $ +# $EOM: Makefile,v 1.37 1998/12/22 02:09:14 niklas Exp $ # # Copyright (c) 1998 Niklas Hallqvist. All rights reserved. @@ -44,7 +44,8 @@ SRCS= app.c asn.c asn_useful.c attribute.c cert.c constants.c \ message.c math_2n.c math_ec2n.c math_group.c pf_encap.c \ pkcs.c prf.c sa.c sysdep.c timer.c transport.c udp.c ui.c \ util.c x509.c -OBJS= ipsec_fld.h ipsec_num.h isakmp_fld.h isakmp_num.h +GENERATED= exchange_num.h ipsec_fld.h ipsec_num.h isakmp_fld.h \ + isakmp_num.h CLEANFILES= exchange_num.c exchange_num.h ipsec_num.c ipsec_num.h \ isakmp_num.c isakmp_num.h ipsec_fld.c ipsec_fld.h \ isakmp_fld.c isakmp_fld.h @@ -84,7 +85,7 @@ isakmp_fld.c isakmp_fld.h: genfields.sh isakmp_fld.fld isakmp_num.c isakmp_num.h: genconstants.sh isakmp_num.cst /bin/sh ${.CURDIR}/genconstants.sh ${.CURDIR}/isakmp_num -beforedepend: ipsec_fld.h ipsec_num.h isakmp_fld.h isakmp_num.h +${PROG} beforedepend: ${GENERATED} .include <bsd.prog.mk> .include <bsd.subdir.mk> |