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

28 lines
473 B
Makefile
Raw Normal View History

#
1997-02-22 16:15:28 +00:00
# $Id$
#
# Most of the programs in this directory are completely useless for the
# NTP configuration that we provide by default.
# We provide the `md5' program as a public service.
CFLAGS+= -I${.CURDIR}/../include
.if exists(${.OBJDIR}/../lib)
LDADD+= -L${.OBJDIR}/../lib
DPADD+= ${.OBJDIR}/../lib/libntp.a
.else
LDADD+= -L${.CURDIR}/../lib
DPADD+= ${.CURDIR}/../lib/libntp.a
.endif
LDADD+= -lntp
PROG= md5
SRCS= md5driver.c
NOMAN=
install:
.include <bsd.prog.mk>