8349515: [REDO] Framework for tracing makefile inclusion and parsing

Reviewed-by: erikj
This commit is contained in:
Magnus Ihse Bursie 2025-02-11 10:55:47 +00:00
parent 8e85829496
commit 964dd18fd2
273 changed files with 2222 additions and 1062 deletions

View file

@ -1,5 +1,5 @@
#
# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2011, 2025, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
@ -23,6 +23,11 @@
# questions.
#
include MakeIncludeStart.gmk
ifeq ($(INCLUDE), true)
################################################################################
FONTCONFIG_DATA_DIR := $(MODULE_SRC)/$(OPENJDK_TARGET_OS)/data/fontconfig
FONTCONFIG_SRC_FILE := $(FONTCONFIG_DATA_DIR)/fontconfig.properties
@ -55,3 +60,8 @@ ifneq ($(wildcard $(FONTCONFIG_SRC_FILE)), )
TARGETS += $(FONTCONFIG_OUT_BIN_FILE)
endif
################################################################################
endif # include guard
include MakeIncludeEnd.gmk

View file

@ -1,5 +1,5 @@
#
# Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2011, 2025, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
@ -23,6 +23,11 @@
# questions.
#
include MakeIncludeStart.gmk
ifeq ($(INCLUDE), true)
################################################################################
GENDATA_HTML32DTD :=
HTML32DTD = $(JDK_OUTPUTDIR)/modules/java.desktop/javax/swing/text/html/parser/html32.bdtd
@ -33,3 +38,8 @@ $(HTML32DTD): $(BUILD_TOOLS_JDK)
($(TOOL_DTDBUILDER) html32 > $@) || exit 1
TARGETS += $(HTML32DTD)
################################################################################
endif # include guard
include MakeIncludeEnd.gmk