jaxws/makefiles/BuildJaxws.gmk
author rbackman
Tue, 26 Feb 2013 14:09:52 +0100
changeset 15801 fefae82e1067
parent 15416 cd3c30599281
child 16791 fe5141eabb0e
permissions -rw-r--r--
8008340: [sampling] assert(upper->pc_offset() >= pc_offset) failed: sanity Reviewed-by: kvn, sla
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14254
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
     1
#
15160
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
     2
# Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
14254
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
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
    34
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    35
# The generate new bytecode uses the new compiler for to generate bytecode
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    36
# 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
    37
# cannot necessarily be run with the boot jdk.
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    38
$(eval $(call SetupJavaCompiler,GENERATE_NEWBYTECODE_DEBUG,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    39
     JVM:=$(JAVA),\
15416
cd3c30599281 8006872: Stop creating four jars with identical content in the new build system.
ohrstrom
parents: 15160
diff changeset
    40
     JAVAC:=$(NEW_JAVAC),\
14254
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    41
     FLAGS:=-XDignore.symbol.file=true $(DISABLE_JAXWS_WARNINGS) -g,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    42
     SERVER_DIR:=$(SJAVAC_SERVER_DIR),\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    43
     SERVER_JVM:=$(SJAVAC_SERVER_JAVA)))
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    44
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    45
# Dummy here is needed to trigger copying of META-INF
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    46
$(eval $(call SetupJavaCompilation,BUILD_JAF,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    47
		SETUP:=GENERATE_NEWBYTECODE_DEBUG,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    48
		SRC:=$(JAXWS_TOPDIR)/src/share/jaf_classes,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    49
		COPY:="dummy",\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    50
		BIN:=$(JAXWS_OUTPUTDIR)/jaf_classes))
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    51
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    52
$(eval $(call SetupJavaCompilation,BUILD_JAXWS,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    53
		SETUP:=GENERATE_NEWBYTECODE_DEBUG,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    54
		SRC:=$(JAXWS_TOPDIR)/src/share/jaxws_classes,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    55
		BIN:=$(JAXWS_OUTPUTDIR)/jaxws_classes,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    56
		COPY:=.xsd,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    57
		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
    58
			    $(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
    59
		ADD_JAVAC_FLAGS=-cp $(OUTPUT_ROOT)/jaxp/dist/lib/classes.jar))
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    60
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    61
$(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
    62
		         $(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
    63
	mkdir -p $(@D)
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    64
	cp $< $@
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    65
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    66
$(JAXWS_OUTPUTDIR)/jaxws_classes/META-INF/services/com.sun.tools.internal.xjc.Plugin: \
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    67
		         $(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
    68
	mkdir -p $(@D)
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    69
	cp $< $@
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    70
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    71
# 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
    72
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
    73
               $(JAXWS_OUTPUTDIR)/jaxws_classes/META-INF/services/com.sun.tools.internal.xjc.Plugin
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
    74
15160
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    75
# Imitate the property cleaning mechanism in the old build. This will likely be replaced 
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    76
# by the unified functionality in JavaCompilation.gmk, but keep it the same as old build
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    77
# for now, even though it actually breaks properties containing # in the value.
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    78
# Using nawk to avoid solaris sed.
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    79
$(JAXWS_OUTPUTDIR)/jaxws_classes/%.properties: $(JAXWS_TOPDIR)/src/share/jaxws_classes/%.properties
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    80
	$(MKDIR) -p $(@D)
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    81
	$(RM) $@ $@.tmp
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    82
	$(CAT) $< | LANG=C $(NAWK) '{ sub(/#.*$$/,"#"); print }' > $@.tmp
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    83
	$(MV) $@.tmp $@
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    84
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    85
JAXWS_SRC_PROP_FILES := $(shell $(FIND) $(JAXWS_TOPDIR)/src/share/jaxws_classes -name "*.properties")
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    86
TARGET_PROP_FILES := $(patsubst $(JAXWS_TOPDIR)/src/share/jaxws_classes/%,\
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    87
                       $(JAXWS_OUTPUTDIR)/jaxws_classes/%,$(JAXWS_SRC_PROP_FILES))
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    88
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    89
$(JAXWS_OUTPUTDIR)/jaf_classes/%.properties: $(JAXWS_TOPDIR)/src/share/jaf_classes/%.properties
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    90
	$(MKDIR) -p $(@D)
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    91
	$(RM) $@ $@.tmp
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    92
	$(CAT) $< | LANG=C $(NAWK) '{ sub(/#.*$$/,"#"); print }' > $@.tmp
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    93
	$(MV) $@.tmp $@
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    94
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    95
JAF_SRC_PROP_FILES := $(shell $(FIND) $(JAXWS_TOPDIR)/src/share/jaf_classes -name "*.properties")
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    96
TARGET_PROP_FILES += $(patsubst $(JAXWS_TOPDIR)/src/share/jaf_classes/%,\
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    97
                       $(JAXWS_OUTPUTDIR)/jaf_classes/%,$(JAF_SRC_PROP_FILES))
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    98
ee1119ea8b2b 8005575: build-infra: Three JCK tests fails on Solaris with new RE Autoconf-Based build
erikj
parents: 14254
diff changeset
    99
$(eval $(call SetupArchive,ARCHIVE_JAXWS,$(BUILD_JAXWS) $(BUILD_JAF) $(TARGET_PROP_FILES),\
14254
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   100
		SRCS:=$(JAXWS_OUTPUTDIR)/jaxws_classes $(JAXWS_OUTPUTDIR)/jaf_classes,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   101
		SUFFIXES:=.class .properties .xsd .java \
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   102
			  com.sun.mirror.apt.AnnotationProcessorFactory \
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   103
                          com.sun.tools.internal.xjc.Plugin,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   104
		JAR:=$(JAXWS_OUTPUTDIR)/dist/lib/classes.jar))
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   105
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   106
$(eval $(call SetupZipArchive,ZIP_JAXWS_SOURCES,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   107
		SRC:=$(JAXWS_TOPDIR)/src/share/jaf_classes $(JAXWS_TOPDIR)/src/share/jaxws_classes,\
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   108
		ZIP:=$(JAXWS_OUTPUTDIR)/dist/lib/src.zip))
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   109
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   110
all: $(JAXWS_OUTPUTDIR)/dist/lib/classes.jar $(JAXWS_OUTPUTDIR)/dist/lib/src.zip
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   111
dff4399a453f 8000992: Update new build-infra makefiles
ohair
parents:
diff changeset
   112
.PHONY: default all