freebsd-dev/usr.sbin/xntpd/parse/util/Makefile
Rodney W. Grimes 756097f16a Bring down the old version of Makefile from the Attic and replace with this
bmake version of Makefile to build and install dcfd.

Submitted by:	Vincenzo Capuano <VCAPUANO@vmprofs.esoc.esa.de>
1995-04-04 17:48:02 +00:00

25 lines
446 B
Makefile

#
# $Id$
#
CFLAGS+= -I${.CURDIR}/../../include
CFLAGS+= -DNTP_POSIX_SOURCE -DUSE_PROTOTYPES
CFLAGS+= -DSYS_FREEBSD -DBOEDER -DHAVE_TERMIOS -DHAVE_BSD_NICE
.if exists(${.CURDIR}/../../lib/obj)
LDADD+= -L${.CURDIR}/../../lib/obj
DPADD+= -L${.CURDIR}/../../lib/obj/libntp.a
.else
LDADD+= -L${.CURDIR}/../../lib
DPADD+= -L${.CURDIR}/../../lib/libntp.a
.endif
LDADD+= -lntp
BINDIR= /usr/sbin
PROG= dcfd
SRCS= dcfd.c
NOMAN=
.include <bsd.prog.mk>