jaxws/make/Makefile
author tbell
Thu, 11 Jun 2009 21:30:49 -0700
changeset 2972 3130ead31447
parent 2842 1a14159efe64
parent 2971 170fb87a3dd1
child 3297 d4ab6018e6f6
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8
474761f14bca Initial load
duke
parents:
diff changeset
     1
#
2678
57cf2a1c1a05 6831313: update jaxws in OpenJDK7 to 2.1 plus bug fixes from OpenJDK 6
tbell
parents: 2208
diff changeset
     2
# Copyright 2007 Sun Microsystems, Inc.  All Rights Reserved.
8
474761f14bca Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
474761f14bca Initial load
duke
parents:
diff changeset
     4
#
474761f14bca Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
474761f14bca Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
474761f14bca Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.  Sun designates this
474761f14bca Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
474761f14bca Initial load
duke
parents:
diff changeset
     9
# by Sun in the LICENSE file that accompanied this code.
474761f14bca Initial load
duke
parents:
diff changeset
    10
#
474761f14bca Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
474761f14bca Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
474761f14bca Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
474761f14bca Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
474761f14bca Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
474761f14bca Initial load
duke
parents:
diff changeset
    16
#
474761f14bca Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
474761f14bca Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
474761f14bca Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
474761f14bca Initial load
duke
parents:
diff changeset
    20
#
474761f14bca Initial load
duke
parents:
diff changeset
    21
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
474761f14bca Initial load
duke
parents:
diff changeset
    22
# CA 95054 USA or visit www.sun.com if you need additional information or
474761f14bca Initial load
duke
parents:
diff changeset
    23
# have any questions.
474761f14bca Initial load
duke
parents:
diff changeset
    24
#
474761f14bca Initial load
duke
parents:
diff changeset
    25
474761f14bca Initial load
duke
parents:
diff changeset
    26
# Makefile for jaxws: wrapper around Ant build.xml file
474761f14bca Initial load
duke
parents:
diff changeset
    27
474761f14bca Initial load
duke
parents:
diff changeset
    28
#
474761f14bca Initial load
duke
parents:
diff changeset
    29
# On Solaris, the 'make' utility from Sun will not work with these makefiles.
474761f14bca Initial load
duke
parents:
diff changeset
    30
#    This little rule is only understood by Sun's make, and is harmless
474761f14bca Initial load
duke
parents:
diff changeset
    31
#    when seen by the GNU make tool. If using Sun's make, this causes the
474761f14bca Initial load
duke
parents:
diff changeset
    32
#    make command to fail.
474761f14bca Initial load
duke
parents:
diff changeset
    33
#
474761f14bca Initial load
duke
parents:
diff changeset
    34
SUN_MAKE_TEST:sh = @echo "ERROR: PLEASE USE GNU VERSION OF MAKE"; exit 33
474761f14bca Initial load
duke
parents:
diff changeset
    35
474761f14bca Initial load
duke
parents:
diff changeset
    36
ifdef QUIET
474761f14bca Initial load
duke
parents:
diff changeset
    37
  ANT_OPTIONS += -quiet
474761f14bca Initial load
duke
parents:
diff changeset
    38
endif
474761f14bca Initial load
duke
parents:
diff changeset
    39
474761f14bca Initial load
duke
parents:
diff changeset
    40
ifdef VERBOSE
474761f14bca Initial load
duke
parents:
diff changeset
    41
  ANT_OPTIONS += -verbose
474761f14bca Initial load
duke
parents:
diff changeset
    42
endif
474761f14bca Initial load
duke
parents:
diff changeset
    43
474761f14bca Initial load
duke
parents:
diff changeset
    44
ifdef JDK_VERSION
474761f14bca Initial load
duke
parents:
diff changeset
    45
  ANT_OPTIONS += -Djdk.version=$(JDK_VERSION)
474761f14bca Initial load
duke
parents:
diff changeset
    46
endif 
474761f14bca Initial load
duke
parents:
diff changeset
    47
474761f14bca Initial load
duke
parents:
diff changeset
    48
ifdef FULL_VERSION
474761f14bca Initial load
duke
parents:
diff changeset
    49
  ANT_OPTIONS += -Dfull.version='$(FULL_VERSION)' # will contain spaces
474761f14bca Initial load
duke
parents:
diff changeset
    50
endif 
474761f14bca Initial load
duke
parents:
diff changeset
    51
474761f14bca Initial load
duke
parents:
diff changeset
    52
ifdef MILESTONE
474761f14bca Initial load
duke
parents:
diff changeset
    53
  ANT_OPTIONS += -Dmilestone=$(MILESTONE)
474761f14bca Initial load
duke
parents:
diff changeset
    54
endif
474761f14bca Initial load
duke
parents:
diff changeset
    55
474761f14bca Initial load
duke
parents:
diff changeset
    56
ifdef BUILD_NUMBER
474761f14bca Initial load
duke
parents:
diff changeset
    57
  ANT_OPTIONS += -Dbuild.number=$(BUILD_NUMBER)
474761f14bca Initial load
duke
parents:
diff changeset
    58
else
474761f14bca Initial load
duke
parents:
diff changeset
    59
  ifdef JDK_BUILD_NUMBER
474761f14bca Initial load
duke
parents:
diff changeset
    60
    ANT_OPTIONS += -Dbuild.number=$(JDK_BUILD_NUMBER)
474761f14bca Initial load
duke
parents:
diff changeset
    61
  endif
474761f14bca Initial load
duke
parents:
diff changeset
    62
endif
474761f14bca Initial load
duke
parents:
diff changeset
    63
474761f14bca Initial load
duke
parents:
diff changeset
    64
ifeq ($(VARIANT), DBG)
474761f14bca Initial load
duke
parents:
diff changeset
    65
  ANT_OPTIONS += -Djavac.debug=true
474761f14bca Initial load
duke
parents:
diff changeset
    66
else
474761f14bca Initial load
duke
parents:
diff changeset
    67
  ifeq ($(VARIANT), OPT)
474761f14bca Initial load
duke
parents:
diff changeset
    68
    ANT_OPTIONS += -Djavac.debug=false
474761f14bca Initial load
duke
parents:
diff changeset
    69
  endif
474761f14bca Initial load
duke
parents:
diff changeset
    70
endif
474761f14bca Initial load
duke
parents:
diff changeset
    71
2839
668ff342c026 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2208
diff changeset
    72
ifeq ($(DEBUG_CLASSFILES), true)
668ff342c026 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2208
diff changeset
    73
  ANT_OPTIONS += -Djavac.debug=true
668ff342c026 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2208
diff changeset
    74
endif
668ff342c026 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2208
diff changeset
    75
157
3b2c9223cdf5 6652588: Fix broken JPRT makefile target, no bundle saved
ohair
parents: 8
diff changeset
    76
# Note: jdk/make/common/Defs.gmk uses LANGUAGE_VERSION (-source NN)
8
474761f14bca Initial load
duke
parents:
diff changeset
    77
# and the somewhat misnamed CLASS_VERSION (-target NN)
474761f14bca Initial load
duke
parents:
diff changeset
    78
ifdef TARGET_CLASS_VERSION
474761f14bca Initial load
duke
parents:
diff changeset
    79
  ANT_OPTIONS += -Djavac.target=$(TARGET_CLASS_VERSION)
474761f14bca Initial load
duke
parents:
diff changeset
    80
else
474761f14bca Initial load
duke
parents:
diff changeset
    81
  ifdef JAVAC_TARGET_ARG
474761f14bca Initial load
duke
parents:
diff changeset
    82
    ANT_OPTIONS += -Djavac.target=$(JAVAC_TARGET_ARG)
474761f14bca Initial load
duke
parents:
diff changeset
    83
  endif
474761f14bca Initial load
duke
parents:
diff changeset
    84
endif
474761f14bca Initial load
duke
parents:
diff changeset
    85
2971
170fb87a3dd1 6827026: Change javac source and target default to 7
jjg
parents: 2678
diff changeset
    86
ifdef SOURCE_LANGUAGE_VERSION
170fb87a3dd1 6827026: Change javac source and target default to 7
jjg
parents: 2678
diff changeset
    87
  ANT_OPTIONS += -Djavac.source=$(SOURCE_LANGUAGE_VERSION)
170fb87a3dd1 6827026: Change javac source and target default to 7
jjg
parents: 2678
diff changeset
    88
else
170fb87a3dd1 6827026: Change javac source and target default to 7
jjg
parents: 2678
diff changeset
    89
  ifdef JAVAC_SOURCE_ARG 
170fb87a3dd1 6827026: Change javac source and target default to 7
jjg
parents: 2678
diff changeset
    90
    ANT_OPTIONS += -Djavac.source=$(JAVAC_SOURCE_ARG)
170fb87a3dd1 6827026: Change javac source and target default to 7
jjg
parents: 2678
diff changeset
    91
  endif
170fb87a3dd1 6827026: Change javac source and target default to 7
jjg
parents: 2678
diff changeset
    92
endif 
170fb87a3dd1 6827026: Change javac source and target default to 7
jjg
parents: 2678
diff changeset
    93
8
474761f14bca Initial load
duke
parents:
diff changeset
    94
ifdef ALT_BOOTDIR
474761f14bca Initial load
duke
parents:
diff changeset
    95
  ANT_JAVA_HOME = JAVA_HOME=$(ALT_BOOTDIR)
474761f14bca Initial load
duke
parents:
diff changeset
    96
endif
474761f14bca Initial load
duke
parents:
diff changeset
    97
474761f14bca Initial load
duke
parents:
diff changeset
    98
ifdef ALT_OUTPUTDIR
474761f14bca Initial load
duke
parents:
diff changeset
    99
  OUTPUTDIR = $(ALT_OUTPUTDIR)
474761f14bca Initial load
duke
parents:
diff changeset
   100
  ANT_OPTIONS += -Dbuild.dir=$(ALT_OUTPUTDIR)/build
474761f14bca Initial load
duke
parents:
diff changeset
   101
  ANT_OPTIONS += -Ddist.dir=$(ALT_OUTPUTDIR)/dist
474761f14bca Initial load
duke
parents:
diff changeset
   102
else
474761f14bca Initial load
duke
parents:
diff changeset
   103
  OUTPUTDIR = ..
474761f14bca Initial load
duke
parents:
diff changeset
   104
endif
474761f14bca Initial load
duke
parents:
diff changeset
   105
474761f14bca Initial load
duke
parents:
diff changeset
   106
ifdef ALT_LANGTOOLS_DIST
474761f14bca Initial load
duke
parents:
diff changeset
   107
  ANT_OPTIONS += -Dbootstrap.dir=$(ALT_LANGTOOLS_DIST)/bootstrap
474761f14bca Initial load
duke
parents:
diff changeset
   108
endif
474761f14bca Initial load
duke
parents:
diff changeset
   109
474761f14bca Initial load
duke
parents:
diff changeset
   110
ifdef FINDBUGS_HOME
474761f14bca Initial load
duke
parents:
diff changeset
   111
  ANT_OPTIONS += -Dfindbugs.home=$(FINDBUGS_HOME)
474761f14bca Initial load
duke
parents:
diff changeset
   112
endif
474761f14bca Initial load
duke
parents:
diff changeset
   113
474761f14bca Initial load
duke
parents:
diff changeset
   114
ifdef ANT_HOME
474761f14bca Initial load
duke
parents:
diff changeset
   115
  ANT = $(ANT_HOME)/bin/ant
