diff options
author | wollman <wollman@FreeBSD.org> | 1993-12-21 20:04:14 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1993-12-21 20:04:14 +0000 |
commit | 976234d3f2fc48cde08871cf13b31409b476ad73 (patch) | |
tree | 5d2fd84f25287feebee9205ab659c076978c80b1 /usr.sbin/xntpd/parse | |
parent | 36518b49c790666291ce0e55241282f1b00c15ad (diff) | |
download | FreeBSD-src-976234d3f2fc48cde08871cf13b31409b476ad73.zip FreeBSD-src-976234d3f2fc48cde08871cf13b31409b476ad73.tar.gz |
Converted to use Berkeley-style makefiles, and configured all clocks on
permanently.
Diffstat (limited to 'usr.sbin/xntpd/parse')
-rw-r--r-- | usr.sbin/xntpd/parse/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/usr.sbin/xntpd/parse/Makefile b/usr.sbin/xntpd/parse/Makefile new file mode 100644 index 0000000..1a46fbe --- /dev/null +++ b/usr.sbin/xntpd/parse/Makefile @@ -0,0 +1,19 @@ +# +# $Id: Makefile,v 1.1 1993/12/21 19:42:18 wollman Exp $ +# + +PARSEFLAGS= -DCLOCK_SCHMID -DCLOCK_DCF7000 -DCLOCK_MEINBERG \ + -DCLOCK_RAWDCF -DCLOCK_TRIMSV6 + +CFLAGS+= -I${.CURDIR}/../include ${PARSEFLAGS} + +SRCS= parse.c parse_conf.c clk_meinberg.c clk_schmid.c clk_rawdcf.c \ + clk_dcf7000.c clk_trimble.c + +NOMAN= +NOPROFILE= +LIB= parse + +install: + +.include <bsd.lib.mk> |