Fixed Makefile and .gitignore to clean harder...
authorHarvie <tomas@mudrunka.cz>
Wed, 9 Jun 2010 12:48:47 +0000 (14:48 +0200)
committerHarvie <tomas@mudrunka.cz>
Wed, 9 Jun 2010 12:48:47 +0000 (14:48 +0200)
.gitignore
Makefile

index 520b68eed2a3ea3e716155dd1bcab987cb787263..aa20365757ebe05f30b6f946bec5b4f9d4ef832a 100644 (file)
@@ -1 +1,14 @@
+*/pkg/
+*/src/
+
+*.part
+*.tar
+*.gz
+*.xz
+*.bz
+*.bz2
+*.tgz
+*.zip
+*.rar
+
 arch-games
index b8288d1bb50b93f5f81941efac4da223f07db068..542d4da8d79adaf3515ad635b2c918240725f823 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,6 @@ help:
        # - make clean
        #
 clean:
-       rm -rf */pkg/
-       rm -rf */src/
-       find . -regextype egrep -iregex '.*\.(part|gz|xz|bz|bz2|zip|rar)$$' -print0 | xargs -0 rm -f
+       rm -rfv */pkg/
+       rm -rfv */src/
+       find . -regextype egrep -iregex '.*\.(part|tar|gz|xz|bz|bz2|tgz|zip|rar)$$' -print0 | xargs -0 rm -fv
This page took 0.134097 seconds and 4 git commands to generate.