JrtfsJar.gmk revision 2281:4353c659dfde
1#
2# Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
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
26default: all
27
28include $(SPEC)
29include MakeBase.gmk
30include JarArchive.gmk
31include SetupJavaCompilers.gmk
32include TextFileProcessing.gmk
33
34# This rule will be depended on due to the MANIFEST line
35$(eval $(call SetupTextFileProcessing, BUILD_JAVA_MANIFEST, \
36  SOURCE_FILES := $(JDK_TOPDIR)/make/data/mainmanifest/manifest.mf, \
37  OUTPUT_FILE := $(SUPPORT_OUTPUTDIR)/java-main-manifest.mf, \
38  REPLACEMENTS := \
39      @@VERSION_SPECIFICATION@@ => $(VERSION_SPECIFICATION) ; \
40      @@VERSION_SHORT@@ => $(VERSION_SHORT) ; \
41      @@COMPANY_NAME@@ => $(COMPANY_NAME) , \
42))
43
44JIMAGE_PKGS := \
45    jdk/internal/jimage \
46    jdk/internal/jrtfs \
47    #
48
49$(eval $(call SetupJavaCompilation, BUILD_JRTFS, \
50    SETUP := GENERATE_OLDBYTECODE, \
51    SRC := $(JDK_TOPDIR)/src/java.base/share/classes, \
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.
60$(eval $(call SetupCopyFiles, COPY_JIMAGE_SERVICE_PROVIDER, \
61    SRC := $(JDK_TOPDIR)/src/java.base/share/classes, \
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, \
68    JAR := $(SUPPORT_OUTPUTDIR)/jrt-fs.jar, \
69    MANIFEST := $(SUPPORT_OUTPUTDIR)/java-main-manifest.mf, \
70))
71
72all: $(BUILD_JRTFS_JAR)
73