celigo/Makefile
2016-05-25 10:06:05 -04:00

15 lines
197 B
Makefile

clean:
find celigo -name \*.pyc -delete
find celigo -name \*__pycache__ -delete
rm -rf build-*
rm -rf build
rm -rf *egg*
rm -rf dist
tox:
./make_tox.sh
test-all: tox
all: clean test-all