From 0e02a7d7fd302626a9a7c10dd12573d2f97363f1 Mon Sep 17 00:00:00 2001 From: twisti Date: Mon, 6 Feb 2006 18:49:53 +0000 Subject: [PATCH] * src/vm/jit/Makefile.am (DIST_SUBDIRS): Added profile. (PROFILE_LIB): Added. (PROFILE_SOURCES): Removed. --- src/vm/jit/Makefile.am | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/vm/jit/Makefile.am b/src/vm/jit/Makefile.am index 6e8df9bfb..d484a8bed 100644 --- a/src/vm/jit/Makefile.am +++ b/src/vm/jit/Makefile.am @@ -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) -- 2.25.1