author | dpochepk |
Tue, 20 Dec 2016 17:35:20 +0300 | |
changeset 42898 | af1346a135ce |
parent 42289 | 08548fd6e608 |
child 52065 | dea8a62cdfc3 |
permissions | -rw-r--r-- |
36506 | 1 |
# |
41458 | 2 |
# Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. |
36506 | 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 |
################################################################################ |
|
27 |
# This file makes modifications to module-info.java files based on the build |
|
28 |
# configuration. |
|
29 |
# |
|
30 |
# Depending on build platform, imported modules and optional parts of the build |
|
31 |
# being active, some modules need to have extra exports, provides or uses |
|
32 |
# declarations added to them. These optional extras are defined in .extra files: |
|
33 |
# |
|
34 |
# src/<module>/<share,platform>/classes/module-info.java.extra |
|
35 |
# |
|
36 |
# The contents of the .extra files are simply extra lines that could fit into |
|
37 |
# the module-info file. |
|
38 |
# |
|
39 |
# This makefile is called once for each from-module with the variable |
|
40 |
# MODULE naming the from-module. |
|
41 |
# |
|
42 |
# The modified module-info.java files are put in the gensrc directory where |
|
43 |
# they will automatically override the static versions in the src tree. |
|
44 |
# |
|
45 |
################################################################################ |
|
46 |
||
47 |
default: all |
|
48 |
||
49 |
include $(SPEC) |
|
50 |
include MakeBase.gmk |
|
51 |
include Modules.gmk |
|
52 |
||
53 |
################################################################################ |
|
54 |
# Define this here since jdk/make/Tools.gmk cannot be included from the top |
|
55 |
# make directory. Should probably move some tools away from the jdk repo. |
|
56 |
TOOL_GENMODULEINFOSOURCE = $(JAVA_SMALL) \ |
|
57 |
$(INTERIM_LANGTOOLS_ARGS) \ |
|
58 |
-cp "$(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes" \ |
|
59 |
build.tools.module.GenModuleInfoSource |
|
60 |
||
61 |
################################################################################ |
|
62 |
||
42289
08548fd6e608
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41458
diff
changeset
|
63 |
# Name of modification file. |
08548fd6e608
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41458
diff
changeset
|
64 |
MOD_FILENAME := module-info.java.extra |
36506 | 65 |
|
66 |
# Construct all possible src directories for the module. |
|
37030 | 67 |
MODULE_CLASSES_DIRS := $(call FindModuleSrcDirs, $(MODULE)) |
36506 | 68 |
|
69 |
# Find all the .extra files in the src dirs. |
|
70 |
MOD_FILES := $(wildcard $(foreach f, $(MOD_FILENAME), $(addsuffix /$(f), \ |
|
71 |
$(MODULE_CLASSES_DIRS)))) |
|
72 |
||
73 |
ifneq ($(MOD_FILES), ) |
|
74 |
# Only make this call if modification files are found for this module |
|
75 |
ALL_MODULES := $(call FindAllModules) |
|
76 |
||
42289
08548fd6e608
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41458
diff
changeset
|
77 |
$(SUPPORT_OUTPUTDIR)/gensrc/$(MODULE)/module-info.java: \ |
08548fd6e608
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41458
diff
changeset
|
78 |
$(firstword $(call FindAllModuleInfos, $(MODULE))) \ |
08548fd6e608
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41458
diff
changeset
|
79 |
$(BUILD_TOOLS_JDK) \ |
08548fd6e608
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41458
diff
changeset
|
80 |
$(MOD_FILES) \ |
08548fd6e608
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41458
diff
changeset
|
81 |
$(call DependOnVariable, ALL_MODULES) |
36506 | 82 |
$(MKDIR) -p $(@D) |
83 |
$(RM) $@ $@.tmp |
|
42289
08548fd6e608
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41458
diff
changeset
|
84 |
$(TOOL_GENMODULEINFOSOURCE) -o $@.tmp \ |
08548fd6e608
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41458
diff
changeset
|
85 |
--source-file $< \ |
08548fd6e608
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41458
diff
changeset
|
86 |
--modules $(call CommaList, $(ALL_MODULES)) \ |
08548fd6e608
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41458
diff
changeset
|
87 |
$(MOD_FILES) |
36506 | 88 |
$(MV) $@.tmp $@ |
89 |
||
42289
08548fd6e608
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41458
diff
changeset
|
90 |
TARGETS += $(SUPPORT_OUTPUTDIR)/gensrc/$(MODULE)/module-info.java |
36506 | 91 |
|
42289
08548fd6e608
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41458
diff
changeset
|
92 |
else |
08548fd6e608
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41458
diff
changeset
|
93 |
# If no modifications are found for this module, remove any module-info.java |
08548fd6e608
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41458
diff
changeset
|
94 |
# created by a previous build since that is no longer valid. |
36506 | 95 |
ifneq ($(wildcard $(SUPPORT_OUTPUTDIR)/gensrc/$(MODULE)/module-info.java), ) |
96 |
$(shell $(RM) $(SUPPORT_OUTPUTDIR)/gensrc/$(MODULE)/module-info.java) |
|
97 |
endif |
|
98 |
endif |
|
99 |
||
100 |
################################################################################ |
|
101 |
||
102 |
all: $(TARGETS) |