aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/module.mk7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/module.mk b/test/module.mk
index 028335c223..2a813c7869 100644
--- a/test/module.mk
+++ b/test/module.mk
@@ -26,4 +26,9 @@ test/runner: test/runner.cpp $(TEST_LIBS)
test/runner.cpp: $(TESTS)
test/cxxtest/cxxtestgen.py $(TEST_FLAGS) -o $@ $+
-.PHONY: test
+
+clean: clean-test
+clean-test:
+ -$(RM) test/runner.cpp test/runner
+
+.PHONY: test clean-test