From: Aneurin Price Date: Wed, 1 Jun 2011 16:23:33 +0000 (+0100) Subject: make clean: Remove dlls from child directories X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=bfa900dd3681962ce9502a3ce6d3f3d054af6e6a;p=packages%2Fb%2Fbup.git make clean: Remove dlls from child directories Fix the 'clean' makefile rule to remove .dll files from subdirectories, to match .so files. Signed-off-by: Aneurin Price --- diff --git a/Makefile b/Makefile index e04235d..b1154c1 100644 --- a/Makefile +++ b/Makefile @@ -149,7 +149,7 @@ import-docs: Documentation/clean # tgit.py plays with permissions on lib/bup/t/pybuptest.tmp, so we should # ensure that we can delete the directory before doing it. clean: Documentation/clean - rm -f *.o lib/*/*.o *.so lib/*/*.so *.dll *.exe \ + rm -f *.o lib/*/*.o *.so lib/*/*.so *.dll lib/*/*.dll *.exe \ .*~ *~ */*~ lib/*/*~ lib/*/*/*~ \ *.pyc */*.pyc lib/*/*.pyc lib/*/*/*.pyc \ bup bup-* cmd/bup-* lib/bup/_version.py randomgen memtest \