mirror of https://github.com/VLSIDA/OpenRAM.git
Removed config file as a prereq in makefile due to errors. Changes in config file will not result in a re-simming of that configuration now and will require a clean.
This commit is contained in:
parent
ccfda16ab2
commit
4da9d3beaf
|
|
@ -1,4 +1,4 @@
|
||||||
TECH = freepdk45
|
TECH = scn4m_subm
|
||||||
CUR_DIR = $(shell pwd)
|
CUR_DIR = $(shell pwd)
|
||||||
TEST_DIR = ${CUR_DIR}/tests
|
TEST_DIR = ${CUR_DIR}/tests
|
||||||
|
|
||||||
|
|
@ -83,7 +83,7 @@ OPTS += -n
|
||||||
# Verbosity
|
# Verbosity
|
||||||
#OPTS += -v
|
#OPTS += -v
|
||||||
# Spice
|
# Spice
|
||||||
OPTS += -s hspice
|
#OPTS += -s hspice
|
||||||
|
|
||||||
.PHONY: model
|
.PHONY: model
|
||||||
|
|
||||||
|
|
@ -91,7 +91,7 @@ model: $(STAMPS)
|
||||||
mkdir -p $(CSV_DIR)
|
mkdir -p $(CSV_DIR)
|
||||||
python3 $(OPENRAM_HOME)/model_data_util.py $(SIM_DIR) $(CSV_DIR)
|
python3 $(OPENRAM_HOME)/model_data_util.py $(SIM_DIR) $(CSV_DIR)
|
||||||
|
|
||||||
%.ok: $(DIR)/$(addsuffix .py, $(notdir %))
|
%.ok:
|
||||||
$(eval bname=$(basename $(notdir $<)))
|
$(eval bname=$(basename $(notdir $<)))
|
||||||
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) $< 2>&1 > /dev/null
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue