freebsd-dev/usr.sbin/xntpd/ntpq/Makefile

30 lines
543 B
Makefile
Raw Normal View History

1993-12-21 19:46:16 +00:00
#
# $Id: Makefile,v 1.2 1993/12/21 21:06:32 wollman Exp $
1993-12-21 19:46:16 +00:00
#
CFLAGS+= -I${.CURDIR}/../include
.if exists(${.CURDIR}/../lib/obj)
LDADD+= -L${.CURDIR}/../lib/obj
DPADD+= -L${.CURDIR}/../lib/obj/libntp.a
.else
LDADD+= -L${.CURDIR}/../lib
1993-12-21 19:46:16 +00:00
DPADD+= -L${.CURDIR}/../lib/libntp.a
.endif
LDADD+= -lntp
1993-12-21 19:46:16 +00:00
PROG= ntpq
MAN8= ${.CURDIR}/../doc/ntpq.8
CLEANFILES+= .version version.c
BINDIR= /usr/bin
1993-12-21 19:46:16 +00:00
SRCS= ntpq.c ntpq_ops.c version.c
beforedepend: version.c
version.c: ${.CURDIR}/../VERSION
${.CURDIR}/../scripts/mkversion ntpq
.include <bsd.prog.mk>