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

noinst_LTLIBRARIES = libarch.la

libarch_la_SOURCES =					\
	archbase.h archbase.c				\
	artificial.h artificial.c			\
	immediate.h immediate.c				\
	instruction-int.h					\
	instruction.h instruction.c			\
	operand-int.h						\
	operand.h operand.c					\
	processor-int.h						\
	processor.h processor.c

libarch_la_LIBADD =						\
	jvm/libarchjvm.la					\
	mips/libarchmips.la					\
	x86/libarchx86.la

libarch_la_LDFLAGS = 


INCLUDES = $(LIBGTK_CFLAGS)

AM_CPPFLAGS = 

AM_CFLAGS = $(DEBUG_CFLAGS) $(WARNING_FLAGS) $(COMPLIANCE_FLAGS)


SUBDIRS = jvm mips x86