diff options
| author | Thomas Preud'homme <robotux@celest.fr> | 2012-11-07 14:54:43 +0100 |
|---|---|---|
| committer | Thomas Preud'homme <robotux@celest.fr> | 2012-11-07 14:56:37 +0100 |
| commit | b0f08ace945a41b94a3f94cca3f7f8bc6db4216f (patch) | |
| tree | 1c15e19be2df0bef4a10e9744e45ca5d71ce9197 | |
| parent | a7f010ee8a9ab03859759ebb0b502860778630f7 (diff) | |
| download | tinycc-b0f08ace945a41b94a3f94cca3f7f8bc6db4216f.tar.gz tinycc-b0f08ace945a41b94a3f94cca3f7f8bc6db4216f.tar.bz2 | |
Create a clean target for tests2/Makefile
the absence of a clean target in tests2/Makefile make the clean target
in the main Makefile fails to complete. This commit create such a target
which removes the only file created when tests pass successfully.
| -rw-r--r-- | tests2/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests2/Makefile b/tests2/Makefile index bf4c2cd..b6833bd 100644 --- a/tests2/Makefile +++ b/tests2/Makefile @@ -97,3 +97,6 @@ all: test test: $(TESTS) # vim: set expandtab ts=4 sw=4 sts=4 tw=80 : + +clean: + rm -vf fred.txt |
