summaryrefslogtreecommitdiff
path: root/src/arch/Makefile.am
blob: bdfceb7ed4cf2cfd42d0152bf0fcd9153faab81d (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

noinst_LTLIBRARIES = libarch.la

libarch_la_SOURCES =						\
	archbase.h archbase.c					\
	context-int.h							\
	context.h context.c						\
	instriter.h instriter.c					\
	instruction-int.h						\
	instruction.h instruction.c				\
	link.h link.c							\
	operand-int.h operand-int.c				\
	operand.h operand.c						\
	post.h post.c							\
	processor-int.h							\
	processor.h processor.c					\
	register-int.h							\
	register.h register.c					\
	storage.h storage.c						\
	vmpa.h vmpa.c

libarch_la_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBXML_CFLAGS)

libarch_la_LIBADD =							\
	instructions/libarchinstructions.la		\
	operands/libarchoperands.la


devdir = $(includedir)/chrysalide/$(subdir:src/%=core/%)

dev_HEADERS = $(libarch_la_SOURCES:%c=)


SUBDIRS = instructions operands