New source tree.
[cacao.git] / src / vm / jit / Makefile.am
index 9c2e8edca0cddc521f2becddfba547565fb3ed25..49b00bdd09e225bd3b6141a205c2a92bf1374afa 100644 (file)
@@ -1 +1,30 @@
-EXTRA_DIST = mcode.c parse.c reg.c stack.c jitdef.h parseRT.h parseXTA.h
+## Process this file with automake to produce Makefile.in
+
+# $Id: Makefile.am 1621 2004-11-30 13:06:55Z twisti $
+
+INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/@ARCH_DIR@
+
+SUBDIRS = inline loop verify tools @ARCH_DIR@
+
+DIST_SUBDIRS = inline loop verify tools alpha i386 mips powerpc x86_64
+
+noinst_LIBRARIES = libjit.a
+
+libjit_a_SOURCES = \
+       jit.c \
+       parse.c \
+       stack.c
+
+libjit_a_LIBADD = \
+       inline/libinline.a \
+       loop/libloop.a \
+       verify/libverify.a
+
+
+## Local variables:
+## mode: Makefile
+## indent-tabs-mode: t
+## c-basic-offset: 4
+## tab-width: 8
+## compile-command: "automake --add-missing"
+## End: