celigo/Makefile

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