summaryrefslogtreecommitdiff
path: root/src/format/Makefile.am
blob: 3f18b884d440960117c8be03650e6b411520a386 (plain)
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

noinst_LTLIBRARIES = libformat.la

libformat_la_SOURCES =					\
	debuggable-int.h					\
	debuggable.h debuggable.c			\
	executable-int.h executable-int.c	\
	executable.h executable.c			\
	format-int.h						\
	format.h format.c					\
	symbol.h symbol.c

libformat_la_LIBADD =					\
	dex/libformatdex.la					\
	dwarf/libformatdwarf.la				\
	elf/libformatelf.la					\
	java/libformatjava.la				\
	mangling/libformatmangling.la		\
	pe/libformatpe.la

libformat_la_LDFLAGS = 


AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS)

AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)

SUBDIRS = dex dwarf elf java mangling pe