Skip to content

Commit dbb2877

Browse files
committed
makefile: fix circular dependency warning
make dropped a superfluous circular dependency that was recently introduced by accident in the makefile. Code is now fixed. Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 8ee89c3 commit dbb2877

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flow/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ do-yosys-canonicalize: yosys-dependencies
512512
mkdir -p $(RESULTS_DIR) $(LOG_DIR) $(REPORTS_DIR) $(OBJECTS_DIR)
513513
($(TIME_CMD) $(YOSYS_CMD) $(YOSYS_FLAGS) -c $(SCRIPTS_DIR)/synth_canonicalize.tcl) 2>&1 | tee $(LOG_DIR)/1_1_yosys.log
514514

515-
$(RESULTS_DIR)/1_synth.rtlil: $(RESULTS_DIR)/1_1_yosys.v $(SDC_FILE_CLOCK_PERIOD)
515+
$(RESULTS_DIR)/1_synth.rtlil: $(SDC_FILE_CLOCK_PERIOD)
516516
$(UNSET_AND_MAKE) do-yosys-canonicalize
517517

518518
$(RESULTS_DIR)/1_1_yosys.v: $(RESULTS_DIR)/1_synth.rtlil $(SDC_FILE_CLOCK_PERIOD)

0 commit comments

Comments
 (0)