diff options
author | Michal Nowikowski <godfryd@gmail.com> | 2014-07-26 14:02:15 +0200 |
---|---|---|
committer | Michal Nowikowski <godfryd@gmail.com> | 2014-07-26 14:02:15 +0200 |
commit | b3809a55b9a6dbc62d4fe059b2104c2b3b33ba66 (patch) | |
tree | 35f88634a8db55e07f5113c41474864fec73143d /Makefile | |
parent | 6dd4e111381f9b04659f27632b9755980e2dee23 (diff) | |
download | pylint-git-b3809a55b9a6dbc62d4fe059b2104c2b3b33ba66.tar.gz |
Updated help and added clobber target to Makefile.
--HG--
branch : make
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -13,7 +13,8 @@ help: @echo "Please use \`make <target>' where <target> is one of" @echo " tests to run whole test suit of PyLint" @echo " docs to generate all docs including man pages and exemplary pylintrc" - @echo " deb to build debian package" + @echo " deb to build debian .deb package" + @echo " sdist to build source .tar.gz package" @echo " lint to check Pylint sources with itself" @echo " all to run all targets" @@ -59,6 +60,10 @@ clean: /usr/bin/debuild /usr/bin/dh_pysupport debuild clean rm -rf $(PKG_DEB) ../pylint_*.changes ../pylint_*.build +clobber: + hg purge -p + hg purge -a + /usr/bin/debuild: sudo apt-get -y --force-yes install devscripts @@ -67,4 +72,4 @@ clean: /usr/bin/debuild /usr/bin/dh_pysupport all: clean lint tests docs sdist deb -.PHONY: help tests docs deb sdist lint clean all +.PHONY: help tests docs deb sdist lint clean clobber all |