blob: bac68415cf3d608d4b6b55fc0c4507c4b55950f2 (
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
|
noinst_LTLIBRARIES = libarmv7.la
libarmv7_la_SOURCES = \
arm.h arm.c \
context.h context.c \
core.h core.c \
cregister.h cregister.c \
fetch.h fetch.c \
helpers.h \
instruction.h instruction.c \
link.h link.c \
post.h post.c \
processor.h processor.c \
pseudo.h pseudo.c \
register.h register.c \
simd.h simd.c \
thumb_16.h thumb_16.c \
thumb_32.h thumb_32.c
libarmv7_la_LIBADD = \
opcodes/libarmv7opcodes.la \
operands/libarmv7operands.la
libarmv7_la_CFLAGS = $(AM_CFLAGS)
AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS) -I$(top_srcdir)/src
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
SUBDIRS = opdefs opcodes operands
|