aboutsummaryrefslogtreecommitdiff
path: root/test/module.mk
diff options
context:
space:
mode:
authorMax Horn2006-03-29 11:05:38 +0000
committerMax Horn2006-03-29 11:05:38 +0000
commit7bf3437c1cff17f49db42872ebe389c1cccd5a8c (patch)
tree2c74181346eac6ec0c7540117edef7458a0f46b0 /test/module.mk
parent4d4c29787eaee56904661df0fc183bd7b614609d (diff)
downloadscummvm-rg350-7bf3437c1cff17f49db42872ebe389c1cccd5a8c.tar.gz
scummvm-rg350-7bf3437c1cff17f49db42872ebe389c1cccd5a8c.tar.bz2
scummvm-rg350-7bf3437c1cff17f49db42872ebe389c1cccd5a8c.zip
Cleanup test code in our 'clean' target
svn-id: r21494
Diffstat (limited to 'test/module.mk')
-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