From d3f5546e65b84a8a680737f6012345634fbc34d0 Mon Sep 17 00:00:00 2001 From: Eric Paniagua Date: Sat, 5 Sep 2020 14:59:29 -0700 Subject: [PATCH] Fix one building/cleaning bug in testing/Makefile. Signed-off-by: Eric Paniagua --- testing/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/testing/Makefile b/testing/Makefile index 65fd8294..fffb10d9 100644 --- a/testing/Makefile +++ b/testing/Makefile @@ -1,11 +1,10 @@ COMMON_LIB_DIR?=${PWD}/lib TEST_DIRS=$(shell dirname $(wildcard */Makefile)) -DIRS=googletest hello-simulator kaleidoscope common +DIRS=googletest hello-simulator kaleidoscope common issue_840 CLEANDIRS = $(DIRS:%=clean-%) .PHONY: subdirs $(CLEANDIRS) -.PHONY: subdirs $(DIRS) clean: googletest/Makefile $(CLEANDIRS) rm -rf "$(COMMON_LIB_DIR)" @@ -28,6 +27,9 @@ common: hello-simulator: @: +Makefile: + @: + %: common googletest cd "$@" && $(MAKE)