Create BSD-style makefile for ntpdate.

This commit is contained in:
Garrett Wollman 1993-12-21 19:40:50 +00:00
parent 5885c09cac
commit 8eb65258c9
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
#
# $Id$
#
CFLAGS+= -I${.CURDIR}/../include
LDADD+= -L${.CURDIR}/../lib -lntp
DPADD+= -L${.CURDIR}/../lib/libntp.a
PROG= ntpdate
MAN8= ${.CURDIR}/../doc/ntpdate.8
CLEANFILES+= version.o
SRCS= ntpdate.c version.c
beforedepend: version.c
version.c: ${.CURDIR}/../VERSION
${.CURDIR}/../scripts/mkversion ntpdate
.include <bsd.prog.mk>