e1bea0c068
2007-05-31 Matthias Klose <doko@ubuntu.com> * javax/management/NotificationBroadcasterSupport.java (getNotificationInfo): Add cast. * native/jni/qt-peer/Makefile.am (AM_CXXFLAGS): Add libstdc++ include directories. * native/jni/qt-peer/Makefile.in: Regenerate. libjava/ChangeLog: 2007-06-03 Matthias Klose <doko@ubuntu.com> * java/io/natFileWin32.cc (setFilePermissions): New (stub only). _access: Handle EXEC query, stub only. 2007-06-03 Matthias Klose <doko@ubuntu.com> Merged from classpath: * gnu/java/nio/SelectorProviderImpl.java: Whitespace merge. * java/lang/System.java(inheritedChannel): New. * java/lang/Character.java: Remove stray`;'. * java/net/MulticastSocket.java: Merged. * java/text/DateFormatSymbols.java(getInstance): New, comment updates. * java/text/Collator.java(getInstance): Merged. * java/util/Calendar.java: New attributes ALL_STYLES, SHORT, LONG. getDisplayName, getDisplayNames: New. * java/util/logging/Logger.java: Merged. * Regenerate .class and .h files. 2007-06-03 Matthias Klose <doko@ubuntu.com> * java/io/File.java: Merge with classpath-0.95, new method setFilePermissions, new attribute EXEC. * java/io/natFilePosix.cc (setFilePermissions): New. _access: Handle EXEC query. * classpath/lib/java/io/File.class, java/io/File.h: Regenerate. 2007-06-03 Matthias Klose <doko@ubuntu.com> Imported GNU Classpath 0.95. * classpath/Makefile.in, classpath/native/jni/midi-dssi/Makefile.in, classpath/native/jni/classpath/Makefile.in, classpath/native/jni/Makefile.in, classpath/native/jni/gconf-peer/Makefile.in, classpath/native/jni/java-io/Makefile.in, classpath/native/jni/native-lib/Makefile.in, classpath/native/jni/java-util/Makefile.in, classpath/native/jni/midi-alsa/Makefile.in, classpath/native/jni/java-lang/Makefile.in, classpath/native/jni/java-nio/Makefile.in, classpath/native/jni/java-net/Makefile.in, classpath/native/jni/xmlj/Makefile.in, classpath/native/jni/qt-peer/Makefile.in, classpath/native/jni/gtk-peer/Makefile.in, classpath/native/Makefile.in, classpath/native/jawt/Makefile.in, classpath/native/fdlibm/Makefile.in, classpath/native/plugin/Makefile.in, classpath/resource/Makefile.in, classpath/scripts/Makefile.in, classpath/tools/Makefile.in, classpath/doc/Makefile.in, classpath/doc/api/Makefile.in, classpath/lib/Makefile.in, classpath/external/Makefile.in, classpath/external/jsr166/Makefile.in, classpath/external/sax/Makefile.in, classpath/external/w3c_dom/Makefile.in, classpath/external/relaxngDatatype/Makefile.in, classpath/include/Makefile.in, classpath/examples/Makefile.in: Regenerate. * classpath/config.guess, classpath/config.sub, classpath/ltmain.sh : Update. * classpath/configure, classpath/depcomp, classpath/missing, classpath/aclocal.m4, classpath/install-sh: Regenerate. * gnu/classpath/Configuration.java (CLASSPATH_VERSION): Now 0.95. * sources.am: Regenerate. * Makefile.in: Regenerate. * Update the .class files and generated CNI header files, add new .class and generated CNI header files. * Remove generated files for removed java source files: classpath/gnu/java/net/BASE64.java, classpath/gnu/java/security/util/Base64.java, classpath/gnu/java/awt/peer/gtk/GThreadMutex.java, classpath/gnu/java/awt/peer/gtk/GThreadNativeMethodRunner.java, classpath/gnu/java/awt/font/autofit/Scaler.java, classpath/gnu/classpath/jdwp/util/Value.java, classpath/gnu/javax/net/ssl/Base64.java. * Remove empty directories. * Makefile.am(nat_source_files): Add natVMOperatingSystemMXBeanImpl.cc. * java/lang/Class.java(setAccessible): Merge from classpath. * java/util/Locale.java: Remove. * gnu/java/lang/management/VMOperatingSystemMXBeanImpl.java, gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.cc: New. * gcj/javaprims.h: Update class declarations. * scripts/classes.pl: Update usage. * HACKING: Mention to build all peers. From-SVN: r125302
198 lines
7.0 KiB
Makefile
198 lines
7.0 KiB
Makefile
JAVA_DEPEND = java.dep
|
|
|
|
## silently try to include these, if it fails gnu make
|
|
## will remake these 'makefiles' with the rules given in
|
|
## this file and restart the make process again
|
|
sinclude $(JAVA_DEPEND)
|
|
|
|
propertyfiles := $(shell cd $(top_srcdir)/resource && $(FIND) gnu java javax org -name \*\.properties -print)
|
|
cssfiles := $(shell cd $(top_srcdir) && $(FIND) gnu java javax org -name \*\.css -print)
|
|
## GCJ LOCAL: prune .svn directories
|
|
metafiles := $(shell cd $(top_srcdir)/resource && $(FIND) META-INF -name CVS -prune -o -name \*\.in -prune -o -type f -print | fgrep -v .svn)
|
|
## END GCJ LOCAL
|
|
iconfiles := $(shell cd $(top_srcdir) && $(FIND) gnu/javax/swing/plaf/gtk/icons -name *.png -type f -print)
|
|
|
|
compile_classpath = $(vm_classes):$(top_srcdir):$(top_srcdir)/external/w3c_dom:$(top_srcdir)/external/sax:$(top_srcdir)/external/relaxngDatatype:$(top_srcdir)/external/jsr166:.:$(USER_CLASSLIB):$(PATH_TO_ESCHER)
|
|
|
|
# handling source to bytecode compiler programs like gcj, jikes and kjc
|
|
if FOUND_GCJ
|
|
## See the compile-classes target.
|
|
## There's no point in warning, and we always want debug info.
|
|
## GCJ LOCAL: use srcdir
|
|
JCOMPILER = $(GCJ) -C -g -w --encoding=UTF-8 -bootclasspath '' --classpath $(compile_classpath) -d $(srcdir) @classes
|
|
else
|
|
if FOUND_JIKES
|
|
JCOMPILER = $(JIKES) $(JIKESWARNINGS) +F $(JIKESENCODING) -bootclasspath '' -extdirs '' -sourcepath '' --classpath $(compile_classpath) -d . @classes
|
|
else
|
|
if FOUND_KJC
|
|
## FIXME: from what I can tell, kjc does not support a -encoding option.
|
|
JCOMPILER = $(KJC) -classpath .:$(USER_CLASSLIB) -d . @classes
|
|
else
|
|
if FOUND_ECJ
|
|
JCOMPILER = $(ECJ) -source 1.4 -encoding UTF-8 -warn:-deprecation,serial,unused -proceedOnError -bootclasspath '' -classpath $(compile_classpath) -d . @classes
|
|
endif # FOUND_ECJ
|
|
endif # FOUND_KJC
|
|
endif # FOUND_GCJ
|
|
endif # FOUND_JIKES
|
|
|
|
JAVAH = $(USER_JAVAH) -jni -classpath .:$(USER_CLASSLIB)
|
|
|
|
if CREATE_COLLECTIONS
|
|
COLLECTIONS = collections.jar
|
|
|
|
collections.jar: mkcollections.pl
|
|
./mkcollections.pl $(top_srcdir)
|
|
$(JCOMPILER) `$(FIND) $(COLLECTIONS_PREFIX) -name '*.java' -type f -print`
|
|
if test "$(FASTJAR)" != ""; then \
|
|
$(FASTJAR) cf $@ $(COLLECTIONS_PREFIX); \
|
|
else \
|
|
echo "fastjar not found" > collections.jar; \
|
|
fi
|
|
endif # CREATE_COLLECTIONS
|
|
|
|
if INSTALL_GLIBJ_ZIP
|
|
|
|
## GCJ LOCAL: Comment this out so we don't make an empty
|
|
## '$(glibjdir)' in the install tree.
|
|
## glibj_DATA = glibj.zip
|
|
|
|
endif # INSTALL_GLIBJ_ZIP
|
|
|
|
if BUILD_CLASS_FILES
|
|
noinst_DATA = genclasses compile-classes resources
|
|
endif # BUILD_CLASS_FILES
|
|
|
|
if INSTALL_CLASS_FILES
|
|
|
|
install-data-local: genclasses compile-classes
|
|
-$(top_srcdir)/mkinstalldirs $(DESTDIR)$(pkgdatadir)
|
|
cp -R gnu $(DESTDIR)$(pkgdatadir)
|
|
cp -R java $(DESTDIR)$(pkgdatadir)
|
|
cp -R javax $(DESTDIR)$(pkgdatadir)
|
|
cp -R org $(DESTDIR)$(pkgdatadir)
|
|
cp -R sun $(DESTDIR)$(pkgdatadir)
|
|
cp -R META-INF $(DESTDIR)$(pkgdatadir)
|
|
|
|
# FIXME - should mimic doc/api/Makefile.am instead...
|
|
uninstall-local:
|
|
rm -rf $(DESTDIR)$(pkgdatadir)/gnu
|
|
rm -rf $(DESTDIR)$(pkgdatadir)/java
|
|
rm -rf $(DESTDIR)$(pkgdatadir)/javax
|
|
rm -rf $(DESTDIR)$(pkgdatadir)/org
|
|
rm -rf $(DESTDIR)$(pkgdatadir)/sun
|
|
rm -rf $(DESTDIR)$(pkgdatadir)/META-INF
|
|
|
|
endif # INSTALL_CLASS_FILES
|
|
|
|
.PHONY: genclasses
|
|
|
|
if USE_PREBUILT_GLIBJ_ZIP
|
|
|
|
glibj.zip:
|
|
cp $(PATH_TO_GLIBJ_ZIP) .
|
|
|
|
else
|
|
|
|
glibj.zip: classes compile-classes resources
|
|
if test "$(ZIP)" != ""; then $(ZIP) -r -D glibj.zip gnu java javax org sun META-INF > /dev/null; fi
|
|
if test "$(FASTJAR)" != ""; then $(FASTJAR) cf glibj.zip gnu java javax org sun META-INF; fi
|
|
|
|
endif # USE_PREBUILT_GLIBJ_ZIP
|
|
|
|
resources: copy-vmresources.sh
|
|
@list='$(propertyfiles)'; for p in $$list; do \
|
|
dirname=`dirname $$p`; \
|
|
if ! test -d "$$dirname"; then mkdir -p "$$dirname"; fi; \
|
|
cp $(top_srcdir)/resource/$$p $$p; \
|
|
done
|
|
@list='$(cssfiles)'; for p in $$list; do \
|
|
dirname=`dirname $$p`; \
|
|
if ! test -d "$$dirname"; then mkdir -p "$$dirname"; fi; \
|
|
cp $(top_srcdir)/$$p $$p; \
|
|
done
|
|
@list='$(metafiles)'; for p in $$list; do \
|
|
dirname=`dirname $$p`; \
|
|
if ! test -d "$$dirname"; then mkdir -p "$$dirname"; fi; \
|
|
cp $(top_srcdir)/resource/$$p $$p; \
|
|
done
|
|
@$(SHELL) ./copy-vmresources.sh
|
|
@list='$(iconfiles)'; for p in $$list; do \
|
|
dirname=`dirname $$p`; \
|
|
if ! test -d "$$dirname"; then mkdir -p "$$dirname"; fi; \
|
|
cp $(top_srcdir)/$$p $$p; \
|
|
done
|
|
touch resources
|
|
|
|
classes: genclasses
|
|
|
|
$(top_builddir)/gnu/java/locale/LocaleData.java: $(top_srcdir)/scripts/generate-locale-list.sh
|
|
mkdir -p $(top_builddir)/gnu/java/locale
|
|
$(top_srcdir)/scripts/generate-locale-list.sh > $(top_builddir)/gnu/java/locale/LocaleData.java
|
|
|
|
genclasses: gen-classlist.sh standard.omit $(top_builddir)/gnu/java/locale/LocaleData.java gen-xpath-parser
|
|
top_builddir=$(top_builddir) top_srcdir=$(top_srcdir) $(SHELL) ./gen-classlist.sh standard
|
|
|
|
# Only rebuild parsers when explicitly asked to.
|
|
if REGEN_PARSERS
|
|
|
|
gen-xpath-parser: $(top_srcdir)/gnu/xml/xpath/XPathParser.java
|
|
|
|
$(top_srcdir)/gnu/xml/xpath/XPathParser.java: $(top_srcdir)/gnu/xml/xpath/XPathParser.y
|
|
( cd $(top_srcdir)/gnu/xml/xpath; \
|
|
$(JAY) XPathParser.y < $(JAY_SKELETON) > XPathParser.java )
|
|
else
|
|
|
|
gen-xpath-parser:
|
|
true
|
|
|
|
endif # REGEN_PARSER
|
|
|
|
$(JAVA_DEPEND): genclasses
|
|
|
|
# if FOUND_GCJ
|
|
# ## When building with gcj, we do a recursive make. We split this rule
|
|
# ## out specially, rather than simply defining JCOMPILER, so that GNU make
|
|
# ## will see the recursive make invocation and still allow parallel
|
|
# ## builds.
|
|
# compile-classes: classes $(JAVA_SRCS) Makefile
|
|
# $(MAKE) -f $(srcdir)/Makefile.gcj \
|
|
# GCJ='$(GCJ)' \
|
|
# compile_classpath='$(top_builddir):$(compile_classpath)' \
|
|
# top_srcdir=$(top_srcdir)
|
|
# touch compile-classes
|
|
# else
|
|
compile-classes: classes $(JAVA_SRCS) Makefile
|
|
if JAVA_MAINTAINER_MODE
|
|
$(JCOMPILER)
|
|
endif
|
|
touch compile-classes
|
|
# endif
|
|
|
|
EXTRA_DIST = standard.omit.in mkcollections.pl.in Makefile.gcj split-for-gcj.sh
|
|
CLEANFILES = compile-classes resources classes \
|
|
glibj.zip classes.1 classes.2 Makefile.deps \
|
|
$(top_builddir)/gnu/java/locale/LocaleData.java \
|
|
$(JAVA_DEPEND)
|
|
DISTCLEANFILES = standard.omit
|
|
|
|
clean-local:
|
|
-rm -rf gnu
|
|
-rm -rf java
|
|
-rm -rf javax
|
|
-rm -rf org
|
|
-rm -rf com
|
|
-rm -rf sun
|
|
-rm -rf META-INF
|
|
-rm -rf lists
|
|
|
|
dist-hook:
|
|
mkdir -p $(distdir)
|
|
cp -pdfR $(top_srcdir)/gnu $(top_srcdir)/java $(top_srcdir)/javax $(top_srcdir)/org $(top_srcdir)/sun $(top_srcdir)/vm $(top_srcdir)/resource $(distdir)/..
|
|
# Delete not wanted files.
|
|
$(FIND) $(distdir)/../gnu $(distdir)/../java $(distdir)/../javax $(distdir)/../org $(distdir)/../sun $(distdir)/../vm $(distdir)/../resource -name CVS -print | xargs rm -fr
|
|
$(FIND) $(distdir)/../gnu $(distdir)/../java $(distdir)/../javax $(distdir)/../org $(distdir)/../sun $(distdir)/../vm $(distdir)/../resource -name .cvsignore -print | xargs rm -f
|
|
$(FIND) $(distdir)/../gnu $(distdir)/../java $(distdir)/../javax $(distdir)/../org $(distdir)/../sun $(distdir)/../vm -name class-dependencies.conf -print | xargs rm -f
|
|
rm -f $(distdir)/../gnu/classpath/Configuration.java
|
|
rm -f $(distdir)/../gnu/java/security/Configuration.java
|
|
rm -f $(distdir)/../gnu/java/locale/LocaleData.java
|