Adjust makefiles to continue on error. Turned on DRC/LVS to check for errors.

This commit is contained in:
mguthaus
2018-02-23 15:46:13 -08:00
parent a164a14b3f
commit 132c91d68f
3 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -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 \