15d0bb0b98
libraries so that `ld -f' in can create correct dependencies for yet-to-be-built libraries. Get the default BINDIR correctly (by including ../Makefile.inc recursively.
22 lines
369 B
Makefile
22 lines
369 B
Makefile
#
|
|
# $Id: Makefile,v 1.7 1997/02/22 16:14:30 peter Exp $
|
|
#
|
|
|
|
CFLAGS+= -I${.CURDIR}/../include
|
|
|
|
DPADD= ${LIBNTP}
|
|
LDADD= ${LIBNTP}
|
|
|
|
PROG= ntptrace
|
|
MAN8= ${.CURDIR}/../doc/ntptrace.8
|
|
CLEANFILES+= .version version.c
|
|
|
|
SRCS= ntptrace.c version.c
|
|
|
|
beforedepend: version.c
|
|
|
|
version.c: ${.CURDIR}/../VERSION
|
|
sh -e ${.CURDIR}/../scripts/mkversion ntptrace
|
|
|
|
.include <bsd.prog.mk>
|