author | lancea |
Wed, 20 Jun 2018 16:08:14 -0400 | |
branch | JDK-8188051-branch |
changeset 56798 | 3b438b3fef46 |
parent 47364 | 6b3389375f31 |
permissions | -rw-r--r-- |
27560 | 1 |
# |
47364 | 2 |
# Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved. |
27560 | 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. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
24 |
# |
|
25 |
||
26 |
default: all |
|
27 |
||
28 |
include $(SPEC) |
|
29 |
include MakeBase.gmk |
|
33438 | 30 |
include JarArchive.gmk |
36506 | 31 |
include SetupJavaCompilers.gmk |
30534
5e259b665bbf
8080630: Stop doing sed manipulation of manifest files in SetupJavaCompilation
ihse
parents:
27560
diff
changeset
|
32 |
include TextFileProcessing.gmk |
5e259b665bbf
8080630: Stop doing sed manipulation of manifest files in SetupJavaCompilation
ihse
parents:
27560
diff
changeset
|
33 |
|
5e259b665bbf
8080630: Stop doing sed manipulation of manifest files in SetupJavaCompilation
ihse
parents:
27560
diff
changeset
|
34 |
# This rule will be depended on due to the MANIFEST line |
5e259b665bbf
8080630: Stop doing sed manipulation of manifest files in SetupJavaCompilation
ihse
parents:
27560
diff
changeset
|
35 |
$(eval $(call SetupTextFileProcessing, BUILD_JAVA_MANIFEST, \ |
47217 | 36 |
SOURCE_FILES := $(TOPDIR)/make/data/mainmanifest/manifest.mf, \ |
30534
5e259b665bbf
8080630: Stop doing sed manipulation of manifest files in SetupJavaCompilation
ihse
parents:
27560
diff
changeset
|
37 |
OUTPUT_FILE := $(SUPPORT_OUTPUTDIR)/java-main-manifest.mf, \ |
5e259b665bbf
8080630: Stop doing sed manipulation of manifest files in SetupJavaCompilation
ihse
parents:
27560
diff
changeset
|
38 |
REPLACEMENTS := \ |
33926
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30534
diff
changeset
|
39 |
@@VERSION_SPECIFICATION@@ => $(VERSION_SPECIFICATION) ; \ |
3a19edba4808
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
30534
diff
changeset
|
40 |
@@VERSION_SHORT@@ => $(VERSION_SHORT) ; \ |
30534
5e259b665bbf
8080630: Stop doing sed manipulation of manifest files in SetupJavaCompilation
ihse
parents:
27560
diff
changeset
|
41 |
@@COMPANY_NAME@@ => $(COMPANY_NAME) , \ |
5e259b665bbf
8080630: Stop doing sed manipulation of manifest files in SetupJavaCompilation
ihse
parents:
27560
diff
changeset
|
42 |
)) |
27560 | 43 |
|
36506 | 44 |
JIMAGE_PKGS := \ |
45 |
jdk/internal/jimage \ |
|
46 |
jdk/internal/jrtfs \ |
|
47 |
# |
|
48 |
||
41458 | 49 |
$(eval $(call SetupJavaCompilation, BUILD_JRTFS, \ |
47364 | 50 |
SETUP := GENERATE_8_BYTECODE, \ |
47217 | 51 |
SRC := $(TOPDIR)/src/java.base/share/classes, \ |
36506 | 52 |
EXCLUDE_FILES := module-info.java, \ |
53 |
INCLUDES := $(JIMAGE_PKGS), \ |
|
54 |
BIN := $(SUPPORT_OUTPUTDIR)/jrtfs_classes)) |
|
55 |
||
56 |
# Because of the explicit INCLUDES in the compilation setup above, the service provider |
|
57 |
# file will not be copied unless META-INF/services would also be added to the INCLUDES. |
|
58 |
# Adding META-INF/services would include all files in that directory when only the one |
|
59 |
# is needed, which is why this explicit copy is defined instead. |
|
41458 | 60 |
$(eval $(call SetupCopyFiles, COPY_JIMAGE_SERVICE_PROVIDER, \ |
47217 | 61 |
SRC := $(TOPDIR)/src/java.base/share/classes, \ |
36506 | 62 |
DEST := $(SUPPORT_OUTPUTDIR)/jrtfs_classes, \ |
63 |
FILES := META-INF/services/java.nio.file.spi.FileSystemProvider)) |
|
64 |
||
65 |
$(eval $(call SetupJarArchive,BUILD_JRTFS_JAR, \ |
|
66 |
DEPENDENCIES := $(BUILD_JRTFS) $(COPY_JIMAGE_SERVICE_PROVIDER), \ |
|
67 |
SRCS := $(SUPPORT_OUTPUTDIR)/jrtfs_classes, \ |
|
42285
864475e2cf63
8169816: Move src.zip and jrt-fs.jar under the lib directory
mchung
parents:
41458
diff
changeset
|
68 |
JAR := $(SUPPORT_OUTPUTDIR)/modules_libs/java.base/jrt-fs.jar, \ |
33438 | 69 |
MANIFEST := $(SUPPORT_OUTPUTDIR)/java-main-manifest.mf, \ |
70 |
)) |
|
27560 | 71 |
|
36506 | 72 |
all: $(BUILD_JRTFS_JAR) |