1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00

Add make clean.

This commit is contained in:
William Ting 2016-05-03 23:10:57 -07:00
parent a32f237043
commit 9241b4b20f

View File

@ -1,7 +1,7 @@
VERSION = $(shell grep -oE "[0-9]+\.[0-9]+\.[0-9]+" bin/autojump) VERSION = $(shell grep -oE "[0-9]+\.[0-9]+\.[0-9]+" bin/autojump)
TAGNAME = release-v$(VERSION) TAGNAME = release-v$(VERSION)
.PHONY: docs install uninstall lint tar test .PHONY: clean docs install uninstall pre-commit lint tar test
install: install:
./install.py ./install.py
@ -45,3 +45,8 @@ test: pre-commit
test-fast: pre-commit test-fast: pre-commit
@find . -type f -iname '*.py[co]' -delete @find . -type f -iname '*.py[co]' -delete
tox -e py27 tox -e py27
clean:
@find . -type f -iname '*.py[co]' -delete
@find . -type d -iname '__pycache__' -delete
@rm -fr .tox