mirror of https://github.com/VLSIDA/OpenRAM.git
Adjust makefiles to continue on error. Turned on DRC/LVS to check for errors.
This commit is contained in:
parent
a164a14b3f
commit
132c91d68f
|
|
@ -2,11 +2,12 @@ SUBDIRS := $(wildcard */.)
|
||||||
SUBDIRSCLEAN=$(addsuffix clean,$(SUBDIRS))
|
SUBDIRSCLEAN=$(addsuffix clean,$(SUBDIRS))
|
||||||
|
|
||||||
MAKEFLAGS += -j 2
|
MAKEFLAGS += -j 2
|
||||||
|
OPTS = -k
|
||||||
|
|
||||||
all: $(SUBDIRS)
|
all: $(SUBDIRS)
|
||||||
|
|
||||||
$(SUBDIRS):
|
$(SUBDIRS):
|
||||||
$(MAKE) -C $@
|
$(MAKE) $(OPTS) -C $@
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
for dir in $(SUBDIRS); do \
|
for dir in $(SUBDIRS); do \
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ all : $(SPICES)
|
||||||
# Characterize and perform DRC/LVS
|
# Characterize and perform DRC/LVS
|
||||||
OPTS = -c
|
OPTS = -c
|
||||||
# Do not characterize or perform DRC/LVS
|
# Do not characterize or perform DRC/LVS
|
||||||
OPTS += -n
|
#OPTS += -n
|
||||||
# Verbosity
|
# Verbosity
|
||||||
OPTS += -v
|
OPTS += -v
|
||||||
%.sp : %.py
|
%.sp : %.py
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ all : $(SPICES)
|
||||||
# Characterize and perform DRC/LVS
|
# Characterize and perform DRC/LVS
|
||||||
OPTS = -c
|
OPTS = -c
|
||||||
# Do not characterize or perform DRC/LVS
|
# Do not characterize or perform DRC/LVS
|
||||||
OPTS += -n
|
#OPTS += -n
|
||||||
# Verbosity
|
# Verbosity
|
||||||
OPTS += -v
|
OPTS += -v
|
||||||
%.sp : %.py
|
%.sp : %.py
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue