jaxws/makefiles/BuildJaxws.gmk
author ohair
Fri, 26 Oct 2012 14:25:29 -0700
changeset 14254 dff4399a453f
child 15160 ee1119ea8b2b
permissions -rw-r--r--
8000992: Update new build-infra makefiles Summary: Build-infra project integration. Multiple authors on this work: erikj and ihse primarily, also changes from ohair, tbell, and dholmes. Special credit to ohstrom for his smartjavac work. Reviewed-by: erikj, ihse, dholmes, tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14254
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     1
#
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     2
# Copyright (c) 2007, 2012, Oracle and/or its affiliates. All rights reserved.
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     4
#
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    10
#
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    15
# accompanied this code).
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    16
#
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    20
#
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    23
# questions.
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    24
#
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    25
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    26
# This must be the first rule
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    27
default: all
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    28
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    29
include $(SPEC)
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    30
include MakeBase.gmk
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    31
include JavaCompilation.gmk
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    32
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    33
JAVAC_JARS ?= -Xbootclasspath/p:$(LANGTOOLS_OUTPUTDIR)/dist/bootstrap/lib/javac.jar \
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    34
		-jar $(LANGTOOLS_OUTPUTDIR)/dist/bootstrap/lib/javac.jar
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    35
DISABLE_JAXWS_WARNINGS:=-Xlint:all,-varargs,-rawtypes,-deprecation,-unchecked,-serial,-dep-ann,-cast,-fallthrough,-static
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    36
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    37
# The generate new bytecode uses the new compiler for to generate bytecode
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    38
# for the new jdk that is being built. The code compiled by this setup
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    39
# cannot necessarily be run with the boot jdk.
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    40
$(eval $(call SetupJavaCompiler,GENERATE_NEWBYTECODE_DEBUG,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    41
     JVM:=$(JAVA),\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    42
     JAVAC:=$(JAVAC_JARS),\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    43
     FLAGS:=-XDignore.symbol.file=true $(DISABLE_JAXWS_WARNINGS) -g,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    44
     SERVER_DIR:=$(SJAVAC_SERVER_DIR),\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    45
     SERVER_JVM:=$(SJAVAC_SERVER_JAVA)))
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    46
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    47
# Dummy here is needed to trigger copying of META-INF
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    48
$(eval $(call SetupJavaCompilation,BUILD_JAF,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    49
		SETUP:=GENERATE_NEWBYTECODE_DEBUG,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    50
		SRC:=$(JAXWS_TOPDIR)/src/share/jaf_classes,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    51
		CLEAN:=.properties,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    52
		COPY:="dummy",\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    53
		BIN:=$(JAXWS_OUTPUTDIR)/jaf_classes))
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    54
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    55
$(eval $(call SetupJavaCompilation,BUILD_JAXWS,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    56
		SETUP:=GENERATE_NEWBYTECODE_DEBUG,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    57
		SRC:=$(JAXWS_TOPDIR)/src/share/jaxws_classes,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    58
		CLEAN:=.properties,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    59
		BIN:=$(JAXWS_OUTPUTDIR)/jaxws_classes,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    60
		COPY:=.xsd,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    61
		COPY_FILES:=$(JAXWS_TOPDIR)/src/share/jaxws_classes/com/sun/tools/internal/xjc/runtime/JAXBContextFactory.java \
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    62
			    $(JAXWS_TOPDIR)/src/share/jaxws_classes/com/sun/tools/internal/xjc/runtime/ZeroOneBooleanAdapter.java,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    63
		ADD_JAVAC_FLAGS=-cp $(OUTPUT_ROOT)/jaxp/dist/lib/classes.jar))
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    64
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    65
$(JAXWS_OUTPUTDIR)/jaxws_classes/META-INF/services/com.sun.tools.internal.ws.wscompile.Plugin: \
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    66
		         $(JAXWS_TOPDIR)/src/share/jaxws_classes/com/sun/tools/etc/META-INF/services/com.sun.tools.internal.ws.wscompile.Plugin
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    67
	mkdir -p $(@D)
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    68
	cp $< $@
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    69
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    70
$(JAXWS_OUTPUTDIR)/jaxws_classes/META-INF/services/com.sun.tools.internal.xjc.Plugin: \
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    71
		         $(JAXWS_TOPDIR)/src/share/jaxws_classes/com/sun/tools/etc/META-INF/services/com.sun.tools.internal.xjc.Plugin
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    72
	mkdir -p $(@D)
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    73
	cp $< $@
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    74
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    75
# There are two META-INF services files that are needed, add these to the list of goals
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    76
BUILD_JAXWS += $(JAXWS_OUTPUTDIR)/jaxws_classes/META-INF/services/com.sun.tools.internal.ws.wscompile.Plugin \
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    77
               $(JAXWS_OUTPUTDIR)/jaxws_classes/META-INF/services/com.sun.tools.internal.xjc.Plugin
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    78
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    79
$(eval $(call SetupArchive,ARCHIVE_JAXWS,$(BUILD_JAXWS) $(BUILD_JAF),\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    80
		SRCS:=$(JAXWS_OUTPUTDIR)/jaxws_classes $(JAXWS_OUTPUTDIR)/jaf_classes,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    81
		SUFFIXES:=.class .properties .xsd .java \
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    82
			  com.sun.mirror.apt.AnnotationProcessorFactory \
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    83
                          com.sun.tools.internal.xjc.Plugin,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    84
		JAR:=$(JAXWS_OUTPUTDIR)/dist/lib/classes.jar))
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    85
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    86
$(eval $(call SetupZipArchive,ZIP_JAXWS_SOURCES,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    87
		SRC:=$(JAXWS_TOPDIR)/src/share/jaf_classes $(JAXWS_TOPDIR)/src/share/jaxws_classes,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    88
		ZIP:=$(JAXWS_OUTPUTDIR)/dist/lib/src.zip))
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    89
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    90
all: $(JAXWS_OUTPUTDIR)/dist/lib/classes.jar $(JAXWS_OUTPUTDIR)/dist/lib/src.zip
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    91
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    92
.PHONY: default all