freebsd-dev/usr.sbin/xntpd/ntpdate/Makefile
Garrett Wollman 9a20882e6a Deleted old configuration grot and added BSD-style Makefile. Added
README.FreeBSD.  Re-added NTP's version of getopt() and fixed conflicts.
1993-12-21 21:06:54 +00:00

21 lines
388 B
Makefile

#
# $Id: Makefile,v 1.1 1993/12/21 19:40:50 wollman Exp $
#
CFLAGS+= -I${.CURDIR}/../include
LDADD+= -L${.CURDIR}/../lib -lntp
DPADD+= -L${.CURDIR}/../lib/libntp.a
PROG= ntpdate
MAN8= ${.CURDIR}/../doc/ntpdate.8
CLEANFILES+= version.c
SRCS= ntpdate.c version.c
beforedepend: version.c
version.c: ${.CURDIR}/../VERSION
${.CURDIR}/../scripts/mkversion ntpdate
.include <bsd.prog.mk>