From b0389fc094c1daaadf4425a34f4ad918096227c4 Mon Sep 17 00:00:00 2001 From: Garrett Wollman Date: Tue, 21 Dec 1993 20:38:27 +0000 Subject: [PATCH] Converted to BSD-style Makefile. --- usr.sbin/xntpd/xntpdc/Makefile | 20 ++++++++++++++++++++ usr.sbin/xntpd/xntpres/Makefile | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 usr.sbin/xntpd/xntpdc/Makefile create mode 100644 usr.sbin/xntpd/xntpres/Makefile 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