* src/vm/jit/Makefile.am (DIST_SUBDIRS): Added profile.
[cacao.git] / src / vm / jit / Makefile.am
index 6e8df9bfb9c771c1728aeabb4ccd9387dc7c0345..d484a8bed555bf2253530cd75fc888ed43929d31 100644 (file)
@@ -28,7 +28,7 @@
 ##
 ## Changes:
 ##
-## $Id: Makefile.am 4388 2006-01-30 15:44:52Z twisti $
+## $Id: Makefile.am 4472 2006-02-06 18:49:53Z twisti $
 
 ## Process this file with automake to produce Makefile.in
 
@@ -44,6 +44,7 @@ DIST_SUBDIRS = \
        allocator \
        inline \
        loop \
+       profile \
        schedule \
        tools \
        verify \
@@ -69,6 +70,9 @@ SUBDIRS += inline
 INLINE_LIB = inline/libinline.la
 endif
 
+SUBDIRS += profile
+PROFILE_LIB = profile/libprofile.la
+
 if USE_SCHEDULER
 SUBDIRS += schedule
 SCHEDULE_LIB = schedule/libschedule.la
@@ -80,10 +84,6 @@ else
 DISASS_SOURCES =
 endif
 
-PROFILE_SOURCES = \
-       profile.c \
-       profile.h
-
 noinst_HEADERS = \
        abi.h \
        asmpart.h \
@@ -103,7 +103,6 @@ libjit_la_SOURCES = \
        jit.h \
        parse.c \
        parse.h \
-       $(PROFILE_SOURCES) \
        reg.c \
        reg.h \
        stack.c \
@@ -113,10 +112,11 @@ libjit_la_SOURCES = \
 
 libjit_la_LIBADD = \
        allocator/liballocator.la \
-       $(INLINE_LIB) \
        loop/libloop.la \
-       $(SCHEDULE_LIB) \
        verify/libverify.la \
+       $(INLINE_LIB) \
+       $(PROFILE_LIB) \
+       $(SCHEDULE_LIB) \
        $(INTRP_LIB) \
        $(ARCH_LIB)