jaxws/make/Makefile
author andrew
Thu, 05 Nov 2009 00:02:38 +0000
changeset 4138 6f57118cd450
parent 4137 a06d987928b2
child 4298 05940e71b36b
permissions -rw-r--r--
6898251: Add ALT_DROPS_DIR feature to jaxp/jaxws Summary: Allowthe directory for downloaded drops to beset using ALT_DROPS_DIR Reviewed-by: ohair, jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8
474761f14bca Initial load
duke
parents:
diff changeset
     1
#
3297
d4ab6018e6f6 6862919: Update copyright year
xdono
parents: 2972
diff changeset
     2
# Copyright 2007-2009 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
3885
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    26
# Makefile wrapper around Ant build.xml file
8
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
3885
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    44
ifeq ($(VARIANT), OPT)
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    45
  ifneq ($(DEBUG_CLASSFILES), true)
8
474761f14bca Initial load
duke
parents:
diff changeset
    46
    ANT_OPTIONS += -Djavac.debug=false
474761f14bca Initial load
duke
parents:
diff changeset
    47
  endif
474761f14bca Initial load
duke
parents:
diff changeset
    48
endif
474761f14bca Initial load
duke
parents:
diff changeset
    49
157
3b2c9223cdf5 6652588: Fix broken JPRT makefile target, no bundle saved
ohair
parents: 8
diff changeset
    50
# Note: jdk/make/common/Defs.gmk uses LANGUAGE_VERSION (-source NN)
8
474761f14bca Initial load
duke
parents:
diff changeset
    51
# and the somewhat misnamed CLASS_VERSION (-target NN)
474761f14bca Initial load
duke
parents:
diff changeset
    52
ifdef TARGET_CLASS_VERSION
474761f14bca Initial load
duke
parents:
diff changeset
    53
  ANT_OPTIONS += -Djavac.target=$(TARGET_CLASS_VERSION)
474761f14bca Initial load
duke
parents:
diff changeset
    54
else
474761f14bca Initial load
duke
parents:
diff changeset
    55
  ifdef JAVAC_TARGET_ARG
474761f14bca Initial load
duke
parents:
diff changeset
    56
    ANT_OPTIONS += -Djavac.target=$(JAVAC_TARGET_ARG)
474761f14bca Initial load
duke
parents:
diff changeset
    57
  endif
474761f14bca Initial load
duke
parents:
diff changeset
    58
endif
474761f14bca Initial load
duke
parents:
diff changeset
    59
2971
170fb87a3dd1 6827026: Change javac source and target default to 7
jjg
parents: 2678
diff changeset
    60
ifdef SOURCE_LANGUAGE_VERSION
170fb87a3dd1 6827026: Change javac source and target default to 7
jjg
parents: 2678
diff changeset
    61
  ANT_OPTIONS += -Djavac.source=$(SOURCE_LANGUAGE_VERSION)
170fb87a3dd1 6827026: Change javac source and target default to 7
jjg
parents: 2678
diff changeset
    62
else
170fb87a3dd1 6827026: Change javac source and target default to 7
jjg
parents: 2678
diff changeset
    63
  ifdef JAVAC_SOURCE_ARG 
170fb87a3dd1 6827026: Change javac source and target default to 7
jjg
parents: 2678
diff changeset
    64
    ANT_OPTIONS += -Djavac.source=$(JAVAC_SOURCE_ARG)
170fb87a3dd1 6827026: Change javac source and target default to 7
jjg
parents: 2678
diff changeset
    65
  endif
170fb87a3dd1 6827026: Change javac source and target default to 7
jjg
parents: 2678
diff changeset
    66
endif 
170fb87a3dd1 6827026: Change javac source and target default to 7
jjg
parents: 2678
diff changeset
    67
3885
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    68
# Figure out the platform we are using
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    69
_SYSTEM_UNAME := $(shell uname)
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    70
_PLATFORM_KIND = unix
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    71
ifeq ($(_SYSTEM_UNAME), Windows_NT)
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    72
  _PLATFORM_KIND = windows
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    73
endif
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    74
ifneq (,$(findstring CYGWIN,$(_SYSTEM_UNAME)))
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    75
  _PLATFORM_KIND = windows
8
474761f14bca Initial load
duke
parents:
diff changeset
    76
endif
474761f14bca Initial load
duke
parents:
diff changeset
    77
3885
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    78
# Where is /java in case we need it
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    79
ifdef ALT_SLASH_JAVA
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    80
  _SLASHJAVA = $(ALT_SLASH_JAVA)
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    81
else
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    82
  ifeq ($(_PLATFORM_KIND), windows)
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    83
    _SLASHJAVA=J:/
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    84
  else
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    85
    _SLASHJAVA=/java
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    86
  endif
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    87
endif
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    88
4138
6f57118cd450 6898251: Add ALT_DROPS_DIR feature to jaxp/jaxws
andrew
parents: 4137
diff changeset
    89
# Do we have the drops already downloaded?
6f57118cd450 6898251: Add ALT_DROPS_DIR feature to jaxp/jaxws
andrew
parents: 4137
diff changeset
    90
# Check ALT_DROPS_DIR for a full path first,
6f57118cd450 6898251: Add ALT_DROPS_DIR feature to jaxp/jaxws
andrew
parents: 4137
diff changeset
    91
# before trying to use the devtools path,
6f57118cd450 6898251: Add ALT_DROPS_DIR feature to jaxp/jaxws
andrew
parents: 4137
diff changeset
    92
# either via ALT_JDK_DEVTOOLS_DIR or /java/devtools.
6f57118cd450 6898251: Add ALT_DROPS_DIR feature to jaxp/jaxws
andrew
parents: 4137
diff changeset
    93
ifdef ALT_DROPS_DIR
6f57118cd450 6898251: Add ALT_DROPS_DIR feature to jaxp/jaxws
andrew
parents: 4137
diff changeset
    94
  DROPS_DIR = $(ALT_DROPS_DIR)
3885
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
    95
else
4138
6f57118cd450 6898251: Add ALT_DROPS_DIR feature to jaxp/jaxws
andrew
parents: 4137
diff changeset
    96
  ifdef ALT_JDK_DEVTOOLS_DIR
6f57118cd450 6898251: Add ALT_DROPS_DIR feature to jaxp/jaxws
andrew
parents: 4137
diff changeset
    97
    DROPS_DIR = $(ALT_JDK_DEVTOOLS_DIR)/share/jdk7-drops
6f57118cd450 6898251: Add ALT_DROPS_DIR feature to jaxp/jaxws
andrew
parents: 4137
diff changeset
    98
  else
6f57118cd450 6898251: Add ALT_DROPS_DIR feature to jaxp/jaxws
andrew
parents: 4137
diff changeset
    99
    DROPS_DIR = $(_SLASHJAVA)/devtools/share/jdk7-drops
6f57118cd450 6898251: Add ALT_DROPS_DIR feature to jaxp/jaxws
andrew
parents: 4137
diff changeset
   100
  endif
3885
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   101
endif
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   102
4138
6f57118cd450 6898251: Add ALT_DROPS_DIR feature to jaxp/jaxws
andrew
parents: 4137
diff changeset
   103
# Add in path to drops already downloaded
6f57118cd450 6898251: Add ALT_DROPS_DIR feature to jaxp/jaxws
andrew
parents: 4137
diff changeset
   104
ANT_OPTIONS += -Ddrops.dir=$(DROPS_DIR)
3885
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   105
8
474761f14bca Initial load
duke
parents:
diff changeset
   106
ifdef ALT_OUTPUTDIR
474761f14bca Initial load
duke
parents:
diff changeset
   107
  OUTPUTDIR = $(ALT_OUTPUTDIR)
3885
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   108
  ANT_OPTIONS += -Doutput.dir=$(ALT_OUTPUTDIR)
8
474761f14bca Initial load
duke
parents:
diff changeset
   109
else
474761f14bca Initial load
duke
parents:
diff changeset
   110
  OUTPUTDIR = ..
474761f14bca Initial load
duke
parents:
diff changeset
   111
endif
474761f14bca Initial load
duke
parents:
diff changeset
   112
474761f14bca Initial load
duke
parents:
diff changeset
   113
ifdef ALT_LANGTOOLS_DIST
3885
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   114
  ifdef ALT_BOOTDIR
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   115
    ANT_JAVA_HOME = JAVA_HOME=$(ALT_BOOTDIR)
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   116
  endif
8
474761f14bca Initial load
duke
parents:
diff changeset
   117
  ANT_OPTIONS += -Dbootstrap.dir=$(ALT_LANGTOOLS_DIST)/bootstrap
3885
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   118
else
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   119
  ifdef ALT_JDK_IMPORT_PATH
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   120
    ANT_JAVA_HOME = JAVA_HOME=$(ALT_JDK_IMPORT_PATH)
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   121
  endif
8
474761f14bca Initial load
duke
parents:
diff changeset
   122
endif
474761f14bca Initial load
duke
parents:
diff changeset
   123
474761f14bca Initial load
duke
parents:
diff changeset
   124
ifdef ANT_HOME
474761f14bca Initial load
duke
parents:
diff changeset
   125
  ANT = $(ANT_HOME)/bin/ant
474761f14bca Initial load
duke
parents:
diff changeset
   126
  ifneq ($(shell test -x $(ANT); echo $$?), 0)
474761f14bca Initial load
duke
parents:
diff changeset
   127
    $(error "$(ANT) not found; please update ANT_HOME")
474761f14bca Initial load
duke
parents:
diff changeset
   128
  endif
474761f14bca Initial load
duke
parents:
diff changeset
   129
else
474761f14bca Initial load
duke
parents:
diff changeset
   130
  ANT = ant
474761f14bca Initial load
duke
parents:
diff changeset
   131
  ifneq ($(shell which $(ANT) > /dev/null; echo $$?), 0)
474761f14bca Initial load
duke
parents:
diff changeset
   132
    $(error "\"ant\" not found; please set ANT_HOME or put \"ant\" on your PATH")
474761f14bca Initial load
duke
parents:
diff changeset
   133
  endif
474761f14bca Initial load
duke
parents:
diff changeset
   134
endif
474761f14bca Initial load
duke
parents:
diff changeset
   135
474761f14bca Initial load
duke
parents:
diff changeset
   136
# Default target and expected 'do everything' target
3885
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   137
default: all
8
474761f14bca Initial load
duke
parents:
diff changeset
   138
474761f14bca Initial load
duke
parents:
diff changeset
   139
# All ant targets of interest
4137
a06d987928b2 6894441: Add checksum checks, remove use of original sources in jax repositories, fix bundle logic
ohair
parents: 3885
diff changeset
   140
ANT_TARGETS = all source drop_included build dist clobber clean sanity
8
474761f14bca Initial load
duke
parents:
diff changeset
   141
474761f14bca Initial load
duke
parents:
diff changeset
   142
# Create a make target for each
474761f14bca Initial load
duke
parents:
diff changeset
   143
$(ANT_TARGETS):
3885
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   144
	cd .. && $(ANT_JAVA_HOME) $(ANT) -version
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   145
	cd .. && $(ANT_JAVA_HOME) $(ANT) $(ANT_OPTIONS) $@
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   146
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   147
# Help target
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   148
define helpenvline
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   149
@echo "    $1";echo "        $2"
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   150
endef
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   151
help:
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   152
	@echo "----------------------------------------------------------"
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   153
	@echo " "
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   154
	@echo "Help information for this Makefile:"
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   155
	@echo " "
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   156
	@echo "  Targets (see ant project information for descriptions):"
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   157
	@echo "    $(ANT_TARGETS)"
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   158
	@echo " "
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   159
	@echo "  Environment or command line variables (all optional):"
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   160
	$(call helpenvline, ALT_BOOTDIR,\
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   161
	       "JAVA_HOME to use when running ant")
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   162
	$(call helpenvline, ALT_LANGTOOLS_DIST,\
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   163
	       "path to langtools repository dist directory")
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   164
	$(call helpenvline, ALT_OUTPUTDIR,\
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   165
	       "path to root of output")
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   166
	$(call helpenvline, DEBUG_CLASSFILES,\
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   167
	       "if set makes sure ant property javac.debug is true")
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   168
	$(call helpenvline, JAVAC_SOURCE_ARG,\
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   169
	       "if SOURCE_LANGUAGE_VERSION not set uses this to set ant property javac.source")
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   170
	$(call helpenvline, JAVAC_TARGET_ARG,\
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   171
	       "if TARGET_CLASS_VERSION not set uses this to set ant property javac.target")
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   172
	$(call helpenvline, SOURCE_LANGUAGE_VERSION,\
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   173
	       "if set uses this to set ant property javac.source")
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   174
	$(call helpenvline, QUIET,\
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   175
	       "if set will pass -quiet to ant")
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   176
	$(call helpenvline, TARGET_CLASS_VERSION,\
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   177
	       "JAVA_HOME to use when running ant")
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   178
	$(call helpenvline, VARIANT,\
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   179
	       "if set to OPT means optimized build will set javac.debug to false")
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   180
	$(call helpenvline, VERBOSE,\
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   181
	       "if set will pass -verbose to ant")
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   182
	@echo " "
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   183
	@echo "----------------------------------------------------------"
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   184
	@echo " "
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   185
	@echo "Ant project file help information:"
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   186
	@echo " "
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   187
	@$(ANT_JAVA_HOME) cd .. && $(ANT) $(ANT_OPTIONS) -p
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   188
	@echo " "
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   189
	@echo "----------------------------------------------------------"
8
474761f14bca Initial load
duke
parents:
diff changeset
   190
474761f14bca Initial load
duke
parents:
diff changeset
   191
# Targets for Sun's internal JPRT build system
157
3b2c9223cdf5 6652588: Fix broken JPRT makefile target, no bundle saved
ohair
parents: 8
diff changeset
   192
JPRT_ARCHIVE_BUNDLE=$(OUTPUTDIR)/jprt.zip
8
474761f14bca Initial load
duke
parents:
diff changeset
   193
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
   194
	$(RM) $(JPRT_ARCHIVE_BUNDLE)
3b2c9223cdf5 6652588: Fix broken JPRT makefile target, no bundle saved
ohair
parents: 8
diff changeset
   195
	( cd $(OUTPUTDIR)/dist && \
3b2c9223cdf5 6652588: Fix broken JPRT makefile target, no bundle saved
ohair
parents: 8
diff changeset
   196
	   zip -q -r $(JPRT_ARCHIVE_BUNDLE) . )
8
474761f14bca Initial load
duke
parents:
diff changeset
   197
474761f14bca Initial load
duke
parents:
diff changeset
   198
# Declare these phony (not filenames)
3885
90241d0c87b6 6856630: Restructure jaxp/jaxws repositories
ohair
parents: 3297
diff changeset
   199
.PHONY: $(ANT_TARGETS) \
8
474761f14bca Initial load
duke
parents:
diff changeset
   200
	jprt_build_product jprt_build_debug jprt_build_fastdebug