Added critical regions for native threads
[cacao.git] / jit / Makefile.am
index a37f9616a08ca16a044b38ca78346e0feaa8ebc1..7834c9ab118f343d076642b8a094669445540777 100644 (file)
@@ -1 +1,47 @@
-EXTRA_DIST = mcode.c parse.c reg.c stack.c jitdef.h
+## Process this file with automake to produce Makefile.in
+
+# $Id: Makefile.am 696 2003-12-06 20:10:05Z edwin $
+
+
+SUBDIRS = . loop @ARCH_DIR@
+DIST_SUBDIRS = loop alpha i386 mips powerpc x86_64
+
+INCLUDES = -I$(top_srcdir)/jit/@ARCH_DIR@ -I$(top_srcdir)/jit
+
+EXTRA_DIST = \
+       jit.c \
+       jit.h \
+       codegen.inc \
+       parse.c \
+       reg.inc \
+       stack.c \
+       inline.c \
+       sets.c \
+       sets.h \
+       parseRT.c \
+       parseRTprint.h \
+       parseRTstats.c \
+       typecheck.c
+
+noinst_HEADERS = \
+       parse.h \
+       stack.h \
+       reg.h \
+       inline.h \
+       parseRT.h \
+       parseRTstats.h
+
+noinst_LIBRARIES = libjit.a
+
+libjit_a_SOURCES = jit.c parse.c stack.c inline.c sets.c parseRT.c parseRTstats.c typecheck.c
+
+all-local:
+       $(MAKE) $(AM_MAKEFLAGS) -C .. jit/@ARCH_DIR@/offsets.h
+
+## Local variables:
+## mode: Makefile
+## indent-tabs-mode: t
+## c-basic-offset: 4
+## tab-width: 8
+## compile-command: "automake --add-missing"
+## End: