* renamed CACAO_TYPECHECK to ENABLE_VERIFIER
[cacao.git] / src / vm / Makefile.am
index 8618cd9499b6ebc7a8f9ae7a52aae4bf3fe65210..e497080c6c62ed1af2b52e66aec4a029f4f27620 100644 (file)
 ##
 ## Changes:
 ##
-## $Id: Makefile.am 1735 2004-12-07 14:33:27Z 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 \
-       exceptions.c \
-       exceptions.h \
+       builtintable.inc \
+       class.c \
+       class.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 \
+       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 \