diff options
author | Steve Huston <shuston@riverace.com> | 2016-11-02 13:04:51 -0400 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2016-11-02 13:04:51 -0400 |
commit | 35ab24d45abff07fb8f6c49b77dd6c903c7dfb8e (patch) | |
tree | de69fec5934691365cbc34815f45683c2a180a21 /ACE/include/makeinclude/rules.nested.GNU | |
parent | b87a20d19897f5889ad6aa85c0e867c3b6e76bb7 (diff) | |
download | ATCD-35ab24d45abff07fb8f6c49b77dd6c903c7dfb8e.tar.gz |
Output build timing markers if make variable 'timed' is set
Diffstat (limited to 'ACE/include/makeinclude/rules.nested.GNU')
-rw-r--r-- | ACE/include/makeinclude/rules.nested.GNU | 6 |
1 files changed, 6 insertions, 0 deletions
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 |