From b39e1640ace96faf7dce2e2a0ea46624deffd1bd Mon Sep 17 00:00:00 2001 From: "Keith W. Campbell" Date: Tue, 11 Jun 2024 10:35:23 -0400 Subject: [PATCH] omr_static_lib/makefile should not compile anything Instead, it should assume that omr/makefile ensured all object files are up to date. Signed-off-by: Keith W. Campbell --- omr_static_lib/makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/omr_static_lib/makefile b/omr_static_lib/makefile index 0800a822358..7f46a5f0ddf 100644 --- a/omr_static_lib/makefile +++ b/omr_static_lib/makefile @@ -76,6 +76,7 @@ $(foreach lib,$(OMRLIBS), \ $(shell MAKEFLAGS= $(MAKE) -s --no-print-directory -C $(lib) show-objects), \ $(if $(filter /%,$(object)),$(object),$(lib)/$(object)))) -MODULE_INCLUDES += $(top_srcdir)/gc/startup +$(OBJECTS) : + @echo "omr_static_lib: Assuming $(top_srcdir)/omr/makefile ensured that $@ is up to date" include $(top_srcdir)/omrmakefiles/rules.mk