551d8615c2
- Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones. This simplifies pathing in make/displayed output. - Also, use :H where possible/sensical to manipulate .CURDIR-relative paths - Remove superfluous bsd.own.mk .includes which are already handled via src.opts.mk .includes MFC after: 1 week Sponsored by: Dell EMC Isilon
30 lines
639 B
Makefile
30 lines
639 B
Makefile
# $FreeBSD$
|
|
|
|
MAN=
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.PATH: ${SRCTOP}/contrib/ntp/util \
|
|
${SRCTOP}/contrib/ntp/ntpd
|
|
|
|
PROG= ntp-keygen
|
|
SRCS= ntp-keygen.c ntp-keygen-opts.c
|
|
|
|
CFLAGS+= -I${SRCTOP}/contrib/ntp/include \
|
|
-I${SRCTOP}/contrib/ntp/include \
|
|
-I${SRCTOP}/contrib/ntp/lib/isc/include \
|
|
-I${SRCTOP}/contrib/ntp/lib/isc/unix/include \
|
|
-I${SRCTOP}/contrib/ntp/lib/isc/pthreads/include \
|
|
-I${SRCTOP}/contrib/ntp/lib/isc/${NTP_ATOMIC}/include \
|
|
-I${SRCTOP}/contrib/ntp/sntp/libopts \
|
|
-I${.CURDIR}/lib/libc/${MACHINE_ARCH} \
|
|
-I${.CURDIR:H}
|
|
|
|
LIBADD+= ntp opts pthread
|
|
|
|
.if ${MK_OPENSSL} != "no"
|
|
LIBADD+= crypto
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|