X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Fvm%2Fjit%2FMakefile.am;h=656f643f260da4df2df42fe37cc6ccbd1ac83c52;hb=ff4083aaec535fb7a937e3221a42782959586644;hp=0efad83d04ebfc54f8a1881c58a77e4bca237523;hpb=82afa39464dc043e9148a0803c24eb637eba7ed6;p=cacao.git diff --git a/src/vm/jit/Makefile.am b/src/vm/jit/Makefile.am index 0efad83d0..656f643f2 100644 --- a/src/vm/jit/Makefile.am +++ b/src/vm/jit/Makefile.am @@ -28,7 +28,7 @@ ## ## Changes: Edwin Steiner ## -## $Id: Makefile.am 5797 2006-10-18 15:27:42Z twisti $ +## $Id: Makefile.am 5895 2006-11-03 14:03:40Z twisti $ ## Process this file with automake to produce Makefile.in @@ -38,11 +38,9 @@ LIBS = DIST_SUBDIRS = \ allocator \ - ifconv \ inline \ loop \ optimizing \ - profile \ schedule \ tools \ verify \ @@ -51,60 +49,73 @@ DIST_SUBDIRS = \ alpha \ i386 \ mips \ + parisc \ powerpc \ powerpc64 \ sparc64 \ x86_64 SUBDIRS = \ - allocator \ + optimizing \ tools \ verify if ENABLE_JIT -SUBDIRS += $(ARCH_DIR) -ARCH_LIB = $(ARCH_DIR)/libarch.la +SUBDIRS += \ + allocator \ + $(ARCH_DIR) + +ARCH_LIB = \ + $(ARCH_DIR)/libarch.la + +OPTIMIZING_LIB = \ + optimizing/liboptimizing.la endif if ENABLE_INTRP -SUBDIRS += intrp -INTRP_LIB = intrp/libintrp.la -endif +SUBDIRS += \ + intrp -if ENABLE_IFCONV -SUBDIRS += ifconv -IFCONV_LIB = ifconv/libifconv.la +INTRP_LIB = \ + intrp/libintrp.la endif if ENABLE_INLINING -SUBDIRS += inline -INLINE_LIB = inline/libinline.la -endif +SUBDIRS += \ + inline -if ENABLE_LOOP -SUBDIRS += loop -LOOP_LIB = loop/libloop.la +INLINE_LIB = \ + inline/libinline.la endif -if ENABLE_PROFILING -SUBDIRS += profile -PROFILE_LIB = profile/libprofile.la -endif +if ENABLE_LOOP +SUBDIRS += \ + loop -if ENABLE_THREADS -RECOMPILE_SOURCES = \ - recompile.c \ - recompile.h +LOOP_LIB = \ + loop/libloop.la endif if USE_SCHEDULER -SUBDIRS += schedule -SCHEDULE_LIB = schedule/libschedule.la +SUBDIRS += \ + schedule + +SCHEDULE_LIB = \ + schedule/libschedule.la endif -if ENABLE_SSA -SUBDIRS += optimizing -OPTIMIZING_LIB = optimizing/liboptimizing.la +if ENABLE_JIT +REG_SOURCES = \ + reg.c \ + reg.h + +REPLACE_SOURCES = \ + replace.c \ + replace.h + +STACK_SOURCES = \ + stack.c \ + stack.h endif if WITH_BINUTILS_DISASSEMBLER @@ -138,29 +149,23 @@ libjit_la_SOURCES = \ jit.h \ parse.c \ parse.h \ - reg.c \ - reg.h \ $(RECOMPILE_SOURCES) \ - replace.c \ - replace.h \ + $(REG_SOURCES) \ + $(REPLACE_SOURCES) \ show.c \ show.h \ - stack.c \ - stack.h \ + $(STACK_SOURCES) \ stacktrace.c \ stacktrace.h libjit_la_SOURCES += \ cfg.c \ - cfg.h \ - reorder.c \ - reorder.h + cfg.h libjit_la_LIBADD = \ allocator/liballocator.la \ verify/libverify.la \ $(ALLOCATOR_LIB) \ - $(IFCONV_LIB) \ $(INLINE_LIB) \ $(LOOP_LIB) \ $(OPTIMIZING_LIB) \