Converted to BSD-style Makefile.

This commit is contained in:
Garrett Wollman 1993-12-21 20:38:27 +00:00
parent 753a296e16
commit b0389fc094
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,20 @@
#
# $Id: Makefile,v 1.1 1993/12/21 19:46:16 wollman Exp $
#
CFLAGS+= -I${.CURDIR}/../include
LDADD+= -L${.CURDIR}/../lib -lntp
DPADD+= -L${.CURDIR}/../lib/libntp.a
PROG= xntpdc
MAN8= ${.CURDIR}/../doc/xntpdc.8
CLEANFILES+= version.c
SRCS= ntpdc.c ntpdc_ops.c version.c
beforedepend: version.c
version.c: ${.CURDIR}/../VERSION
${.CURDIR}/../scripts/mkversion xntpdc
.include <bsd.prog.mk>

View File

@ -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>