* src/native/Makefile.am (CLEANFILES): Always clean nativetable.inc.
authortwisti <none@none>
Sat, 4 Feb 2006 00:43:15 +0000 (00:43 +0000)
committertwisti <none@none>
Sat, 4 Feb 2006 00:43:15 +0000 (00:43 +0000)
($(srcdir)/native.c): Moved inside if ENABLE_STATICVM where it
belongs! Dammit!

src/native/Makefile.am

index 3c28a99ab004da5be8345b465c700120403756a5..f54f627f84f636c134e7f05da2204eb48e1deed7 100644 (file)
@@ -28,7 +28,7 @@
 ##
 ## Changes:
 ##
-## $Id: Makefile.am 4424 2006-02-04 00:33:39Z twisti $
+## $Id: Makefile.am 4425 2006-02-04 00:43:15Z twisti $
 
 ## Process this file with automake to produce Makefile.in
 
@@ -38,7 +38,8 @@ SUBDIRS = \
        include \
        vm
 
-CLEANFILES =
+CLEANFILES = \
+       nativetable.inc
 
 if ENABLE_JVMTI
 SUBDIRS += jvmti
@@ -47,19 +48,18 @@ endif
 
 if ENABLE_STATICVM
 SUBDIRS += tools
-CLEANFILES += nativetable.inc
 
 VM_ZIP = $(top_builddir)/src/lib/$(VM_ZIP_STRING)
 GLIBJ_ZIP = $(CLASSPATH_PREFIX)/share/classpath/$(GLIBJ_ZIP_STRING)
 
 CLASSPATH = $(VM_ZIP):$(GLIBJ_ZIP)
 
+$(srcdir)/native.c: nativetable.inc
+
 nativetable.inc: $(VM_ZIP) $(GLIBJ_ZIP) $(top_builddir)/src/native/tools/gennativetable
        $(top_builddir)/src/native/tools/gennativetable -bootclasspath $(CLASSPATH) > $(top_builddir)/src/native/nativetable.inc
 endif
 
-$(srcdir)/native.c: nativetable.inc
-
 noinst_LTLIBRARIES = libnative.la
 
 libnative_la_SOURCES = \