author | ihse |
Tue, 09 May 2017 12:53:37 +0200 | |
changeset 44997 | 3f875168ce21 |
parent 41059 | 6f019652dd5e |
permissions | -rw-r--r-- |
19767 | 1 |
# |
44997
3f875168ce21
8179889: Fix typographic errors in copyright headers
ihse
parents:
41059
diff
changeset
|
2 |
# Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved. |
19767 | 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. |
|
8 |
# |
|
9 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
31601
2d21e43fc8e9
8129602: Incorrect GPL header causes RE script to create wrong output
tschatzl
parents:
19767
diff
changeset
|
11 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
19767 | 12 |
# version 2 for more details (a copy is included in the LICENSE file that |
13 |
# accompanied this code). |
|
14 |
# |
|
15 |
# You should have received a copy of the GNU General Public License version |
|
16 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
# |
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
# or visit www.oracle.com if you need additional information or have any |
|
21 |
# questions. |
|
22 |
# |
|
23 |
# |
|
24 |
||
25 |
ifneq "x$(ALT_BOOTDIR)" "x" |
|
26 |
BOOTDIR := $(ALT_BOOTDIR) |
|
27 |
endif |
|
28 |
||
29 |
ifeq "x$(BOOTDIR)" "x" |
|
30 |
JDK_HOME := $(shell dirname $(shell which java))/.. |
|
31 |
else |
|
32 |
JDK_HOME := $(BOOTDIR) |
|
33 |
endif |
|
34 |
||
35 |
SRC_DIR = src |
|
36 |
BUILD_DIR = build |
|
37 |
OUTPUT_DIR = $(BUILD_DIR)/classes |
|
40033
dbd5f9838049
8143081: [ctw] Test CompileTheWorld.java needs to be updated for Jigsaw
tpivovarova
parents:
31601
diff
changeset
|
38 |
TESTLIBRARY_DIR = ../../../../test/lib |
19767 | 39 |
|
40 |
JAVAC = $(JDK_HOME)/bin/javac |
|
41 |
JAR = $(JDK_HOME)/bin/jar |
|
42 |
||
41059
6f019652dd5e
8165030: [TESTBUG] ctw failed to build after 8157957
tpivovarova
parents:
40244
diff
changeset
|
43 |
SRC_FILES = $(shell find $(SRC_DIR) $(TESTLIBRARY_DIR)/jdk/test/lib -name '*.java') |
40033
dbd5f9838049
8143081: [ctw] Test CompileTheWorld.java needs to be updated for Jigsaw
tpivovarova
parents:
31601
diff
changeset
|
44 |
WB_SRC_FILES = $(shell find $(TESTLIBRARY_DIR)/sun/hotspot -name '*.java') |
19767 | 45 |
|
46 |
MAIN_CLASS = sun.hotspot.tools.ctw.CompileTheWorld |
|
47 |
||
48 |
.PHONY: clean cleantmp |
|
49 |
||
50 |
all: ctw.jar cleantmp |
|
51 |
||
52 |
clean: cleantmp |
|
53 |
@rm -rf ctw.jar wb.jar |
|
54 |
||
55 |
cleantmp: |
|
40033
dbd5f9838049
8143081: [ctw] Test CompileTheWorld.java needs to be updated for Jigsaw
tpivovarova
parents:
31601
diff
changeset
|
56 |
@rm -rf filelist wb_filelist manifest.mf |
19767 | 57 |
@rm -rf $(BUILD_DIR) |
58 |
||
40033
dbd5f9838049
8143081: [ctw] Test CompileTheWorld.java needs to be updated for Jigsaw
tpivovarova
parents:
31601
diff
changeset
|
59 |
ctw.jar: filelist wb.jar |
19767 | 60 |
@mkdir -p $(OUTPUT_DIR) |
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40033
diff
changeset
|
61 |
$(JAVAC) --add-exports java.base/jdk.internal.jimage=ALL-UNNAMED \ |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40033
diff
changeset
|
62 |
--add-exports java.base/jdk.internal.misc=ALL-UNNAMED \ |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40033
diff
changeset
|
63 |
--add-exports java.base/jdk.internal.reflect=ALL-UNNAMED \ |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40033
diff
changeset
|
64 |
-sourcepath $(SRC_DIR) -d $(OUTPUT_DIR) -cp wb.jar @filelist |
40033
dbd5f9838049
8143081: [ctw] Test CompileTheWorld.java needs to be updated for Jigsaw
tpivovarova
parents:
31601
diff
changeset
|
65 |
$(JAR) --create --file=$@ --main-class $(MAIN_CLASS) -C $(OUTPUT_DIR) . |
19767 | 66 |
|
40033
dbd5f9838049
8143081: [ctw] Test CompileTheWorld.java needs to be updated for Jigsaw
tpivovarova
parents:
31601
diff
changeset
|
67 |
wb.jar: wb_filelist |
dbd5f9838049
8143081: [ctw] Test CompileTheWorld.java needs to be updated for Jigsaw
tpivovarova
parents:
31601
diff
changeset
|
68 |
@mkdir -p $(OUTPUT_DIR) |
dbd5f9838049
8143081: [ctw] Test CompileTheWorld.java needs to be updated for Jigsaw
tpivovarova
parents:
31601
diff
changeset
|
69 |
$(JAVAC) -sourcepath $(TESTLIBRARY_DIR) \ |
dbd5f9838049
8143081: [ctw] Test CompileTheWorld.java needs to be updated for Jigsaw
tpivovarova
parents:
31601
diff
changeset
|
70 |
-d $(OUTPUT_DIR) \ |
dbd5f9838049
8143081: [ctw] Test CompileTheWorld.java needs to be updated for Jigsaw
tpivovarova
parents:
31601
diff
changeset
|
71 |
-cp $(OUTPUT_DIR) \ |
dbd5f9838049
8143081: [ctw] Test CompileTheWorld.java needs to be updated for Jigsaw
tpivovarova
parents:
31601
diff
changeset
|
72 |
@wb_filelist |
dbd5f9838049
8143081: [ctw] Test CompileTheWorld.java needs to be updated for Jigsaw
tpivovarova
parents:
31601
diff
changeset
|
73 |
$(JAR) --create --file=$@ -C $(OUTPUT_DIR) . |
dbd5f9838049
8143081: [ctw] Test CompileTheWorld.java needs to be updated for Jigsaw
tpivovarova
parents:
31601
diff
changeset
|
74 |
|
dbd5f9838049
8143081: [ctw] Test CompileTheWorld.java needs to be updated for Jigsaw
tpivovarova
parents:
31601
diff
changeset
|
75 |
wb_filelist: $(WB_SRC_FILES) |
dbd5f9838049
8143081: [ctw] Test CompileTheWorld.java needs to be updated for Jigsaw
tpivovarova
parents:
31601
diff
changeset
|
76 |
@rm -f $@ |
dbd5f9838049
8143081: [ctw] Test CompileTheWorld.java needs to be updated for Jigsaw
tpivovarova
parents:
31601
diff
changeset
|
77 |
@echo $(WB_SRC_FILES) > $@ |
19767 | 78 |
|
79 |
filelist: $(SRC_FILES) |
|
80 |
@rm -f $@ |
|
81 |
@echo $(SRC_FILES) > $@ |