diff options
author | wollman <wollman@FreeBSD.org> | 1993-12-21 20:16:18 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1993-12-21 20:16:18 +0000 |
commit | d2cdd748d334665572ebcc27b8ea7eb8f8861af7 (patch) | |
tree | 16806734f574982d32012c2172c0a288ce57a6cd | |
parent | 976234d3f2fc48cde08871cf13b31409b476ad73 (diff) | |
download | FreeBSD-src-d2cdd748d334665572ebcc27b8ea7eb8f8861af7.zip FreeBSD-src-d2cdd748d334665572ebcc27b8ea7eb8f8861af7.tar.gz |
Convert tickadj to use BSD-style Makefile. Don't bother with the
other programs.
-rw-r--r-- | usr.sbin/xntpd/util/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/usr.sbin/xntpd/util/Makefile b/usr.sbin/xntpd/util/Makefile new file mode 100644 index 0000000..a030fc8 --- /dev/null +++ b/usr.sbin/xntpd/util/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= tickadj +MAN8= ${.CURDIR}/../doc/tickadj.8 +CLEANFILES+= version.c + +SRCS= tickadj.c version.c + +beforedepend: version.c + +version.c: ${.CURDIR}/../VERSION + ${.CURDIR}/../scripts/mkversion tickadj + +.include <bsd.prog.mk> |