aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ntp/ntpdate
diff options
context:
space:
mode:
authorOllivier Robert <roberto@FreeBSD.org>1999-12-13 14:09:56 +0000
committerOllivier Robert <roberto@FreeBSD.org>1999-12-13 14:09:56 +0000
commitcc5592707f009349041f2896cd9a7038f61b54cb (patch)
tree31d05a92296d7cccae7f8b9c42edcb1f7e47f70f /usr.sbin/ntp/ntpdate
parent7a32bd78a7dc36f8a7513f9a4060f95d5d4dcce8 (diff)
Notes
Diffstat (limited to 'usr.sbin/ntp/ntpdate')
-rw-r--r--usr.sbin/ntp/ntpdate/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/usr.sbin/ntp/ntpdate/Makefile b/usr.sbin/ntp/ntpdate/Makefile
new file mode 100644
index 000000000000..015b14d99058
--- /dev/null
+++ b/usr.sbin/ntp/ntpdate/Makefile
@@ -0,0 +1,21 @@
+#
+# $FreeBSD$
+#
+
+.PATH: ${.CURDIR}/../../../contrib/ntp/ntpdate
+
+CFLAGS+= -I${.CURDIR}/../../../contrib/ntp/include -I${.CURDIR}/../
+
+DPADD= ${LIBNTP} ${LIBKVM}
+LDADD= ${LIBNTP} ${LIBKVM}
+
+PROG= ntpdate
+NOMAN= yes
+CLEANFILES+= .version version.c
+
+SRCS= ntpdate.c version.c
+
+version.c:
+ sh -e ${.CURDIR}/../scripts/mkver ntpdate
+
+.include <bsd.prog.mk>