* configure.ac (static-classpath): Removed.
[cacao.git] / src / native / Makefile.am
index 9bba7dc8c431a859a5bc5a561485498435d21e2f..8cb17b562df183739d54a40fd245c2e5e35fdb52 100644 (file)
@@ -1,33 +1,61 @@
-## Process this file with automake to produce Makefile.in
+## src/native/Makefile.am
+##
+## Copyright (C) 1996-2005, 2006, 2007 R. Grafl, A. Krall, C. Kruegel,
+## C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
+## E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
+## J. Wenninger, Institut f. Computersprachen - TU Wien
+##
+## This file is part of CACAO.
+##
+## This program is free software; you can redistribute it and/or
+## modify it under the terms of the GNU General Public License as
+## published by the Free Software Foundation; either version 2, or (at
+## your option) any later version.
+##
+## This program is distributed in the hope that it will be useful, but
+## WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+## General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software
+## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+## 02110-1301, USA.
 
-# $Id: Makefile.am 1647 2004-12-01 16:10:18Z twisti $
 
-INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/@ARCH_DIR@
+AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR) -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR)/$(OS_DIR) -I$(top_builddir)/src
 
-SUBDIRS = tools include vm
+LIBS =
 
-# include NO_REGEN_CLASSES, CLASSES and AWT_CLASSES
-include $(srcdir)/classes.am
+SUBDIRS = \
+       include \
+       vm
 
-noinst_LIBRARIES = libnative.a
-
-libnative_a_SOURCES = \
-       jni.c \
-       native.c
+if ENABLE_JVMTI
+SUBDIRS += jvmti
+JVMTI_LIB = jvmti/libjvmti.la
+endif
 
-native.c: nativetable.inc
+noinst_LTLIBRARIES = libnative.la
 
-if USE_GTK_PEER
-AWT_HEADERS_TOUCH_FILE = $(srcdir)/include/awtheaders-generated
+if ENABLE_JNI
+JNI_SOURCES = \
+       jni.c \
+       jni.h \
+       localref.c \
+       localref.h
 endif
 
-nativetable.inc: $(top_srcdir)/src/classpath/lib/bootstrap.zip $(top_srcdir)/config.h $(srcdir)/include/headers-generated $(AWT_HEADERS_TOUCH_FILE)
-       CLASSPATH=$(top_srcdir)/src/classpath/lib/bootstrap.zip \
-       $(top_srcdir)/src/native/tools/gennativetable \
-       $(NO_REGEN_CLASSES) \
-       $(CLASSES) \
-       $(AWT_CLASSES) \
-       > nativetable.inc
+libnative_la_SOURCES = \
+       $(JNI_SOURCES) \
+       llni.c \
+       llni.h \
+       native.c \
+       native.h
+
+libnative_la_LIBADD = \
+       vm/libnativevm.la \
+       $(JVMTI_LIB)
 
 
 ## Local variables: