From b190f93cabdb5d29e54a35984f1c45298286451c Mon Sep 17 00:00:00 2001 From: Robert Edmonds Date: Tue, 4 Nov 2014 17:55:38 -0500 Subject: [PATCH] Link and build the dnstap-ldns program --- .gitignore | 1 + Makefile.am | 12 +++++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) 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}