blob: 74babee5d8414245437f2799f25f6c993653e829 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# $FreeBSD$
.PATH: ${.CURDIR}/../../../contrib/ntp/libntp \
${.CURDIR}/../../../contrib/ntp/lib/isc \
${.CURDIR}/../../../contrib/ntp/lib/isc/nls \
${.CURDIR}/../../../contrib/ntp/lib/isc/pthreads \
${.CURDIR}/../../../contrib/ntp/lib/isc/unix \
LIB= ntp
INTERNALLIB=
NTP_SRCS= systime.c a_md5encrypt.c adjtime.c atoint.c \
atolfp.c atouint.c audio.c authkeys.c \
authreadkeys.c authusekey.c bsd_strerror.c buftvtots.c \
caljulian.c caltontp.c calyearstart.c clocktime.c \
clocktypes.c decodenetnum.c dofptoa.c dolfptoa.c \
emalloc.c findconfig.c getopt.c hextoint.c \
hextolfp.c humandate.c icom.c iosignal.c \
is_ip_address.c \
lib_strbuf.c \
libssl_compat.c \
machines.c mktime.c modetoa.c \
mstolfp.c msyslog.c netof.c ntp_calendar.c \
ntp_crypto_rnd.c ntp_intres.c ntp_libopts.c \
ntp_lineedit.c ntp_random.c ntp_rfc2553.c ntp_worker.c \
numtoa.c numtohost.c octtoint.c prettydate.c \
recvbuff.c refidsmear.c \
refnumtoa.c snprintf.c socket.c \
socktoa.c socktohost.c ssl_init.c statestr.c \
strdup.c strl_obsd.c syssignal.c timetoa.c \
timevalops.c uglydate.c vint64ops.c work_fork.c \
work_thread.c ymd2yd.c
ISC_PTHREADS_SRCS= condition.c \
thread.c \
mutex.c
ISC_UNIX_SRCS= dir.c \
errno2result.c \
file.c \
interfaceiter.c \
net.c \
stdio.c \
stdtime.c \
strerror.c \
time.c \
tsmemcmp.c
ISC_NLS_SRCS= msgcat.c
ISC_SRCS= assertions.c \
buffer.c \
backtrace-emptytbl.c \
backtrace.c \
error.c \
event.c \
inet_ntop.c \
inet_pton.c \
lib.c \
log.c \
md5.c \
netaddr.c \
netscope.c \
ondestroy.c \
random.c \
result.c \
task.c \
sha1.c \
sockaddr.c \
${ISC_NLS_SRCS} \
${ISC_PTHREADS_SRCS} \
${ISC_UNIX_SRCS}
SRCS= ${NTP_SRCS} ${ISC_SRCS} version.c
CFLAGS+= -I${.CURDIR}/../../../contrib/ntp/include \
-I${.CURDIR}/../../../contrib/ntp/lib/isc/include \
-I${.CURDIR}/../../../contrib/ntp/lib/isc/unix/include \
-I${.CURDIR}/../../../contrib/ntp/lib/isc/pthreads/include \
-I${.CURDIR}/../../../contrib/ntp/sntp/libopts \
-I${.CURDIR}/../../../lib/libc/${MACHINE_ARCH} \
-I${.CURDIR}/../../../lib/libedit/edit \
-I${.CURDIR}/../ \
-I${.CURDIR}/
CFLAGS+= -DHAVE_BSD_NICE -DHAVE_STDINT_H
CLEANFILES+= .version version.c
version.c:
sh -e ${.CURDIR}/../scripts/mkver ntpd
.include <bsd.lib.mk>
|