blob: b0fda8254ae2bb371098567038288487e73470ab (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
noinst_LTLIBRARIES = libformat.la
libformat_la_SOURCES = \
executable-int.h \
executable.h executable.c \
format-int.h \
format.h format.c \
symbol.h symbol.c
# libformat_la_SOURCES = \
# exe_format.h exe_format.c \
# exe_format-int.h \
# executable-int.h \
# executable.h executable.c \
# format-int.h \
# format.h format.c \
# dbg_format.h dbg_format.c \
# dbg_format-int.h \
# part.h part.c
libformat_la_LIBADD = \
dex/libformatdex.la \
elf/libformatelf.la \
java/libformatjava.la \
mangling/libformatmangling.la \
pe/libformatpe.la
# 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 elf java mangling pe
#SUBDIRS = dex dwarf elf java mangling pe
|