04efeffe99
remove the now-redundant checks for RELEASE_CRUNCH. This originally was defined for building smaller sysinstall images, but was later also used by picobsd builds for a similar purpose. Now that we've moved away from sysinstall, picobsd is the only remaining consumer of this interface. Adding these two options reduces the RELEASE_CRUNCH special cases in the tree by half.
25 lines
469 B
Makefile
25 lines
469 B
Makefile
# $FreeBSD$
|
|
|
|
MAN=
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.PATH: ${.CURDIR}/../../../contrib/ntp/util \
|
|
${.CURDIR}/../../../contrib/ntp/ntpd
|
|
|
|
PROG= ntp-keygen
|
|
SRCS= ntp-keygen.c ntp-keygen-opts.c
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../contrib/ntp/include -I${.CURDIR}/../ \
|
|
-I${.CURDIR}/../../../contrib/ntp/libopts
|
|
|
|
DPADD= ${LIBNTP} ${LIBOPTS}
|
|
LDADD= ${LIBNTP} ${LIBOPTS}
|
|
|
|
.if ${MK_OPENSSL} != "no"
|
|
DPADD+= ${LIBMD} ${LIBCRYPTO}
|
|
LDADD+= -lmd -lcrypto
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|