diff --git a/.gitignore b/.gitignore index be2b3fd..ce239f7 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ Makefile Makefile.in TAGS +/dnstap-ldns diff --git a/Makefile.am b/Makefile.am index b63c886..32fa90f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,4 +22,14 @@ CLEANFILES += ${PROTOBUF_SOURCES} bin_PROGRAMS += dnstap-ldns dnstap_ldns_SOURCES = \ - dnstap-ldns.c + dnstap-ldns.c \ + host2str.c \ + ${PROTOBUF_SOURCES} +dnstap_ldns_CFLAGS = \ + ${libldns_CFLAGS} \ + ${libfstrm_CFLAGS} \ + ${libprotobuf_c_CFLAGS} +dnstap_ldns_LDADD = \ + ${libldns_LIBS} \ + ${libfstrm_LIBS} \ + ${libprotobuf_c_LIBS}