* renamed CACAO_TYPECHECK to ENABLE_VERIFIER
[cacao.git] / src / vm / Makefile.am
index caf921b743da51adef6f0d7a9337d9d5f498b720..e497080c6c62ed1af2b52e66aec4a029f4f27620 100644 (file)
 ##
 ## Changes:
 ##
-## $Id: Makefile.am 1932 2005-02-10 10:57:02Z twisti $
+## $Id: Makefile.am 3544 2005-11-03 20:35:18Z twisti $
 
 ## Process this file with automake to produce Makefile.in
 
-INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/@ARCH_DIR@
+INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/@ARCH_DIR@ -I$(top_srcdir)/src/vm/jit/@ARCH_DIR@/@OS_DIR@
 
 SUBDIRS = jit
 
+if STATISTICS
+STATISTICS_OBJ = \
+       statistics.c \
+       statistics.h
+endif
+
 if USE_ZLIB
 ZLIB_OBJ = \
        unzip.c \
        unzip.h
 endif
 
-noinst_HEADERS = global.h
+noinst_HEADERS = \
+       global.h \
+       types.h
 
 noinst_LTLIBRARIES = libvmcore.la libvm.la
 
 libvmcore_la_SOURCES = \
+       access.c \
+       access.h \
        builtin.c \
        builtin.h \
+       builtintable.inc \
        class.c \
        class.h \
-       exceptions.c \
-       exceptions.h \
+       classcache.c \
+       classcache.h \
+       descriptor.c \
+       descriptor.h \
+       field.c \
+       field.h \
+       finalizer.c \
+       finalizer.h \
+       initialize.c \
+       initialize.h \
+       linker.c \
+       linker.h \
        loader.c \
        loader.h \
+       method.c \
+       method.h \
        options.c \
        options.h \
-       statistics.c \
-       statistics.h \
+       references.h \
+       resolve.c \
+       resolve.h \
+       $(STATISTICS_OBJ) \
+       signal.c \
+       signallocal.h \
        string.c \
-       string.h \
+       stringlocal.h \
        tables.c \
        tables.h \
        utf8.c \
        utf8.h \
        $(ZLIB_OBJ)
 
-libvm_la_SOURCES =
+libvm_la_SOURCES = \
+       exceptions.c \
+       exceptions.h
 
 libvm_la_LIBADD = \
        libvmcore.la \