summaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/Makefile b/tests/Makefile
index f7a97a8..8c9ab42 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -7,15 +7,14 @@ MAKEFILES = $(patsubst %.pro,%.make,$(wildcard *.pro))
tests: all
find build -type f -name 'test-*' -exec sh -c "if test -x {}; then {}; fi" \;
-clean: $(MAKEFILES)
- for makefile in $(MAKEFILES); do make -f "$$makefile" clean; done
+clean:
$(RM) $(MAKEFILES)
$(RM) -r build
all: $(MAKEFILES)
- for makefile in $(MAKEFILES); do make -f "$$makefile" all; done
+ for makefile in $(MAKEFILES); do $(MAKE) -f "$$makefile" all; done
install: $(MAKEFILES)
- for makefile in $(MAKEFILES); do make -f "$$makefile" install; done
+ for makefile in $(MAKEFILES); do $(MAKE) -f "$$makefile" install; done
.phony: install tests all clean