freebsd-dev/usr.sbin/xntpd/parse/util/Makefile
Jordan K. Hubbard cd9a2f5c28 Bring in my changes for removing the pestilent obj links (unless you
really want them) from /usr/src.  This is the final version of the
patches, incorporating the feedback I've received from -current.
1996-06-24 04:26:21 +00:00

25 lines
483 B
Makefile

#
# $Id: Makefile,v 1.2 1995/04/04 17:48:02 rgrimes Exp $
#
CFLAGS+= -I${.CURDIR}/../../include
CFLAGS+= -DNTP_POSIX_SOURCE -DUSE_PROTOTYPES
CFLAGS+= -DSYS_FREEBSD -DBOEDER -DHAVE_TERMIOS -DHAVE_BSD_NICE
.if exists(${.OBJDIR}/../../lib)
LDADD+= -L${.OBJDIR}/../../lib
DPADD+= -L${.OBJDIR}/../../lib/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>