Dissolve use of the 'register' keyword.
[dragonfly.git] / lib / libbind / Makefile
1 # $FreeBSD: src/lib/libbind/Makefile,v 1.5.2.2 2002/07/19 18:46:25 ru Exp $
2 # $DragonFly: src/lib/libbind/Makefile,v 1.5 2004/05/27 18:15:40 dillon Exp $
3
4 BIND_DIR=${.CURDIR}/../../contrib/bind-9.2.4rc4
5
6 # note: lib/bind/include/isc/list.h must come before lib/isc/include/isc/list.h
7 #
8 CFLAGS+= -I${.CURDIR}/../../usr.sbin/named \
9         -I${BIND_DIR}/lib/bind/include
10
11 .include "${.CURDIR}/../../usr.sbin/named/Makefile.inc"
12 .include "${BIND_DIR}/lib/bind/api"
13
14 LIB= bind
15 WANT_IRS= for now
16
17 # This may or may not work yet.  It's not compatible with the core
18 # system components since it overrides the master.passwd handling etc.
19 .if defined(WANT_IRS)
20 .PATH:  ${BIND_DIR}/lib/bind/irs
21 SRCS+=  gethostent_r.c getnetgrent_r.c getprotoent_r.c getservent_r.c \
22         dns_gr.c irp_gr.c lcl_gr.c gen_gr.c getgrent.c getpwent_r.c \
23         nis_pw.c irp_pw.c lcl_pw.c dns_pw.c gen_pw.c getpwent.c \
24         nis_ho.c nis_ng.c nis_nw.c nis_pr.c nis_sv.c \
25         dns.c dns_ho.c dns_nw.c dns_pr.c \
26         dns_sv.c gai_strerror.c gen.c gen_ho.c \
27         gen_ng.c gen_nw.c gen_pr.c gen_sv.c \
28         getaddrinfo.c gethostent.c  getnameinfo.c \
29         getnetent.c getnetent_r.c getnetgrent.c \
30         getprotoent.c getservent.c hesiod.c \
31         irp.c irp_ho.c irp_ng.c irp_nw.c \
32         irp_pr.c irp_sv.c irpmarshall.c irs_data.c \
33         lcl.c lcl_ho.c lcl_ng.c lcl_nw.c \
34         lcl_pr.c lcl_sv.c nis.c nul_ng.c util.c \
35         getgrent_r.c \
36
37 .PATH:  ${BIND_DIR}/lib/bind/nameser
38 SRCS+=  ns_date.c ns_name.c ns_netint.c \
39         ns_parse.c ns_print.c  ns_samedomain.c \
40         ns_sign.c ns_ttl.c ns_verify.c
41
42 .PATH:  ${BIND_DIR}/lib/bind/resolv
43 SRCS+=  herror.c res_comp.c res_data.c \
44         res_debug.c res_findzonecut.c res_init.c \
45         res_mkquery.c res_mkupdate.c res_query.c \
46         res_send.c res_sendsigned.c res_update.c
47
48 .endif
49
50 .PATH:  ${BIND_DIR}/lib/bind/dst
51 CFLAGS+=-DHMAC_MD5 -DUSE_MD5
52 SRCS+=  dst_api.c hmac_link.c md5_dgst.c support.c
53
54 .PATH:  ${BIND_DIR}/lib/bind/isc
55 SRCS+=  assertions.c base64.c bitncmp.c ctl_clnt.c \
56         ctl_p.c ctl_srvr.c ev_connects.c ev_files.c \
57         ev_streams.c ev_timers.c ev_waits.c \
58         eventlib.c heap.c hex.c logging.c \
59         memcluster.c movefile.c tree.c
60
61 .PATH:  ${BIND_DIR}/lib/bind/bsd
62 SRCS+=  gettimeofday.c
63
64 INTERNALLIB=            true
65
66 .include <bsd.lib.mk>
67