blob: 127ca4c5c4d45ae2a7894afe42c02fbbab4b1240 (
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
|
noinst_LTLIBRARIES = libarch.la libarchui.la
# libarch_la_SOURCES = \
# archbase.h archbase.c \
# context-int.h \
# context.h context.c \
# instriter.h instriter.c \
# link.h link.c \
# post.h post.c \
# storage.h storage.c
# libarch_la_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBXML_CFLAGS)
# libarch_la_LIBADD = \
# instructions/libarchinstructions.la \
# operands/libarchoperands.la
# instruction-int.h \
# instruction.h instruction.c \
#
# processor-int.h \
# processor.h processor.c \
#
libarch_la_SOURCES = \
operand-int.h \
operand.h operand.c \
register-int.h \
register.h register.c \
vmpa.h vmpa.c
libarch_la_CFLAGS = $(LIBGOBJ_CFLAGS)
libarch_la_LIBADD = \
operands/libarchoperands.la
libarchui_la_SOURCES = \
operand-ui-int.h \
operand-ui.h operand-ui.c
libarchui_la_CFLAGS = $(LIBGTK_CFLAGS)
libarchui_la_LIBADD = \
operands/libarchoperandsui.la
devdir = $(includedir)/chrysalide/$(subdir:src/%=core/%)
dev_HEADERS = $(libarch_la_SOURCES:%c=) $(libarchui_la_SOURCES:%c=)
#SUBDIRS = instructions operands
SUBDIRS = operands
|