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