summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2011-11-08 11:26:27 +0100
committermathieui <mathieui@mathieui.net>2011-11-08 11:26:27 +0100
commit8fed41cd088dfdd43e0848d54234a0791d50dee6 (patch)
treec5bc2a1a88ead30f8216ecc51c6af70dad07ba88 /Makefile
parent8eebea3ccc4557af079d7a9a5a1a3bc2ed911e3a (diff)
downloadpoezio-8fed41cd088dfdd43e0848d54234a0791d50dee6.tar.gz
poezio-8fed41cd088dfdd43e0848d54234a0791d50dee6.tar.bz2
poezio-8fed41cd088dfdd43e0848d54234a0791d50dee6.tar.xz
poezio-8fed41cd088dfdd43e0848d54234a0791d50dee6.zip
make clean also cleans the html files generated by asciidoc
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7e71edb1..1fd424ad 100644
--- a/Makefile
+++ b/Makefile
@@ -12,6 +12,7 @@ clean:
find ./ -name \*.pyc -delete
find ./ -name \*~ -delete
find ./ -name "#*#" -delete
+ find ./ -name "*.html" -delete
install:
mkdir -p $(DESTDIR)$(prefix)
@@ -39,4 +40,4 @@ doc:
pot:
xgettext src/*.py --from-code=utf-8 --keyword=_ -o locale/poezio.pot
-.PHONY : doc \ No newline at end of file
+.PHONY : doc