mirror of https://github.com/VLSIDA/OpenRAM.git
Fixed issues with makefile with removal of prerequisite
This commit is contained in:
parent
4da9d3beaf
commit
35ce838c8a
|
|
@ -92,9 +92,10 @@ model: $(STAMPS)
|
||||||
python3 $(OPENRAM_HOME)/model_data_util.py $(SIM_DIR) $(CSV_DIR)
|
python3 $(OPENRAM_HOME)/model_data_util.py $(SIM_DIR) $(CSV_DIR)
|
||||||
|
|
||||||
%.ok:
|
%.ok:
|
||||||
$(eval bname=$(basename $(notdir $<)))
|
$(eval bname=$(basename $(notdir $@)))
|
||||||
|
$(eval config_path=$(CONFIG_DIR)/$(addsuffix .py, $(notdir $(basename $@))))
|
||||||
mkdir -p $(SIM_DIR)/$(bname)
|
mkdir -p $(SIM_DIR)/$(bname)
|
||||||
-python3 $(OPENRAM_HOME)/openram.py $(OPTS) -p $(SIM_DIR)/$(bname) -o $(bname) -t $(TECH) $< 2>&1 > /dev/null
|
-python3 $(OPENRAM_HOME)/openram.py $(OPTS) -p $(SIM_DIR)/$(bname) -o $(bname) -t $(TECH) $(config_path) 2>&1 > /dev/null
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
clean_model:
|
clean_model:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue