Added: if USE_SCHEDULER
authortwisti <none@none>
Thu, 10 Mar 2005 16:33:45 +0000 (16:33 +0000)
committertwisti <none@none>
Thu, 10 Mar 2005 16:33:45 +0000 (16:33 +0000)
src/vm/jit/Makefile.am

index 60d7dd1e7cecf147032c53b537c5d4e0e052f33d..732ae61449cd6af45fa390513a6b6256c22b6d02 100644 (file)
 ##
 ## Changes:
 ##
-## $Id: Makefile.am 1952 2005-02-17 11:41:16Z twisti $
+## $Id: Makefile.am 2032 2005-03-10 16:33:45Z 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 \
@@ -62,7 +67,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