Convert ntpq to BSD-style makefile.

This commit is contained in:
Garrett Wollman 1993-12-21 19:46:16 +00:00
parent c76dd48e2f
commit d309f1e96c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=898

View File

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