minor makefile fix for 'make clean'

This commit is contained in:
Samuel Abels
2017-03-15 15:35:58 +01:00
parent ae2249d96e
commit 2e81db6b7c

View File

@ -10,8 +10,8 @@ DISTDIR=/pub/code/releases/spiff_workflow
###################################################################
.PHONY : clean
clean:
find . -name "*.pyc" -o -name "*.pyo" | xargs -n1 rm -f
find . -name "*.egg-info" | xargs -n1 rm -r
find . -name "*.pyc" -o -name "*.pyo" | xargs -rn1 rm -f
find . -name "*.egg-info" | xargs -rn1 rm -r
rm -Rf build
cd doc; make clean