25 lines
747 B
Makefile
25 lines
747 B
Makefile
|
|
||
|
sbin_PROGRAMS = pdnsd
|
||
|
|
||
|
pdnsd_CFLAGS = -DCONFDIR='"$(sysconfdir)"' $(thread_CFLAGS)
|
||
|
|
||
|
pdnsd_SOURCES = conf-parser.c conff.c consts.c debug.c dns.c dns_answer.c \
|
||
|
dns_query.c error.c helpers.c icmp.c list.c main.c netdev.c rr_types.c \
|
||
|
status.c servers.c thread.c cache.c hash.c conf-parser.h \
|
||
|
conf-keywords.h conff.h consts.h debug.h dns.h dns_answer.h \
|
||
|
dns_query.h error.h helpers.h icmp.h ipvers.h list.h netdev.h \
|
||
|
rr_types.h servers.h status.h thread.h cache.h hash.h pdnsd_assert.h \
|
||
|
freebsd_netinet_ip_icmp.h
|
||
|
|
||
|
EXTRA_DIST = make_rr_types_h.pl rr_types.in
|
||
|
|
||
|
## Try to do this last
|
||
|
|
||
|
SUBDIRS = . pdnsd-ctl rc test
|
||
|
|
||
|
$(pdnsd_OBJECTS): rr_types.h
|
||
|
|
||
|
rr_types.h: make_rr_types_h.pl rr_types.in
|
||
|
perl make_rr_types_h.pl rr_types.in > rr_types.h
|
||
|
|