blob: 66cff6f915fa546ca8ca3da16a64dbc30d668968 (
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
|
lib_LTLIBRARIES = libarm.la
libdir = $(pluginslibdir)
if BUILD_PYTHON3_BINDINGS
PYTHON3_LIBADD = python/libarmpython.la
if BUILD_DISCARD_LOCAL
PYTHON3_LDFLAGS = -Wl,-rpath,$(pluginslibdir) \
-L$(top_srcdir)/plugins/pychrysalide/.libs -l:pychrysalide.so
else
PYTHON3_LDFLAGS = -Wl,-rpath,$(abs_top_srcdir)/plugins/pychrysalide/.libs \
-L$(top_srcdir)/plugins/pychrysalide/.libs -l:pychrysalide.so
endif
PYTHON3_SUBDIRS = python
endif
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 = \
$(PYTHON3_LIBADD) \
v7/libarmv7.la
libarm_la_LDFLAGS = \
-L$(top_srcdir)/src/.libs -lchrysacore \
$(PYTHON3_LDFLAGS)
devdir = $(includedir)/chrysalide/$(subdir)
dev_HEADERS = $(libarm_la_SOURCES:%c=)
AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS) -I$(top_srcdir)/src
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
SUBDIRS = v7 $(PYTHON3_SUBDIRS)
|