From 35ab24d45abff07fb8f6c49b77dd6c903c7dfb8e Mon Sep 17 00:00:00 2001 From: Steve Huston Date: Wed, 2 Nov 2016 13:04:51 -0400 Subject: Output build timing markers if make variable 'timed' is set --- ACE/include/makeinclude/rules.nested.GNU | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ACE/include/makeinclude/rules.nested.GNU b/ACE/include/makeinclude/rules.nested.GNU index 42ec2e4e443..ed7257db4f5 100644 --- a/ACE/include/makeinclude/rules.nested.GNU +++ b/ACE/include/makeinclude/rules.nested.GNU @@ -30,7 +30,13 @@ endif # Triggered by the $(TARGETS_NESTED) target, below. %.subdir: % + ifneq ($(timed,) + echo -n "START: $< " && date + endif cd $< && $(MAKE) -f $(SUBDIR_MAKEFILE) $(SUBDIR_TARGET) + ifneq ($(timed,) + echo -n "FINISH: $< " && date + endif # Build FOO.nested by calling MAKE again, this time with DIRS (with # ".subdir" appended to each) as the targets, and passing FOO as the -- cgit v1.2.1