Makefile: improved clean rule

This commit is contained in:
Christopher Roy Bratusek 2012-11-10 18:14:54 +01:00
parent 4e65f5d096
commit a10009f114
2 changed files with 4 additions and 2 deletions

View File

@ -3,7 +3,7 @@
* install translations * install translations
* remove some unused WiiPy stuff, Qwad now runs fine on Python3 * remove some unused WiiPy stuff, Qwad now runs fine on Python3
* added IOS62 and Shop v21 * added IOS62 and Shop v21
* fixed a bug in Makefile * fixed a bug in Makefile, improved clean rule
-- 0.4 -- -- 0.4 --
* add new IOS to downloader * add new IOS to downloader

View File

@ -1,7 +1,9 @@
all: all:
clean: clean:
rm -fv **/*.pyc rm -rf GUI/__pycache__/
rm -f *.pyc
rm -f **/*.pyc
install: install:
mkdir -p $(DESTDIR)/usr/share/Qwad/i18n mkdir -p $(DESTDIR)/usr/share/Qwad/i18n