blob: a1349470e820f542f4856ee60cac29bf94c70df5 (
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
|
noinst_LTLIBRARIES = libpychrysaarch4.la libpychrysaarchui.la # 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 \
# vmpa.h vmpa.c
# libpychrysaarch_la_LIBADD = \
# instructions/libpychrysaarchinstructions.la \
# operands/libpychrysaarchoperands.la
# libpychrysaarch_la_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBXML_CFLAGS) $(LIBPYTHON_INTERPRETER_CFLAGS) $(LIBPYGOBJECT_CFLAGS) \
# -I$(top_srcdir)/src -DNO_IMPORT_PYGOBJECT
libpychrysaarch4_la_SOURCES = \
constants.h constants.c \
module.h module.c \
operand.h operand.c \
register.h register.c \
vmpa.h vmpa.c
libpychrysaarch4_la_LIBADD = \
operands/libpychrysaarchoperands.la
libpychrysaarch4_la_CFLAGS = $(LIBPYTHON_INTERPRETER_CFLAGS) $(LIBPYGOBJECT_CFLAGS) \
$(TOOLKIT_CFLAGS) \
-I$(top_srcdir)/src -DNO_IMPORT_PYGOBJECT
libpychrysaarchui_la_SOURCES = \
module-ui.h module-ui.c \
operand-ui.h operand-ui.c
libpychrysaarchui_la_CFLAGS = $(LIBPYTHON_INTERPRETER_CFLAGS) $(LIBPYGOBJECT_CFLAGS) \
$(TOOLKIT_CFLAGS) \
-I$(top_srcdir)/src -DNO_IMPORT_PYGOBJECT
devdir = $(includedir)/chrysalide/$(subdir)
dev_HEADERS = $(libpychrysaarch_la_SOURCES:%c=)
# SUBDIRS = instructions operands
SUBDIRS = operands
|