blob: 3e691f44d5a8821aa75088fb7ea8d0eded93e906 (
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
|
lib_LTLIBRARIES = libarm.la
libarm_la_SOURCES = \
cond.h \
context-int.h \
context.h context.c \
core.h core.c \
instruction-int.h \
instruction.h instruction.c \
link.h link.c \
processor-int.h \
processor.h processor.c \
register-int.h \
register.h register.c
libarm_la_LIBADD = \
python/libarmpython.la \
v7/libarmv7.la
libarm_la_CFLAGS = $(AM_CFLAGS)
libarm_la_LDFLAGS = \
$(LIBPYTHON_LIBS) $(LIBPYGOBJECT_LIBS)
AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBPYTHON_CFLAGS) $(LIBPYGOBJECT_CFLAGS) $(LIBXML_CFLAGS) -I$(top_srcdir)/src
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
SUBDIRS = python v7
|