Lazy checkcast and instanceof.
[cacao.git] / src / vm / jit / Makefile.am
index 60d7dd1e7cecf147032c53b537c5d4e0e052f33d..58565b0f3ba22f2dc7679bb751b4531c9bbe5767 100644 (file)
 ##
 ## Changes:
 ##
-## $Id: Makefile.am 1952 2005-02-17 11:41:16Z twisti $
+## $Id: Makefile.am 2254 2005-04-07 11:23:53Z twisti $
 
 ## Process this file with automake to produce Makefile.in
 
 INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/@ARCH_DIR@
 
-SUBDIRS = inline loop schedule tools verify @ARCH_DIR@
+SUBDIRS = inline loop tools verify @ARCH_DIR@
 
 DIST_SUBDIRS = inline loop schedule tools verify alpha i386 mips powerpc x86_64
 
+if USE_SCHEDULER
+SCHEDULE_LIB = schedule/libschedule.la
+SUBDIRS += schedule
+endif
+
 noinst_HEADERS = \
        asmpart.h \
        codegen.inc \
@@ -50,6 +55,8 @@ noinst_HEADERS = \
 noinst_LTLIBRARIES = libjit.la
 
 libjit_la_SOURCES = \
+       asmhelper.c \
+       asmhelper.h \
        jit.c \
        jit.h \
        parse.c \
@@ -62,7 +69,7 @@ libjit_la_SOURCES = \
 libjit_la_LIBADD = \
        inline/libinline.la \
        loop/libloop.la \
-       schedule/libschedule.la \
+       $(SCHEDULE_LIB) \
        verify/libverify.la \
        @ARCH_DIR@/libarch.la