* src/threads/native/threads.h (STACKFRAMEINFO): Return stackframeinfo
[cacao.git] / src / native / Makefile.am
index e667598a2e8174a12bc79c36398aa60c96d16173..b824949fbe4d6d15c44bc6d0c3af8c388f5caefd 100644 (file)
@@ -1,9 +1,9 @@
 ## src/native/Makefile.am
 ##
-## Copyright (C) 1996-2005 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
+## 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.
 ##
 ##
 ## 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., 59 Temple Place - Suite 330, Boston, MA
-## 02111-1307, USA.
+## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+## 02110-1301, USA.
 ##
-## Contact: cacao@complang.tuwien.ac.at
-##
-## Authors: Christian Thalinger
-##
-## Changes:
-##
-## $Id: Makefile.am 1740 2004-12-08 16:38:25Z twisti $
+## $Id: Makefile.am 7384 2007-02-21 22:17:16Z twisti $
 
 ## Process this file with automake to produce Makefile.in
 
-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_LTLIBRARIES = libnative.la
+CLEANFILES = \
+       nativetable.inc
 
-libnative_la_SOURCES = \
-       jni.c \
-       jni.h \
-       native.c \
-       native.h \
-       nativecalls.inc
+if ENABLE_JVMTI
+SUBDIRS += jvmti
+JVMTI_LIB = jvmti/libjvmti.la
+endif
 
-libnative_la_LIBADD = \
-       vm/libnativevm.la
+if WITH_STATIC_CLASSPATH
+SUBDIRS += tools
+
+GENNATIVETABLE=$(top_builddir)/src/native/tools/gennativetable
 
-native.c: nativetable.inc nativecalls.inc
+CLASSPATH = $(top_builddir)/src/lib/classes/:$(CLASSPATH_GLIBJ_ZIP)
 
-if USE_GTK_PEER
-AWT_HEADERS_TOUCH_FILE = $(srcdir)/include/awtheaders-generated
+$(srcdir)/native.c: nativetable.inc
+
+nativetable.inc: $(CACAO_VM_ZIP) $(CLASSPATH_GLIBJ_ZIP) $(top_builddir)/src/native/tools/gennativetable
+       echo    $(GENNATIVETABLE) -bootclasspath $(CLASSPATH) > $(top_builddir)/src/native/nativetable.inc
+       if `$(GENNATIVETABLE) -bootclasspath $(CLASSPATH) > $(top_builddir)/src/native/nativetable.inc` ; then true; else rm -f $(top_builddir)/src/native/nativetable.inc; exit 1; fi
+endif
+
+noinst_LTLIBRARIES = libnative.la
+
+if ENABLE_JNI
+JNI_SOURCES = \
+       jni.c \
+       jni.h
 endif
 
-nativetable.inc: $(top_srcdir)/src/classpath/lib/bootstrap.zip $(srcdir)/tools/gennativetable $(top_srcdir)/config.h $(srcdir)/include/headers-generated $(AWT_HEADERS_TOUCH_FILE) $(srcdir)/classes.am
-       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) \
+       native.c \
+       native.h
+
+libnative_la_LIBADD = \
+       vm/libnativevm.la \
+       $(JVMTI_LIB)
 
 
 ## Local variables: