diff options
| author | Peter Wemm <peter@FreeBSD.org> | 1998-05-03 05:04:21 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 1998-05-03 05:04:21 +0000 |
| commit | 17ee1b4919d1c3765c4c1817d6c09ca99b75987f (patch) | |
| tree | 17a6e067b51936e5e5869bfbf0e42a4c5d303327 /lib/libbind | |
| parent | 0a9a40935ed4075bba5d95056b3588a47769b7d9 (diff) | |
Notes
Diffstat (limited to 'lib/libbind')
| -rw-r--r-- | lib/libbind/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/lib/libbind/Makefile b/lib/libbind/Makefile new file mode 100644 index 000000000000..9bd6b668d93a --- /dev/null +++ b/lib/libbind/Makefile @@ -0,0 +1,42 @@ +# $FreeBSD$ + +BIND_DIR=${.CURDIR}/../../contrib/bind + +CFLAGS+= -I${BIND_DIR}/port/freebsd/include -I${BIND_DIR}/include + +LIB= bind + +.PATH: ${BIND_DIR}/lib/resolv +SRCS+= herror.c res_debug.c res_data.c res_comp.c res_init.c \ + res_mkquery.c res_query.c res_send.c res_mkupdate.c \ + res_update.c + +.if defined(WANT_IRS_AUDIT) +.PATH: ${BIND_DIR}/lib/irs +SRCS+= dns.c dns_gr.c dns_ho.c dns_nw.c dns_pr.c dns_pw.c dns_sv.c gen.c \ + gen_gr.c gen_ho.c gen_ng.c gen_nw.c gen_pr.c gen_pw.c gen_sv.c \ + getgrent.c gethostent.c getnetent.c getnetgrent.c getprotoent.c \ + getpwent.c getservent.c hesiod.c irs_data.c lcl.c lcl_gr.c lcl_ho.c \ + lcl_ng.c lcl_nw.c lcl_pr.c lcl_pw.c lcl_sv.c nis.c nis_gr.c nis_ho.c \ + nis_ng.c nis_nw.c nis_pr.c nis_pw.c nis_sv.c nul_ng.c util.c +.endif + +.PATH: ${BIND_DIR}/lib/isc +SRCS+= tree.c base64.c bitncmp.c assertions.c \ + memcluster.c logging.c heap.c \ + eventlib.c ev_connects.c ev_files.c \ + ev_timers.c ev_streams.c ev_waits.c + +.PATH: ${BIND_DIR}/lib/inet +SRCS+= nsap_addr.c inet_addr.c inet_ntop.c inet_pton.c \ + inet_ntoa.c inet_neta.c inet_net_ntop.c inet_net_pton.c \ + inet_lnaof.c inet_makeaddr.c inet_netof.c inet_network.c + +.PATH: ${BIND_DIR}/lib/nameser +SRCS+= ns_parse.c ns_print.c ns_netint.c ns_ttl.c ns_name.c + +INTERNALLIB= true +NOPIC= true +INTERNALSTATICLIB= true + +.include <bsd.lib.mk> |
