1130b656e5
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
28 lines
478 B
Makefile
28 lines
478 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
# 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>
|