diff options
-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> |