blob: 5c13c707f533cbe5409ce2eb6ec6afa037d027af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
PYTHON=python2
all:
$(PYTHON) writeHTML.py
clean:
rm -f *~ */*~ *.pyc *.pyo
update:
$(PYTHON) updateCache.py
veryclean: clean
rm -f author.html date.html topic.html bibtex.html tmp.bib
|