Skip to content

Commit

Permalink
make: add "clean" target
Browse files Browse the repository at this point in the history
  • Loading branch information
1st1 committed Apr 3, 2018
1 parent 059e23a commit f2a461f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile
@@ -1,4 +1,4 @@
.PHONY: rtest build test
.PHONY: rtest build test clean


build:
Expand All @@ -12,3 +12,10 @@ rtest:

env PYTHONPATH=. \
~/dev/venvs/36-debug/bin/python -m test.regrtest -R3:3 --testdir tests/

clean:
find . -name '*.pyc' | xargs rm
find . -name '*.so' | xargs rm
rm -rf ./build
rm -rf ./dist
rm -rf ./*.egg-info

0 comments on commit f2a461f

Please sign in to comment.