summaryrefslogtreecommitdiff
path: root/src/arch/arm/v7/opcodes/Makefile.am
blob: b2f5695107632dccf82f46b968ff775ee40f1994 (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

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_bic.c		\
	arm_bl.c		\
	arm_bx.c		\
	arm_cmn.c		\
	arm_cmp.c		\
	arm_eor.c		\
	arm_mla.c		\
	arm_mls.c		\
	arm_mov.c		\
	arm_mul.c		\
	arm_mvn.c		\
	arm_orr.c		\
	arm_rsb.c		\
	arm_rsc.c		\
	arm_sbc.c		\
	arm_smlal.c		\
	arm_smull.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_bic.c		\
	thumb_16_bl.c		\
	thumb_16_bx.c		\
	thumb_16_cmn.c		\
	thumb_16_cmp.c		\
	thumb_16_eor.c		\
	thumb_16_mla.c		\
	thumb_16_mls.c		\
	thumb_16_mov.c		\
	thumb_16_mul.c		\
	thumb_16_mvn.c		\
	thumb_16_orr.c		\
	thumb_16_rsb.c		\
	thumb_16_rsc.c		\
	thumb_16_sbc.c		\
	thumb_16_smlal.c		\
	thumb_16_smull.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_bic.c		\
	thumb_32_bl.c		\
	thumb_32_bx.c		\
	thumb_32_cmn.c		\
	thumb_32_cmp.c		\
	thumb_32_eor.c		\
	thumb_32_mla.c		\
	thumb_32_mls.c		\
	thumb_32_mov.c		\
	thumb_32_mul.c		\
	thumb_32_mvn.c		\
	thumb_32_orr.c		\
	thumb_32_rsb.c		\
	thumb_32_rsc.c		\
	thumb_32_sbc.c		\
	thumb_32_smlal.c		\
	thumb_32_smull.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)