From: Avery Pennarun Date: Fri, 1 May 2009 01:59:51 +0000 (-0400) Subject: Better 'make clean' targets. X-Git-Url: http://rtime.felk.cvut.cz/gitweb/wvtest.git/commitdiff_plain/de144fc6ee71aaf3413c35fd27744270b71e076d?ds=sidebyside Better 'make clean' targets. --- diff --git a/Makefile b/Makefile index 6d238d2..02c5fe9 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ test: ./wvtestrunner.pl $(MAKE) runtests clean:: + rm -f *~ .*~ make -C python clean make -C dotnet clean make -C cpp clean diff --git a/cpp/Makefile b/cpp/Makefile index 5d8b6a8..6e91241 100644 --- a/cpp/Makefile +++ b/cpp/Makefile @@ -13,4 +13,4 @@ test: ../wvtestrunner.pl $(MAKE) runtests clean:: - rm -f *~ *.o t/*.o t/wvtest + rm -f *~ t/*~ *.o t/*.o t/wvtest diff --git a/dotnet/Makefile b/dotnet/Makefile index 77a8663..2a5be01 100644 --- a/dotnet/Makefile +++ b/dotnet/Makefile @@ -16,5 +16,5 @@ test: ../wvtestrunner.pl $(MAKE) runtests clean:: - rm -f *~ t/*~ *.E t/*.E *.d t/*.d t/*.exe t/*.mdb + rm -f *~ t/*~ .*~ *.E t/*.E *.d t/*.d t/*.exe t/*.mdb