diff options
author | peter <peter@FreeBSD.org> | 1996-08-30 03:03:21 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-08-30 03:03:21 +0000 |
commit | 14a33b077132097bfda116e6b3e147576707558a (patch) | |
tree | 23e8235f81ab8648a9bd778b31ef3af56c05a141 /usr.sbin/xntpd | |
parent | 25e48917435ca1f0049e6d565801d275fef942f3 (diff) | |
download | FreeBSD-src-14a33b077132097bfda116e6b3e147576707558a.zip FreeBSD-src-14a33b077132097bfda116e6b3e147576707558a.tar.gz |
Use a variable to prevent multiple inclusion from duplicating CFLAGS args.
Diffstat (limited to 'usr.sbin/xntpd')
-rw-r--r-- | usr.sbin/xntpd/Makefile.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/usr.sbin/xntpd/Makefile.inc b/usr.sbin/xntpd/Makefile.inc index 0e093b9..906b5c6 100644 --- a/usr.sbin/xntpd/Makefile.inc +++ b/usr.sbin/xntpd/Makefile.inc @@ -1,3 +1,6 @@ +.if !defined(BEEN_HERE) +BEEN_HERE=1 + DEFS_LOCAL=-DREFCLOCK -DPARSE -DUDP_WILDCARD_DELIVERY NTPDEFS= -DSYS_FREEBSD -DSYS_44BSD AUTHDEFS= -DMD5 @@ -10,3 +13,5 @@ BINDIR?= /usr/sbin .if !defined(NOCRYPT) && exists(${.CURDIR}/../../../secure/usr.sbin/xntpd/lib) AUTHDEFS+= -DDES .endif + +.endif |