diff options
author | Brian Cully <bjc@kublai.com> | 2012-02-07 08:14:20 -0500 |
---|---|---|
committer | Brian Cully <github.20.shmit@spamgourmet.com> | 2012-02-07 08:14:20 -0500 |
commit | 87cf09db6752b0cd24ab2080834ca2977c667f0a (patch) | |
tree | d4d941c0396164e812c9e92b28536168c7d32fc5 | |
parent | 287435cc298e0be713ba3d5801dea5115054534a (diff) | |
download | mysqlerl-87cf09db6752b0cd24ab2080834ca2977c667f0a.tar.gz mysqlerl-87cf09db6752b0cd24ab2080834ca2977c667f0a.zip |
Add clean target to test makefile.
-rw-r--r-- | test/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 269204d..4bb83ab 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,4 +1,10 @@ -.PHONY: test +.PHONY: test clean test: ct_run -pa -dir . -config database.conf + +clean: + rm -rf *.html + rm -rf *.css + rm -rf ct_run.ct* + rm -rf variables-ct* |