Added: DISABLE_GC
authortwisti <none@none>
Wed, 8 Jun 2005 11:05:10 +0000 (11:05 +0000)
committertwisti <none@none>
Wed, 8 Jun 2005 11:05:10 +0000 (11:05 +0000)
src/native/tools/Makefile.am

index 1985a3a80154d089fc172669e409625e9ca7582e..d43b7ad8d55e5a4bfd821f4d67a86d2059bbcf83 100644 (file)
 ##
 ## Changes:
 ##
-## $Id: Makefile.am 2460 2005-05-12 23:38:46Z twisti $
+## $Id: Makefile.am 2594 2005-06-08 11:05:10Z 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
 
+#if DISABLE_GC
+#GC_LIB =
+#else
+GC_LIB = $(top_builddir)/src/boehm-gc/libgc.la
+#endif
+
 noinst_PROGRAMS = gennativetable
 
 gennativetable_SOURCES = gennativetable.c
 
 gennativetable_LDADD = \
        $(top_builddir)/src/cacaoh/libcacaoh.la \
-       $(top_builddir)/src/boehm-gc/libgc.la
+       $(GC_LIB)
 
 gennativetable_DEPENDENCIES = $(gennativetable_LDADD)