453f44128024070dab8a4928c314c19ec5deb188
[cacao.git] / src / vm / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 1622 2004-11-30 13:18:52Z twisti $
4
5 INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/@ARCH_DIR@
6
7 SUBDIRS = jit
8
9 if USE_ZLIB
10 ZLIB_OBJ = unzip.c
11 endif
12
13 noinst_LIBRARIES = libvm.a
14
15 libvm_a_SOURCES = \
16         builtin.c \
17         exceptions.c \
18         loader.c \
19         options.c \
20         statistics.c \
21         tables.c \
22         $(ZLIB_OBJ)
23
24
25 ## Local variables:
26 ## mode: Makefile
27 ## indent-tabs-mode: t
28 ## c-basic-offset: 4
29 ## tab-width: 8
30 ## compile-command: "automake --add-missing"
31 ## End: