summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1993-12-21 19:50:40 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1993-12-21 19:50:40 +0000
commitd460454fc2183aafb32f557d5e166690a07f349c (patch)
tree5b574ebfdebd8cf84bffc838c7e475a88bc01aa0
parentd309f1e96c105a0763519084e71154cd1bc30ae1 (diff)
Notes
-rw-r--r--usr.sbin/xntpd/ntptrace/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/usr.sbin/xntpd/ntptrace/Makefile b/usr.sbin/xntpd/ntptrace/Makefile
new file mode 100644
index 0000000000000..193d83f5584c0
--- /dev/null
+++ b/usr.sbin/xntpd/ntptrace/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= ntptrace
+MAN8= ${.CURDIR}/../doc/ntptrace.8
+CLEANFILES+= version.c
+
+SRCS= ntptrace.c version.c
+
+beforedepend: version.c
+
+version.c: ${.CURDIR}/../VERSION
+ ${.CURDIR}/../scripts/mkversion ntptrace
+
+.include <bsd.prog.mk>