blob: 0bff196178b2ee420f963645a883e3acfe04b967 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
noinst_LTLIBRARIES = libarcharmv7opcodes.la
# ls *c | grep -v thumb | sort | sed 's/^/\t/' | sed 's/$/\t\t\\/'
libarcharmv7opcodes_la_SOURCES = \
arm_adc.c \
arm_add.c \
arm_and.c \
arm_b.c \
arm_bic.c \
arm_bl.c \
arm_bx.c \
arm_cbnz.c \
arm_cmn.c \
arm_cmp.c \
arm_eor.c \
arm_ldr.c \
arm_ldrb.c \
arm_lsl.c \
arm_mla.c \
arm_mls.c \
arm_mov.c \
arm_mul.c \
arm_mvn.c \
arm_nop.c \
arm_orr.c \
arm_pop.c \
arm_push.c \
arm_rsb.c \
arm_rsc.c \
arm_sbc.c \
arm_smlal.c \
arm_smull.c \
arm_str.c \
arm_strb.c \
arm_sub.c \
arm_subs.c \
arm_teq.c \
arm_tst.c \
arm_umaal.c \
arm_umlal.c \
arm_umull.c \
arm_yield.c \
thumb_16_adc.c \
thumb_16_add.c \
thumb_16_and.c \
thumb_16_b.c \
thumb_16_bic.c \
thumb_16_bl.c \
thumb_16_bx.c \
thumb_16_cbnz.c \
thumb_16_cmn.c \
thumb_16_cmp.c \
thumb_16_eor.c \
thumb_16_ldr.c \
thumb_16_ldrb.c \
thumb_16_lsl.c \
thumb_16_mla.c \
thumb_16_mls.c \
thumb_16_mov.c \
thumb_16_mul.c \
thumb_16_mvn.c \
thumb_16_nop.c \
thumb_16_orr.c \
thumb_16_pop.c \
thumb_16_push.c \
thumb_16_rsb.c \
thumb_16_rsc.c \
thumb_16_sbc.c \
thumb_16_smlal.c \
thumb_16_smull.c \
thumb_16_str.c \
thumb_16_strb.c \
thumb_16_sub.c \
thumb_16_subs.c \
thumb_16_teq.c \
thumb_16_tst.c \
thumb_16_umaal.c \
thumb_16_umlal.c \
thumb_16_umull.c \
thumb_16_yield.c \
thumb_32_adc.c \
thumb_32_add.c \
thumb_32_and.c \
thumb_32_b.c \
thumb_32_bic.c \
thumb_32_bl.c \
thumb_32_bx.c \
thumb_32_cbnz.c \
thumb_32_cmn.c \
thumb_32_cmp.c \
thumb_32_eor.c \
thumb_32_ldr.c \
thumb_32_ldrb.c \
thumb_32_lsl.c \
thumb_32_mla.c \
thumb_32_mls.c \
thumb_32_mov.c \
thumb_32_mul.c \
thumb_32_mvn.c \
thumb_32_nop.c \
thumb_32_orr.c \
thumb_32_pop.c \
thumb_32_push.c \
thumb_32_rsb.c \
thumb_32_rsc.c \
thumb_32_sbc.c \
thumb_32_smlal.c \
thumb_32_smull.c \
thumb_32_str.c \
thumb_32_strb.c \
thumb_32_sub.c \
thumb_32_subs.c \
thumb_32_teq.c \
thumb_32_tst.c \
thumb_32_umaal.c \
thumb_32_umlal.c \
thumb_32_umull.c \
thumb_32_yield.c
libarcharmv7opcodes_la_LIBADD =
libarcharmv7opcodes_la_CFLAGS = $(AM_CFLAGS)
AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS)
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
|