diff options
Diffstat (limited to 'src/contrib/dnstap/Makefile.am')
-rw-r--r-- | src/contrib/dnstap/Makefile.am | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/src/contrib/dnstap/Makefile.am b/src/contrib/dnstap/Makefile.am deleted file mode 100644 index 186487f91..000000000 --- a/src/contrib/dnstap/Makefile.am +++ /dev/null @@ -1,51 +0,0 @@ -ACLOCAL_AMFLAGS = -I $(top_srcdir)/m4 -AM_CPPFLAGS = \ - -include $(top_builddir)/src/config.h \ - -I$(top_srcdir)/src - -EXTRA_DIST = \ - dnstap.proto - -if HAVE_DNSTAP - -SUFFIXES = .proto .pb-c.c .pb-c.h - -.proto.pb-c.c: - $(AM_V_GEN)@PROTOC_C@ --c_out=. -I$(srcdir) $< - -.proto.pb-c.h: - $(AM_V_GEN)@PROTOC_C@ --c_out=. -I$(srcdir) $< - -noinst_LTLIBRARIES = libdnstap.la - -libdnstap_la_CPPFLAGS = \ - $(AM_CPPFLAGS) \ - $(CFLAG_VISIBILITY) - -libdnstap_la_CFLAGS = \ - $(DNSTAP_CFLAGS) - -libdnstap_la_LDFLAGS = \ - $(DNSTAP_LIBS) \ - $(LDFLAG_EXCLUDE_LIBS) - -libdnstap_la_SOURCES = \ - convert.c \ - convert.h \ - dnstap.c \ - dnstap.h \ - message.c \ - message.h \ - reader.c \ - reader.h \ - writer.c \ - writer.h - -nodist_libdnstap_la_SOURCES = \ - dnstap.pb-c.c \ - dnstap.pb-c.h - -BUILT_SOURCES = $(nodist_libdnstap_la_SOURCES) -CLEANFILES = $(nodist_libdnstap_la_SOURCES) - -endif |