1 # 2 # Copyright (c) 2014, 2025, 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 26 include MakeFileStart.gmk 27 28 ################################################################################ 29 30 include Modules.gmk 31 include ZipArchive.gmk 32 33 SRC_ZIP_WORK_DIR := $(SUPPORT_OUTPUTDIR)/src 34 $(if $(filter $(TOPDIR)/%, $(SUPPORT_OUTPUTDIR)), $(eval SRC_ZIP_BASE := $(TOPDIR)), $(eval SRC_ZIP_BASE := $(SUPPORT_OUTPUTDIR))) 35 36 ################################################################################ 37 # Create the directory structure for src.zip using symlinks. 38 # <module>/<package>/<file>.java 39 40 ALL_MODULES := $(FindAllModules) 41 42 # Generate the src dirs in the first make invocation and then call this makefile 43 # again to create src.zip. 44 $(foreach m, $(ALL_MODULES), \ 45 $(foreach d, $(call FindModuleSrcDirs, $m), \ 46 $(eval $d_TARGET := $(SRC_ZIP_WORK_DIR)/$(patsubst $(TOPDIR)/%,%,$(patsubst $(SUPPORT_OUTPUTDIR)/%,%,$d))/$m) \ 47 $(if $(SRC_GENERATED), , \ 48 $(eval $$($d_TARGET): $d ; \ 49 $$(if $(filter $(SRC_ZIP_BASE)/%, $d), $$(link-file-relative), $$(link-file-absolute)) \ 50 ) \ 51 ) \ 52 $(eval SRC_ZIP_SRCS += $$($d_TARGET)) \ 53 $(eval SRC_ZIP_SRCS_$m += $$($d_TARGET)) \ 54 ) \ 55 ) 56 57 TARGETS += $(SRC_ZIP_SRCS) 58 59 ################################################################################ 60 # Only evaluate the creation of src.zip in a sub make call when the symlinked 61 # src directory structure has been generated. 62 ifeq ($(SRC_GENERATED), true) 63 64 # Rewrite the EXCLUDE_TRANSLATIONS locales as exclude patters for java files 65 TRANSLATIONS_PATTERN := $(addprefix %_, $(addsuffix .java, $(EXCLUDE_TRANSLATIONS))) 66 67 # Add excludes for translations for all modules except jdk.localedata 68 $(foreach s, $(SRC_ZIP_SRCS), \ 69 $(if $(filter $(notdir $s), jdk.localedata), , \ 70 $(eval BUILD_SRC_ZIP_EXCLUDE_PATTERNS_$(dir $s) := $$(TRANSLATIONS_PATTERN)) \ 71 ) \ 72 ) 73 74 $(eval $(call SetupZipArchive, BUILD_SRC_ZIP, \ 75 SRC := $(dir $(SRC_ZIP_SRCS)), \ 76 INCLUDES := $(SRC_ZIP_INCLUDES), \ 77 INCLUDE_FILES := $(SRC_ZIP_INCLUDE_FILES), \ 78 EXCLUDES := $(SRC_ZIP_EXCLUDES), \ 79 EXCLUDE_FILES := $(SRC_ZIP_EXCLUDE_FILES), \ 80 SUFFIXES := .java, \ 81 ZIP := $(SUPPORT_OUTPUTDIR)/src.zip, \ 82 FOLLOW_SYMLINKS := true, \ 83 )) 84 85 do-zip: $(BUILD_SRC_ZIP) 86 87 .PHONY: do-zip 88 endif 89 90 zip: $(SRC_ZIP_SRCS) 91 +$(MAKE) $(MAKE_ARGS) -f ZipSource.gmk do-zip SRC_GENERATED=true 92 93 TARGETS += zip 94 95 .PHONY: zip 96 97 ################################################################################ 98 99 include MakeFileEnd.gmk --- EOF ---