aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ntp/ntptime/Makefile
diff options
context:
space:
mode:
authorOllivier Robert <roberto@FreeBSD.org>2000-01-01 23:58:01 +0000
committerOllivier Robert <roberto@FreeBSD.org>2000-01-01 23:58:01 +0000
commit4c49e2a210f8bc0655353edc2fdd9ceee7910d25 (patch)
tree5baa6a58251c1889b535f3eca2757d0028b21d1b /usr.sbin/ntp/ntptime/Makefile
parent43607766d6b9bdd602dc7662d1d27612a5be32a6 (diff)
downloadsrc-4c49e2a210f8bc0655353edc2fdd9ceee7910d25.tar.gz
src-4c49e2a210f8bc0655353edc2fdd9ceee7910d25.zip
- remove trace of libkvm. It is not used at all.
- reorganise the Makefiles: the order of variables was not the usual one. Explained gently by: bde
Notes
Notes: svn path=/head/; revision=55307
Diffstat (limited to 'usr.sbin/ntp/ntptime/Makefile')
-rw-r--r--usr.sbin/ntp/ntptime/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/usr.sbin/ntp/ntptime/Makefile b/usr.sbin/ntp/ntptime/Makefile
index d4e45eb7ce3c..6d57ec251769 100644
--- a/usr.sbin/ntp/ntptime/Makefile
+++ b/usr.sbin/ntp/ntptime/Makefile
@@ -4,14 +4,15 @@
.PATH: ${.CURDIR}/../../../contrib/ntp/util
-CFLAGS+= -I${.CURDIR}/../../../contrib/ntp/include -I${.CURDIR}/../
+PROG= ntptime
-DPADD= ${LIBNTP} ${LIBKVM}
-LDADD= ${LIBNTP} ${LIBKVM}
+SRCS= ntptime.c
+
+CFLAGS+= -I${.CURDIR}/../../../contrib/ntp/include -I${.CURDIR}/../
-PROG= ntptime
NOMAN= yes
-SRCS= ntptime.c
+DPADD= ${LIBNTP}
+LDADD= ${LIBNTP}
.include <bsd.prog.mk>