diff options
author | wollman <wollman@FreeBSD.org> | 1993-12-21 20:38:27 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1993-12-21 20:38:27 +0000 |
commit | 91c890859f227198e3e06b16b952ec98a3ee47f2 (patch) | |
tree | 269b30b0d28f9ee4e90875942e30c8d7bd07f3e9 /usr.sbin/xntpd/xntpres | |
parent | b44cd0174054f6ea45e8781598b2a2bf909b972f (diff) | |
download | FreeBSD-src-91c890859f227198e3e06b16b952ec98a3ee47f2.zip FreeBSD-src-91c890859f227198e3e06b16b952ec98a3ee47f2.tar.gz |
Converted to BSD-style Makefile.
Diffstat (limited to 'usr.sbin/xntpd/xntpres')
-rw-r--r-- | usr.sbin/xntpd/xntpres/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/usr.sbin/xntpd/xntpres/Makefile b/usr.sbin/xntpd/xntpres/Makefile new file mode 100644 index 0000000..ecead3c --- /dev/null +++ b/usr.sbin/xntpd/xntpres/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= xntpres +NOMAN= +CLEANFILES+= version.c + +SRCS= xntpres.c version.c + +beforedepend: version.c + +version.c: ${.CURDIR}/../VERSION + ${.CURDIR}/../scripts/mkversion xntpres + +.include <bsd.prog.mk> |