2012-04-10 15:22:03 +00:00
|
|
|
#
|
2022-03-21 21:34:09 +00:00
|
|
|
# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
|
2012-04-10 15:22:03 +00:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
|
|
|
# This code is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License version 2 only, as
|
|
|
|
# published by the Free Software Foundation. Oracle designates this
|
|
|
|
# particular file as subject to the "Classpath" exception as provided
|
|
|
|
# by Oracle in the LICENSE file that accompanied this code.
|
|
|
|
#
|
|
|
|
# This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
# version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
# accompanied this code).
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License version
|
|
|
|
# 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
#
|
|
|
|
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
# or visit www.oracle.com if you need additional information or have any
|
|
|
|
# questions.
|
|
|
|
#
|
|
|
|
|
2012-06-08 03:40:50 +00:00
|
|
|
GENSRC_EXCEPTIONS :=
|
2012-04-10 15:22:03 +00:00
|
|
|
|
2014-12-03 14:22:58 +00:00
|
|
|
GENSRC_EXCEPTIONS_DST := $(SUPPORT_OUTPUTDIR)/gensrc/java.base/java/nio
|
2012-04-10 15:22:03 +00:00
|
|
|
|
2022-03-21 21:34:09 +00:00
|
|
|
GENSRC_EXCEPTIONS_SRC := $(MODULE_SRC)/share/classes/java/nio
|
2017-09-12 17:03:56 +00:00
|
|
|
GENSRC_EXCEPTIONS_CMD := $(TOPDIR)/make/scripts/genExceptions.sh
|
2012-04-10 15:22:03 +00:00
|
|
|
|
2013-10-10 13:06:21 +00:00
|
|
|
GENSRC_EXCEPTIONS_SRC_DIRS := . charset channels
|
2012-04-10 15:22:03 +00:00
|
|
|
|
2014-02-21 12:52:39 +00:00
|
|
|
$(GENSRC_EXCEPTIONS_DST)/_the.%.marker: $(GENSRC_EXCEPTIONS_SRC)/%/exceptions \
|
2016-01-16 12:01:44 +00:00
|
|
|
$(GENSRC_EXCEPTIONS_CMD)
|
|
|
|
$(call LogInfo, Generating exceptions java.nio $*)
|
|
|
|
$(call MakeDir, $(@D)/$*)
|
2020-11-30 16:35:02 +00:00
|
|
|
SCRIPTS="$(TOPDIR)/make/scripts" AWK="$(AWK)" SH="$(SH)" $(SH) \
|
2016-01-16 12:01:44 +00:00
|
|
|
$(GENSRC_EXCEPTIONS_CMD) $< $(@D)/$* $(LOG_DEBUG)
|
2012-06-08 03:40:50 +00:00
|
|
|
$(TOUCH) $@
|
2012-04-10 15:22:03 +00:00
|
|
|
|
2024-09-03 15:31:09 +00:00
|
|
|
GENSRC_EXCEPTIONS += $(foreach D, $(GENSRC_EXCEPTIONS_SRC_DIRS), $(GENSRC_EXCEPTIONS_DST)/_the.$(D).marker)
|
2012-04-10 15:22:03 +00:00
|
|
|
|
2014-08-17 14:54:13 +00:00
|
|
|
$(GENSRC_EXCEPTIONS): $(BUILD_TOOLS_JDK)
|
2020-05-19 13:59:51 +00:00
|
|
|
|
|
|
|
TARGETS += $(GENSRC_EXCEPTIONS)
|