blob: cb0c8e7bc196fab70372ec8bb1d0b5577b966067 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# this makefile is for my convenience beacuse my editor has a handy shortcut to
# run make
# aafigure must have been installed before running this makefile.
# clean up generated images, but only when the text file has been changed
README.html: README.txt *.py aafigure/*.py
rm -f aafigure-*.svg benford.svg
rst2html.py --traceback README.txt README.html
|