* Updated header: Added 2006. Changed address of FSF. Changed email
[cacao.git] / src / native / tools / Makefile.am
index 1985a3a80154d089fc172669e409625e9ca7582e..f72aec2aacbc28f3eb1dbbf6630ba7767aa4adeb 100644 (file)
@@ -1,9 +1,9 @@
 ## src/native/tools/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 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
+## Contact: cacao@cacaojvm.org
 ##
 ## Authors: Christian Thalinger
 ##
 ## Changes:
 ##
-## $Id: Makefile.am 2460 2005-05-12 23:38:46Z twisti $
+## $Id: Makefile.am 4357 2006-01-22 23:33:38Z twisti $
 
 ## Process this file with automake to produce Makefile.in
 
 
-INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/@ARCH_DIR@ -I$(top_builddir)/src
+INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR) -I$(top_builddir)/src
+
+if DISABLE_GC
+if NATIVE_THREADS
+GC_LIB = $(top_builddir)/src/boehm-gc/libgc.la
+else
+GC_LIB =
+endif
+else
+GC_LIB = $(top_builddir)/src/boehm-gc/libgc.la
+endif
 
 noinst_PROGRAMS = gennativetable
 
@@ -41,7 +51,8 @@ gennativetable_SOURCES = gennativetable.c
 
 gennativetable_LDADD = \
        $(top_builddir)/src/cacaoh/libcacaoh.la \
-       $(top_builddir)/src/boehm-gc/libgc.la
+       $(top_builddir)/src/fdlibm/libfdlibm.la \
+       $(GC_LIB)
 
 gennativetable_DEPENDENCIES = $(gennativetable_LDADD)