]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/dnsdistdist/Makefile.am
dnsdistdist infrastructure (for now)
[thirdparty/pdns.git] / pdns / dnsdistdist / Makefile.am
CommitLineData
bbfefc98 1AM_CPPFLAGS = -I pdns $(LUA_CFLAGS) -O3 -Wall -pthread
2
3dnslabeltext.cc: dnslabeltext.rl
4 $(AM_V_GEN)$(RAGEL) $< -o dnslabeltext.cc
5
6EXTRA_DIST=dnslabeltext.rl
7
8bin_PROGRAMS = dnsdist
9dnsdist_SOURCES = \
10 base64.cc base64.hh \
11 dns.hh \
12 dnsdist.cc dnsdist.hh \
13 dnsdist-lua.cc \
14 dnslabeltext.cc \
15 dnsname.cc dnsname.hh \
16 dnsparser.hh \
17 dnswriter.cc dnswriter.hh \
18 dolog.hh \
19 iputils.cc iputils.hh \
20 misc.cc misc.hh \
21 namespaces.hh \
22 pdnsexception.hh \
23 qtype.cc qtype.hh \
24 sodcrypto.cc sodcrypto.hh \
25 sstuff.hh LuaContext.hpp
26
27dnsdist_LDFLAGS = \
28 $(AM_LDFLAGS) \
29 $(BOOST_PROGRAM_OPTIONS_LDFLAGS) -pthread
30
31dnsdist_LDADD = \
32 -lpolarssl -lreadline -lrt -ltermcap \
33 $(BOOST_PROGRAM_OPTIONS_LIBS) $(LUA_LIBS) ${libsodium_LIBS}
34