blob: d3ee3f07f8d02ccec5470641f6a06f4957e3f9dc (
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
|
noinst_LTLIBRARIES = libpychrysaarch4.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 \
# register.h register.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 \
vmpa.h vmpa.c
# libpychrysaarch4_la_LIBADD = \
# instructions/libpychrysaarchinstructions.la \
# operands/libpychrysaarchoperands.la
libpychrysaarch4_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
|