From 132c91d68f11197d343cb4e451b3327273603075 Mon Sep 17 00:00:00 2001 From: mguthaus Date: Fri, 23 Feb 2018 15:46:13 -0800 Subject: [PATCH] Adjust makefiles to continue on error. Turned on DRC/LVS to check for errors. --- lib/Makefile | 3 ++- lib/freepdk45/Makefile | 2 +- lib/scn3me_subm/Makefile | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/Makefile b/lib/Makefile index 7b8115a5..e694a2f6 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -2,11 +2,12 @@ SUBDIRS := $(wildcard */.) SUBDIRSCLEAN=$(addsuffix clean,$(SUBDIRS)) MAKEFLAGS += -j 2 +OPTS = -k all: $(SUBDIRS) $(SUBDIRS): - $(MAKE) -C $@ + $(MAKE) $(OPTS) -C $@ clean: for dir in $(SUBDIRS); do \ diff --git a/lib/freepdk45/Makefile b/lib/freepdk45/Makefile index 65f6242f..cf883d4c 100644 --- a/lib/freepdk45/Makefile +++ b/lib/freepdk45/Makefile @@ -14,7 +14,7 @@ all : $(SPICES) # Characterize and perform DRC/LVS OPTS = -c # Do not characterize or perform DRC/LVS -OPTS += -n +#OPTS += -n # Verbosity OPTS += -v %.sp : %.py diff --git a/lib/scn3me_subm/Makefile b/lib/scn3me_subm/Makefile index ff66e7f8..1b266e3d 100644 --- a/lib/scn3me_subm/Makefile +++ b/lib/scn3me_subm/Makefile @@ -14,7 +14,7 @@ all : $(SPICES) # Characterize and perform DRC/LVS OPTS = -c # Do not characterize or perform DRC/LVS -OPTS += -n +#OPTS += -n # Verbosity OPTS += -v %.sp : %.py