blob: cbac98898c0df142274f0fbc63e111be532f3619 (
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
|
noinst_LTLIBRARIES = libpychrysaarch.la
libpychrysaarch_la_SOURCES = \
constants.h constants.c \
context.h context.c \
instriter.h instriter.c \
instruction.h instruction.c \
module.h module.c \
operand.h operand.c \
processor.h processor.c \
register.h register.c \
vmpa.h vmpa.c
libpychrysaarch_la_LIBADD = \
instructions/libpychrysaarchinstructions.la \
operands/libpychrysaarchoperands.la
libpychrysaarch_la_LDFLAGS =
devdir = $(includedir)/chrysalide-$(subdir)
dev_HEADERS = $(libpychrysaarch_la_SOURCES:%c=)
AM_CPPFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS) $(LIBPYTHON_CFLAGS) $(LIBPYGOBJECT_CFLAGS) \
-I$(top_srcdir)/src
AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)
SUBDIRS = instructions operands
|