Skip to content

Commit

Permalink
makefile: fix gaffe in RTLMP_FLOW update
Browse files Browse the repository at this point in the history
Signed-off-by: Øyvind Harboe <[email protected]>
  • Loading branch information
oharboe committed Jul 31, 2024
1 parent 5e1c025 commit d7bc323
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions flow/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -658,12 +658,12 @@ endif
# STEP 3: Timing Driven Mixed Sized Placement
#-------------------------------------------------------------------------------
ifneq ($(MACRO_PLACEMENT)$(MACRO_PLACEMENT_TCL),)
RUN_TDMS:=1
SKIP_TDMS:=1
endif
ifeq ($(RTLMP_FLOW), 1)
RUN_TDMS:=1
endif
ifeq ($(RUN_TDMS), 1)
ifneq ($(RTLMP_FLOW), 1)
SKIP_TDMS:=1
endif
ifneq ($(SKIP_TDMS), 1)
$(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))
else
$(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)))
Expand Down

0 comments on commit d7bc323

Please sign in to comment.