blob: 8632c0efb78741de216422702a381655c7e01664 (
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
46
47
48
49
50
|
noinst_LTLIBRARIES = libarchdalvikopcodes.la
libarchdalvikopcodes_la_SOURCES = \
add.c \
aget.c \
and.c \
aput.c \
array.c \
check.c \
cmp.c \
const.c \
div.c \
goto.c \
if.c \
iget.c \
instanceof.c \
invoke.c \
iput.c \
monitor.c \
move.c \
mul.c \
neg.c \
new.c \
nop.c \
not.c \
opcodes.h \
or.c \
rem.c \
ret.c \
rsub.c \
sget.c \
shl.c \
shr.c \
sput.c \
sub.c \
switch.c \
throw.c \
to.c \
ushr.c \
xor.c
libarchdalvikopcodes_la_LIBADD =
libarchdalvikopcodes_la_CFLAGS = $(AM_CFLAGS)
AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS)
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
|