- support external classpath
authortwisti <none@none>
Wed, 23 Mar 2005 11:08:43 +0000 (11:08 +0000)
committertwisti <none@none>
Wed, 23 Mar 2005 11:08:43 +0000 (11:08 +0000)
- added: java_util_Vector.h

src/native/include/Makefile.am

index a46773f1078bef96dbb3c3deb10050030de4407e..1652db1888f8c861588bed07a95cf2a3a06aa24c 100644 (file)
@@ -28,7 +28,7 @@
 ##
 ## Changes:
 ##
-## $Id: Makefile.am 2011 2005-03-07 10:15:44Z twisti $
+## $Id: Makefile.am 2059 2005-03-23 11:08:43Z twisti $
 
 ## Process this file with automake to produce Makefile.in
 
@@ -64,7 +64,8 @@ GEN_HEADER_FILES = \
        java_lang_reflect_Constructor.h \
        java_lang_reflect_Field.h \
        java_lang_reflect_Method.h \
-       java_security_ProtectionDomain.h
+       java_security_ProtectionDomain.h \
+       java_util_Vector.h
 
 ADDITIONAL_IMPLEMENTED_VM_CLASSES_HEADER_FILES = \
        gnu_classpath_VMStackWalker.h \
@@ -110,9 +111,14 @@ noinst_HEADERS = \
 noinst_DATA =
 
 CACAOH = $(top_builddir)/src/cacaoh/cacaoh
+
+if WITH_EXTERNAL_CLASSPATH
+CLASSPATH = $(top_builddir)/src/lib/vm.zip:$(EXTERNAL_CLASSPATH_PREFIX)/share/classpath/glibj.zip
+else
 CLASSPATH = $(top_builddir)/src/classpath/lib/
+endif
 
-$(CLEANFILES): $(top_srcdir)/src/classpath/lib/bootstrap.zip
+$(CLEANFILES):
        @class=`echo $@ | sed -e 's/\.h$$//' -e 's/_/\./g'`; \
        echo "$(CACAOH) -bootclasspath $(CLASSPATH) -d . $$class"; \
        $(CACAOH) -bootclasspath $(CLASSPATH) -d . $$class