Skip to content

Commit 17c177c

Browse files
committed
make: less verbose output fixes
Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 1bc672e commit 17c177c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

flow/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ SUB_MAKE = $(MAKE) $(foreach V,$(COMMAND_LINE_ARGS), $(if $($V),$V=$(shell echo
537537
UNSET_AND_MAKE = @bash -c '$(UNSET_VARS); $(SUB_MAKE) $$@' --
538538

539539
copyright.txt:
540-
$(OPENROAD_CMD) -exit
540+
$(OPENROAD_CMD) $(SCRIPTS_DIR)/noop.tcl
541541
touch copyright.txt
542542

543543
# Separate dependency checking and doing a step. This can
@@ -569,8 +569,8 @@ define do-step
569569
$(if $(5),$(5),$(RESULTS_DIR))/$(1)$(if $(4),$(4),.odb): $(2)
570570
$$(UNSET_AND_MAKE) do-$(1)
571571

572-
.PHONY: do-$(1) copyright.txt
573-
do-$(1):
572+
.PHONY: do-$(1)
573+
do-$(1): copyright.txt
574574
@echo Running $(3).tcl
575575
@(trap 'mv $(LOG_DIR)/$(1).tmp.log $(LOG_DIR)/$(1).log' EXIT; \
576576
$(OPENROAD_CMD) $(SCRIPTS_DIR)/noop.tcl 2>&1 >$(LOG_DIR)/$(1).tmp.log; \

flow/scripts/noop.tcl

Whitespace-only changes.

0 commit comments

Comments
 (0)