blob: 28f8e73b1b5119727cfd1565a60b9ea0303138f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
noinst_LTLIBRARIES = libformatdex.la
libformatdex_la_SOURCES = \
class.h class.c \
dex-int.h dex-int.c \
dex.h dex.c \
dex_def.h \
loading.h loading.c \
method.h method.c \
pool.h pool.c
libformatdex_la_LDFLAGS =
AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS)
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
|