| 1 | AM_CXXFLAGS=-DSYSCONFDIR=\"@sysconfdir@\" -DLIBDIR=\"@libdir@\" -DLOCALSTATEDIR=\"@socketdir@\" -Ibackends/bind |
|---|
| 2 | AM_CPPFLAGS=-Ibackends/bind @THREADFLAGS@ |
|---|
| 3 | |
|---|
| 4 | EXTRA_DIST = docs/Makefile \ |
|---|
| 5 | docs/gslb-operations.sgml docs/powerdns-case.sgml docs/powerdns-install.sgml \ |
|---|
| 6 | docs/powerdns-overview.sgml docs/powerdns-technical.sgml \ |
|---|
| 7 | release-scripts/ docs/pdns.sgml mtasker.cc \ |
|---|
| 8 | docs/pdns_control.8 docs/pdns_server.8 docs/zone2sql.8 |
|---|
| 9 | |
|---|
| 10 | noinst_SCRIPTS = pdns |
|---|
| 11 | sysconf_DATA = pdns.conf-dist |
|---|
| 12 | |
|---|
| 13 | if RECURSOR |
|---|
| 14 | bin_PROGRAMS = pdns_control pdns_recursor |
|---|
| 15 | else |
|---|
| 16 | bin_PROGRAMS = pdns_control |
|---|
| 17 | endif |
|---|
| 18 | |
|---|
| 19 | sbin_PROGRAMS = pdns_server |
|---|
| 20 | |
|---|
| 21 | EXTRA_PROGRAMS=pdns_recursor pdns_control |
|---|
| 22 | |
|---|
| 23 | pdns_server_SOURCES=dnspacket.cc nameserver.cc tcpreceiver.hh \ |
|---|
| 24 | qtype.cc logger.cc arguments.cc packethandler.cc tcpreceiver.cc \ |
|---|
| 25 | packetcache.cc statbag.cc ahuexception.hh arguments.hh distributor.hh \ |
|---|
| 26 | dns.hh dnsbackend.hh dnsbackend.cc dnspacket.hh dynmessenger.hh lock.hh logger.hh \ |
|---|
| 27 | nameserver.hh packetcache.hh packethandler.hh qtype.hh statbag.hh \ |
|---|
| 28 | ueberbackend.hh pdns.conf-dist ws.hh ws.cc webserver.cc webserver.hh \ |
|---|
| 29 | session.cc session.hh misc.cc misc.hh receiver.cc ueberbackend.cc \ |
|---|
| 30 | dynlistener.cc dynlistener.hh dynhandler.cc dynhandler.hh \ |
|---|
| 31 | resolver.hh resolver.cc communicator.cc communicator.hh dnsproxy.cc \ |
|---|
| 32 | dnsproxy.hh randombackend.cc unix_utility.cc common_startup.cc \ |
|---|
| 33 | utility.hh iputils.hh common_startup.hh \ |
|---|
| 34 | backends/bind/bindbackend.cc backends/bind/zoneparser2.cc \ |
|---|
| 35 | backends/bind/bindparser.cc backends/bind/bindlexer.c \ |
|---|
| 36 | backends/bind/huffman.cc backends/gsql/gsqlbackend.cc \ |
|---|
| 37 | backends/gsql/gsqlbackend.hh backends/gsql/ssql.hh \ |
|---|
| 38 | sillyrecords.cc recbcomm.hh recbcomm.cc |
|---|
| 39 | |
|---|
| 40 | # |
|---|
| 41 | pdns_server_LDFLAGS= @moduleobjects@ @modulelibs@ @DYNLINKFLAGS@ @LIBDL@ @THREADFLAGS@ |
|---|
| 42 | pdns_server_INCLUDES= |
|---|
| 43 | |
|---|
| 44 | |
|---|
| 45 | #resolver_SOURCES=resolver.cc resolver.hh misc.cc unix_utility.cc qtype.cc \ |
|---|
| 46 | #logger.cc statbag.cc dnspacket.cc arguments.cc tres.cc |
|---|
| 47 | |
|---|
| 48 | pdns_recursor_SOURCES=syncres.cc resolver.hh misc.cc unix_utility.cc qtype.cc \ |
|---|
| 49 | logger.cc statbag.cc dnspacket.cc arguments.cc lwres.cc pdns_recursor.cc lwres.hh \ |
|---|
| 50 | mtasker.hh sillyrecords.cc |
|---|
| 51 | |
|---|
| 52 | pdns_recursor_LDFLAGS= |
|---|
| 53 | pdns_recursor_LDADD= |
|---|
| 54 | |
|---|
| 55 | pdns_control_SOURCES=dynloader.cc dynmessenger.cc arguments.cc logger.cc statbag.cc misc.cc unix_utility.cc |
|---|
| 56 | pdns_control_INCLUDES=path.hh |
|---|
| 57 | pdns_control_LDFLAGS=@THREADFLAGS@ |
|---|
| 58 | |
|---|
| 59 | # binpatch_SOURCES=binpatch.cc |
|---|
| 60 | |
|---|
| 61 | SUBDIRS= backends . |
|---|
| 62 | |
|---|