diff --git a/usr.sbin/xntpd/xntpdc/Makefile b/usr.sbin/xntpd/xntpdc/Makefile new file mode 100644 index 000000000000..cb09569b3aa3 --- /dev/null +++ b/usr.sbin/xntpd/xntpdc/Makefile @@ -0,0 +1,20 @@ +# +# $Id: Makefile,v 1.1 1993/12/21 19:46:16 wollman Exp $ +# + +CFLAGS+= -I${.CURDIR}/../include +LDADD+= -L${.CURDIR}/../lib -lntp +DPADD+= -L${.CURDIR}/../lib/libntp.a + +PROG= xntpdc +MAN8= ${.CURDIR}/../doc/xntpdc.8 +CLEANFILES+= version.c + +SRCS= ntpdc.c ntpdc_ops.c version.c + +beforedepend: version.c + +version.c: ${.CURDIR}/../VERSION + ${.CURDIR}/../scripts/mkversion xntpdc + +.include diff --git a/usr.sbin/xntpd/xntpres/Makefile b/usr.sbin/xntpd/xntpres/Makefile new file mode 100644 index 000000000000..ecead3cc8145 --- /dev/null +++ b/usr.sbin/xntpd/xntpres/Makefile @@ -0,0 +1,20 @@ +# +# $Id: Makefile,v 1.1 1993/12/21 19:50:40 wollman Exp $ +# + +CFLAGS+= -I${.CURDIR}/../include +LDADD+= -L${.CURDIR}/../lib -lntp +DPADD+= -L${.CURDIR}/../lib/libntp.a + +PROG= xntpres +NOMAN= +CLEANFILES+= version.c + +SRCS= xntpres.c version.c + +beforedepend: version.c + +version.c: ${.CURDIR}/../VERSION + ${.CURDIR}/../scripts/mkversion xntpres + +.include