* Removed all Id tags.
[cacao.git] / src / vm / jit / Makefile.am
index ac5eb6b3cc8e7dbcd1705918447212d0914f32c0..bc1ad834b2f607b7da77c33887e43fcdd1f822ca 100644 (file)
@@ -1,6 +1,6 @@
 ## src/vm/jit/Makefile.am
 ##
-## Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
+## Copyright (C) 1996-2005, 2006, 2007 R. Grafl, A. Krall, C. Kruegel,
 ## C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
 ## E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
 ## J. Wenninger, Institut f. Computersprachen - TU Wien
 ## along with this program; if not, write to the Free Software
 ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 ## 02110-1301, USA.
-##
-## Contact: cacao@cacaojvm.org
-##
-## Authors: Christian Thalinger
-##
-## Changes: Edwin Steiner
-##
-## $Id: Makefile.am 5211 2006-08-07 11:12:40Z twisti $
 
-## Process this file with automake to produce Makefile.in
 
-AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR) -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR)/$(OS_DIR)
+AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR) -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR)/$(OS_DIR) -I$(top_builddir)/src -I$(top_srcdir)/contrib/vmlog
 
 LIBS =
 
 DIST_SUBDIRS = \
        allocator \
-       ifconv \
        inline \
        loop \
-       profile \
+       optimizing \
        schedule \
-       tools \
        verify \
        \
        intrp \
        alpha \
+       arm \
        i386 \
+       m68k \
        mips \
+       parisc \
        powerpc \
-       x86_64 \
-       sparc64
+       powerpc64 \
+       s390 \
+       sparc64 \
+       x86_64
 
 SUBDIRS = \
-       allocator \
-       tools \
-       verify
+       optimizing \
+       $(ARCH_DIR)
+
+ARCH_LIB = \
+       $(ARCH_DIR)/libarch.la
 
 if ENABLE_JIT
-SUBDIRS += $(ARCH_DIR)
-ARCH_LIB = $(ARCH_DIR)/libarch.la
+SUBDIRS += \
+       allocator
+
+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
+SUBDIRS += \
+       inline
+
+INLINE_LIB = \
+       inline/libinline.la
 endif
 
 if ENABLE_LOOP
-SUBDIRS += loop
-LOOP_LIB = loop/libloop.la
+SUBDIRS += \
+       loop
+
+LOOP_LIB = \
+       loop/libloop.la
+endif
+
+if USE_SCHEDULER
+SUBDIRS += \
+       schedule
+
+SCHEDULE_LIB = \
+       schedule/libschedule.la
 endif
 
-if ENABLE_PROFILING
-SUBDIRS += profile
-PROFILE_LIB = profile/libprofile.la
+REPLACE_SOURCES =
+
+if ENABLE_JIT
+REG_SOURCES = \
+       reg.c \
+       reg.h
+
+REPLACE_SOURCES += \
+       replace.h
+
+STACK_SOURCES = \
+       stack.c \
+       stack.h
 endif
 
-if ENABLE_THREADS
-RECOMPILE_SOURCES = \
-       recompile.c \
-       recompile.h
+if ENABLE_REPLACEMENT
+REPLACE_SOURCES += \
+       replace.c
 endif
 
-if USE_SCHEDULER
-SUBDIRS += schedule
-SCHEDULE_LIB = schedule/libschedule.la
+if ENABLE_VERIFIER
+SUBDIRS += \
+       verify
+
+VERIFIER_LIB = \
+       verify/libverify.la
 endif
 
 if WITH_BINUTILS_DISASSEMBLER
 DISASS_SOURCES = disass-common.c
-else
-DISASS_SOURCES =
 endif
 
 noinst_HEADERS = \
        abi.h \
        abi-asm.h \
        asmpart.h \
-       emit.h \
+       md.h \
        methodheader.h \
        patcher.h 
 
-noinst_LTLIBRARIES = libjit.la
+noinst_LTLIBRARIES = \
+       libjit.la
 
 libjit_la_SOURCES = \
        code.c \
@@ -125,36 +147,39 @@ libjit_la_SOURCES = \
        $(DISASS_SOURCES) \
        dseg.c \
        dseg.h \
+       emit-common.c \
+       emit-common.h \
+       icmdtable.inc \
        jit.c \
        jit.h \
        parse.c \
        parse.h \
-       reg.c \
-       reg.h \
+       patcher-common.c \
+       patcher-common.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
+       stacktrace.h \
+       trace.c \
+       trace.h
 
 libjit_la_SOURCES += \
        cfg.c \
-       cfg.h \
-       reorder.c \
-       reorder.h
+       cfg.h
 
 libjit_la_LIBADD = \
        allocator/liballocator.la \
-       verify/libverify.la \
-       $(IFCONV_LIB) \
+       $(ALLOCATOR_LIB) \
        $(INLINE_LIB) \
        $(LOOP_LIB) \
+       $(OPTIMIZING_LIB) \
        $(PROFILE_LIB) \
        $(SCHEDULE_LIB) \
+       $(VERIFIER_LIB) \
        $(INTRP_LIB) \
        $(ARCH_LIB)