aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile22
1 files changed, 12 insertions, 10 deletions
diff --git a/test/Makefile b/test/Makefile
index 52fada86c..89855d082 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -2,6 +2,8 @@
2ROOT = .. 2ROOT = ..
3-include $(ROOT)/config.mk 3-include $(ROOT)/config.mk
4 4
5RM ?= rm -f
6
5TESTS=$(patsubst %/,%,$(wildcard */)) 7TESTS=$(patsubst %/,%,$(wildcard */))
6 8
7.PHONY: $(TESTS) 9.PHONY: $(TESTS)
@@ -11,14 +13,14 @@ $(TESTS):
11 13
12.PHONY: clean 14.PHONY: clean
13clean: 15clean:
14 for test in $(TESTS); do rm -f "$$test/$$test.log"; done 16 for test in $(TESTS); do $(RM) "$$test/$$test.log"; done
15 rm -fr environment/-testdir 17 $(RM) -r environment/-testdir
16 rm -f environment/index.html* 18 $(RM) environment/index.html*
17 rm -f environment/logfile* 19 $(RM) environment/logfile*
18 rm -f environment/wget-log* 20 $(RM) environment/wget-log*
19 rm -f sysutils/firejail_t* 21 $(RM) sysutils/firejail_t*
20 rm -f utils/firejail-test-file* 22 $(RM) utils/firejail-test-file*
21 rm -f utils/index.html* 23 $(RM) utils/index.html*
22 rm -f utils/lstesting 24 $(RM) utils/lstesting
23 rm -f utils/wget-log 25 $(RM) utils/wget-log
24 cd compile && (./compile.sh --clean || true) 26 cd compile && (./compile.sh --clean || true)