Skip to content

Commit d7bc323

Browse files
committed
makefile: fix gaffe in RTLMP_FLOW update
Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 5e1c025 commit d7bc323

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

flow/Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -658,12 +658,12 @@ endif
658658
# STEP 3: Timing Driven Mixed Sized Placement
659659
#-------------------------------------------------------------------------------
660660
ifneq ($(MACRO_PLACEMENT)$(MACRO_PLACEMENT_TCL),)
661-
RUN_TDMS:=1
661+
SKIP_TDMS:=1
662662
endif
663-
ifeq ($(RTLMP_FLOW), 1)
664-
RUN_TDMS:=1
665-
endif
666-
ifeq ($(RUN_TDMS), 1)
663+
ifneq ($(RTLMP_FLOW), 1)
664+
SKIP_TDMS:=1
665+
endif
666+
ifneq ($(SKIP_TDMS), 1)
667667
$(eval $(call do-step,2_3_floorplan_tdms,$(RESULTS_DIR)/2_2_floorplan_io.odb $(RESULTS_DIR)/1_synth.v $(RESULTS_DIR)/1_synth.sdc $(LIB_FILES),tdms_place))
668668
else
669669
$(eval $(call do-copy,2_3_floorplan_tdms,2_2_floorplan_io.odb,$(RESULTS_DIR)/1_synth.v $(RESULTS_DIR)/1_synth.sdc $(LIB_FILES)))

0 commit comments

Comments
 (0)