]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/ntp/sntp/Makefile
Update lldb to release_39 branch r276489 and resolve immediate conflicts.
[FreeBSD/FreeBSD.git] / usr.sbin / ntp / sntp / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 .PATH:  ${.CURDIR}/../../../contrib/ntp/sntp
6
7 PROG=   sntp
8 MK_MAN= no
9 SRCS=   crypto.c kod_management.c log.c main.c networking.c \
10         sntp-opts.c sntp.c utilities.c
11
12 CFLAGS+= -I${.CURDIR}/../../../contrib/ntp/include \
13         -I${.CURDIR}/../../../contrib/ntp/include \
14         -I${.CURDIR}/../../../contrib/ntp/lib/isc/include \
15         -I${.CURDIR}/../../../contrib/ntp/lib/isc/unix/include \
16         -I${.CURDIR}/../../../contrib/ntp/lib/isc/pthreads/include \
17         -I${.CURDIR}/../../../contrib/ntp/sntp \
18         -I${.CURDIR}/../../../contrib/ntp/sntp/libopts \
19         -I${.CURDIR}/../../../contrib/ntp/sntp/libevent/include \
20         -I${.CURDIR}/../libntpevent \
21         -I${.CURDIR}/../
22
23 LIBADD= m opts ntp ntpevent pthread
24
25 .if ${MK_OPENSSL} != "no"
26 LIBADD+=        crypto
27 .else
28 LIBADD+=        md
29 .endif
30
31 .include <bsd.prog.mk>