aboutsummaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
Diffstat (limited to 'make')
-rw-r--r--make/Makefile4
-rw-r--r--make/README14
-rw-r--r--make/build.properties1
-rw-r--r--make/build.xml1
4 files changed, 5 insertions, 15 deletions
diff --git a/make/Makefile b/make/Makefile
index 6ceef886..c366258d 100644
--- a/make/Makefile
+++ b/make/Makefile
@@ -69,6 +69,10 @@ else
endif
endif
+ifeq ($(DEBUG_CLASSFILES), true)
+ ANT_OPTIONS += -Djavac.debug=true
+endif
+
# Note: jdk/make/common/Defs.gmk uses LANGUAGE_VERSION (-source NN)
# and the somewhat misnamed CLASS_VERSION (-target NN)
ifdef TARGET_CLASS_VERSION
diff --git a/make/README b/make/README
deleted file mode 100644
index 3a06b291..00000000
--- a/make/README
+++ /dev/null
@@ -1,14 +0,0 @@
-README:
- This file should be located at the top of the jaxws Mercurial repository.
-
- See http://openjdk.java.net/ for more information about the OpenJDK.
-
- See ../README-builds.html for complete details on build machine requirements.
-
-Simple Build Instructions:
-
- cd make && gnumake
-
- The files that will be imported into the jdk build will be in the "dist"
- directory.
-
diff --git a/make/build.properties b/make/build.properties
index 2cfd6b57..ed598102 100644
--- a/make/build.properties
+++ b/make/build.properties
@@ -33,7 +33,6 @@
javac.source = 5
javac.target = 5
javac.debug = true
-javac.debuglevel = source,lines
javac.no.jdk.warnings = -XDignore.symbol.file=true
# set the following to -version to verify the versions of javac being used
javac.version.opt =
diff --git a/make/build.xml b/make/build.xml
index 78e1be92..24b467a6 100644
--- a/make/build.xml
+++ b/make/build.xml
@@ -108,6 +108,7 @@
memoryInitialSize="${javac.memoryInitialSize}"
memoryMaximumSize="${javac.memoryMaximumSize}"
source="${javac.source}"
+ debug="${javac.debug}"
target="${javac.target}"
excludes="com/sun/tools/internal/txw2/**">
<compilerarg value="-J-Xbootclasspath/p:${bootstrap.dir}/lib/javac.jar"/>