File: Makefile.am

package info (click to toggle)
pdns 5.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,824 kB
  • sloc: cpp: 101,240; sh: 5,616; makefile: 2,318; sql: 860; ansic: 675; python: 635; yacc: 245; perl: 161; lex: 131
file content (28 lines) | stat: -rw-r--r-- 609 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
pkglib_LTLIBRARIES = libbindbackend.la
AM_CPPFLAGS += -I../../pdns $(LIBCRYPTO_INCLUDES)

AM_LFLAGS = -i
AM_YFLAGS = -d --verbose --debug

BUILT_SOURCES = \
	../../pdns/bindlexer.l \
	../../pdns/bindparser.yy

dist_doc_DATA = \
	../../pdns/bind-dnssec.4.2.0_to_4.3.0_schema.sqlite3.sql \
	../../pdns/bind-dnssec.schema.sqlite3.sql

EXTRA_DIST = \
	OBJECTFILES \
	OBJECTLIBS \
	meson.build

libbindbackend_la_SOURCES = \
	bindbackend2.cc bindbackend2.hh \
	binddnssec.cc

if BINDBACKEND_DYNMODULE
libbindbackend_la_LDFLAGS = -module -avoid-version
else
libbindbackend_la_LDFLAGS = -static -avoid-version
endif