474761f14bca Initial load
duke
parents:
diff changeset
   116
  ifneq ($(shell test -x $(ANT); echo $$?), 0)
474761f14bca Initial load
duke
parents:
diff changeset
   117
    $(error "$(ANT) not found; please update ANT_HOME")
474761f14bca Initial load
duke
parents:
diff changeset
   118
  endif
474761f14bca Initial load
duke
parents:
diff changeset
   119
else
474761f14bca Initial load
duke
parents:
diff changeset
   120
  ANT = ant
474761f14bca Initial load
duke
parents:
diff changeset
   121
  ifneq ($(shell which $(ANT) > /dev/null; echo $$?), 0)
474761f14bca Initial load
duke
parents:
diff changeset
   122
    $(error "\"ant\" not found; please set ANT_HOME or put \"ant\" on your PATH")
474761f14bca Initial load
duke
parents:
diff changeset
   123
  endif
474761f14bca Initial load
duke
parents:
diff changeset
   124
endif
474761f14bca Initial load
duke
parents:
diff changeset
   125
474761f14bca Initial load
duke
parents:
diff changeset
   126
# Default target and expected 'do everything' target
474761f14bca Initial load
duke
parents:
diff changeset
   127
all: build
474761f14bca Initial load
duke
parents:
diff changeset
   128
474761f14bca Initial load
duke
parents:
diff changeset
   129
# Standard make clobber target
474761f14bca Initial load
duke
parents:
diff changeset
   130
clobber: clean
474761f14bca Initial load
duke
parents:
diff changeset
   131
474761f14bca Initial load
duke
parents:
diff changeset
   132
# All ant targets of interest
474761f14bca Initial load
duke
parents:
diff changeset
   133
ANT_TARGETS = build clean sanity # for now
474761f14bca Initial load
duke
parents:
diff changeset
   134
474761f14bca Initial load
duke
parents:
diff changeset
   135
# Create a make target for each
474761f14bca Initial load
duke
parents:
diff changeset
   136
$(ANT_TARGETS):
474761f14bca Initial load
duke
parents:
diff changeset
   137
	$(ANT_JAVA_HOME) $(ANT) -version
474761f14bca Initial load
duke
parents:
diff changeset
   138
	$(ANT_JAVA_HOME) $(ANT) $(ANT_OPTIONS) $@
474761f14bca Initial load
duke
parents:
diff changeset
   139
474761f14bca Initial load
duke
parents:
diff changeset
   140
# Targets for Sun's internal JPRT build system
157
3b2c9223cdf5 6652588: Fix broken JPRT makefile target, no bundle saved
ohair
parents: 8
diff changeset
   141
JPRT_ARCHIVE_BUNDLE=$(OUTPUTDIR)/jprt.zip
8
474761f14bca Initial load
duke
parents:
diff changeset
   142
jprt_build_product jprt_build_debug jprt_build_fastdebug: all
157
3b2c9223cdf5 6652588: Fix broken JPRT makefile target, no bundle saved
ohair
parents: 8
diff changeset
   143
	$(RM) $(JPRT_ARCHIVE_BUNDLE)
3b2c9223cdf5 6652588: Fix broken JPRT makefile target, no bundle saved
ohair
parents: 8
diff changeset
   144
	( cd $(OUTPUTDIR)/dist && \
3b2c9223cdf5 6652588: Fix broken JPRT makefile target, no bundle saved
ohair
parents: 8
diff changeset
   145
	   zip -q -r $(JPRT_ARCHIVE_BUNDLE) . )
8
474761f14bca Initial load
duke
parents:
diff changeset
   146
474761f14bca Initial load
duke
parents:
diff changeset
   147
# Declare these phony (not filenames)
474761f14bca Initial load
duke
parents:
diff changeset
   148
.PHONY: $(ANT_TARGETS) all clobber \
474761f14bca Initial load
duke
parents:
diff changeset
   149
	jprt_build_product jprt_build_debug jprt_build_fastdebug