* Removed all Id tags.
[cacao.git] / src / native / tools / Makefile.am
index 8478c819c1e15cbb1a0c9a77ab455e1c15446f86..c789dbc77f14891e0bf4e443c2b18e74bd144c20 100644 (file)
@@ -1,40 +1,46 @@
-## Process this file with automake to produce Makefile.in
-
-# $Id: Makefile.am 1649 2004-12-02 09:33:38Z twisti $
-
-INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/@ARCH_DIR@
-
-if USE_THREADS
-if NATIVE_THREADS
-THREAD_LIBRARY = $(top_srcdir)/src/threads/native/libthreads.a
-else
-THREAD_LIBRARY = $(top_srcdir)/src/threads/green/libthreads.a
-endif
-else
-THREAD_LIBRARY =
-endif
+## src/native/tools/Makefile.am
+##
+## Copyright (C) 1996-2005, 2006 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.
+##
+## Contact: cacao@cacaojvm.org
+##
+## Authors: Christian Thalinger
+
+
+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
+
+LIBS =
 
 noinst_PROGRAMS = gennativetable
 
 gennativetable_SOURCES = gennativetable.c
 
 gennativetable_LDADD = \
-       $(top_srcdir)/src/cacaoh/headers.o \
-       $(THREAD_LIBRARY) \
-       $(top_srcdir)/src/vm/libvm.a \
-       $(top_srcdir)/src/mm/libmm.a \
-       $(top_srcdir)/src/toolbox/libtoolbox.a \
-       $(top_srcdir)/src/boehm-gc/.libs/libgc.a \
-       $(top_srcdir)/src/classpath/native/jni/java-lang/.libs/libjavalang.a
+       $(top_builddir)/src/cacaoh/libcacaoh.la \
+       $(top_builddir)/src/fdlibm/libfdlibm.la
 
 gennativetable_DEPENDENCIES = \
-       $(top_srcdir)/src/cacaoh/headers.o \
-       $(THREAD_LIBRARY) \
-       $(top_srcdir)/src/vm/libvm.a \
-       $(top_srcdir)/src/mm/libmm.a \
-       $(top_srcdir)/src/toolbox/libtoolbox.a \
-       $(top_srcdir)/src/boehm-gc/.libs/libgc.a \
-       $(top_srcdir)/src/classpath/native/jni/java-lang/.libs/libjavalang.a
+       $(gennativetable_LDADD)
 
 
 ## Local variables: