author | jlaskey |
Thu, 14 Nov 2019 12:39:49 -0400 | |
branch | JDK-8193209-branch |
changeset 59086 | 214afc7a1e02 |
parent 48170 | 3af0ab7d1d90 |
permissions | -rw-r--r-- |
2126 | 1 |
# |
31775 | 2 |
# Copyright (c) 2009, 2015, Oracle and/or its affiliates. All rights reserved. |
2126 | 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 |
|
11 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
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 |
# |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2126
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2126
diff
changeset
|
20 |
# or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2126
diff
changeset
|
21 |
# questions. |
2126 | 22 |
# |
23 |
# |
|
24 |
PKGLIST = \ |
|
25 |
com.sun.hotspot.tools.compiler |
|
26 |
#END PKGLIST |
|
27 |
||
48170
3af0ab7d1d90
8192821: Make LogCompilation into a maven project
ecaspole
parents:
47216
diff
changeset
|
28 |
FILELIST = main/java/com/sun/hotspot/tools/compiler/*.java |
2126 | 29 |
|
30 |
ifneq "x$(ALT_BOOTDIR)" "x" |
|
31 |
BOOTDIR := $(ALT_BOOTDIR) |
|
32 |
endif |
|
33 |
||
34 |
ifeq "x$(BOOTDIR)" "x" |
|
35 |
JDK_HOME := $(shell dirname $(shell which java))/.. |
|
36 |
else |
|
37 |
JDK_HOME := $(BOOTDIR) |
|
38 |
endif |
|
39 |
||
40 |
isUnix := $(shell test -r c:/; echo $$?) |
|
41 |
||
42 |
ifeq "$(isUnix)" "1" |
|
43 |
CPS := : |
|
44 |
else |
|
45 |
CPS := ";" |
|
46 |
endif |
|
47 |
||
48 |
SRC_DIR = src |
|
49 |
BUILD_DIR = build |
|
50 |
OUTPUT_DIR = $(BUILD_DIR)/classes |
|
51 |
||
52 |
# gnumake 3.78.1 does not accept the *s, |
|
53 |
# so use the shell to expand them |
|
54 |
ALLFILES := $(patsubst %,$(SRC_DIR)/%,$(FILELIST)) |
|
55 |
ALLFILES := $(shell /bin/ls $(ALLFILES)) |
|
56 |
||
57 |
JAVAC = $(JDK_HOME)/bin/javac |
|
58 |
JAR = $(JDK_HOME)/bin/jar |
|
59 |
||
60 |
# Tagging it on because there's no reason not to run it |
|
61 |
all: logc.jar |
|
62 |
||
63 |
logc.jar: filelist manifest.mf |
|
64 |
@mkdir -p $(OUTPUT_DIR) |
|
31775 | 65 |
$(JAVAC) -deprecation -sourcepath $(SRC_DIR) -d $(OUTPUT_DIR) @filelist |
2126 | 66 |
$(JAR) cvfm logc.jar manifest.mf -C $(OUTPUT_DIR) com |
67 |
||
68 |
.PHONY: filelist |
|
69 |
filelist: $(ALLFILES) |
|
70 |
@rm -f $@ |
|
71 |
@echo $(ALLFILES) > $@ |
|
72 |
||
73 |
clean:: |
|
74 |
rm -rf filelist logc.jar |
|
75 |
rm -rf $(BUILD_DIR) |