- all:
- @echo "Targets: clean dist html"
- clean:
- @find -name "core" -exec rm -vf {} ;
- @find -name "*~" -exec rm -vf {} ;
- @find -name "#*#" -exec rm -vf {} ;
- @find -name "*.pyc" -exec rm -vf {} ;
- @find -name "*.pyo" -exec rm -vf {} ;
- @rm logs/*
- dist: clean
- @./makedist
- html:
- @python makehtml.py > index.html
- @cat index.html