CallLongMethod implementation added
[cacao.git] / Makefile.am
index 01d032c11c780bc51deceddc3a7ff163f482bc83..bf7c8e33754b41aca4800c2024e9a6847fa25af6 100644 (file)
@@ -1,12 +1,12 @@
 ## Process this file with automake to produce Makefile.in
 
-# $Id: Makefile.am 1264 2004-07-01 14:21:05Z jowenn $
+# $Id: Makefile.am 1333 2004-07-21 15:48:46Z twisti $
 
 @SET_MAKE@
 
 MAINTAINERCLEANFILES = Makefile.in configure
-ALLSUBDIRS = mm toolbox threads jit nat tst doc jvmtst
-SUBDIRS = classpath $(ALLSUBDIRS)
+ALLSUBDIRS = mm toolbox threads jit nat tst doc jvmtst classpath
+SUBDIRS = $(ALLSUBDIRS)
 DIST_SUBDIRS = $(ALLSUBDIRS)
 
 EXTRA_DIST = \
@@ -18,13 +18,10 @@ EXTRA_DIST = \
        nativecalls.h
 
 CLEANFILES = \
-       stamp-nat \
-       jit/@ARCH_DIR@/offsets.h \
-       nativetable.hh \
-       nativetypes.hh
+       nativetable.inc
 
-bin_PROGRAMS = cacao
-noinst_PROGRAMS = cacaoh gennativetable genoffsets
+bin_PROGRAMS = cacao cacaoh
+noinst_PROGRAMS = gennativetable genoffsets
 
 INCLUDES = -I$(top_srcdir)/jit/@ARCH_DIR@
 
@@ -34,6 +31,8 @@ cacao_SOURCES = \
        asmpart.h \
        builtin.c \
        builtin.h \
+       exceptions.c \
+       exceptions.h \
        global.h \
        jni.c \
        jni.h \
@@ -92,6 +91,7 @@ cacao_DEPENDENCIES = \
 cacaoh_SOURCES = \
        builtin.c \
        cacaoh.c \
+       exceptions.c \
        headers.c \
        loader.c \
        options.c \
@@ -116,6 +116,7 @@ cacaoh_DEPENDENCIES = \
 
 gennativetable_SOURCES = \
        builtin.c \
+       exceptions.c \
        gennativetable.c \
        headers.c \
        loader.c \
@@ -133,10 +134,12 @@ gennativetable_LDADD = \
        @THREAD_LIB@
 
 natheaders: cacaoh
-       CLASSPATH=$(top_srcdir)/classpath/lib/glibj.zip ./cacaoh $(CLASSES)
+       CLASSPATH=$(top_srcdir)/classpath/lib/bootstrap.zip ./cacaoh $(CLASSES)
 
 nativetable.inc: gennativetable
-       CLASSPATH=$(top_srcdir)/classpath/lib/glibj.zip $(top_srcdir)/gennativetable $(CLASSES) > nativetable.inc
+       CLASSPATH=$(top_srcdir)/classpath/lib/bootstrap.zip $(top_srcdir)/gennativetable $(CLASSES) > nativetable.inc
+
+native.c: nativetable.inc
 
 CLASSES= \
        java.lang.String \