1
0
Fork 0
mirror of https://github.com/Oreolek/gamebookformat.git synced 2024-07-01 06:05:11 +03:00
gamebookformat/Makefile

35 lines
612 B
Makefile
Raw Normal View History

all: test.rtf test.pdf test.html test.debug test.png
%.rtf: %.gamebook formatgamebook.py
./formatgamebook.py $< $@
%.html: %.gamebook formatgamebook.py
./formatgamebook.py $< $@
%.tex: %.gamebook formatgamebook.py
./formatgamebook.py $< $@
%.dot: %.gamebook formatgamebook.py
./formatgamebook.py $< $@
%.debug: %.gamebook formatgamebook.py
./formatgamebook.py $< $@
%.pdf: %.tex
pdflatex $< && pdflatex $<
%.png: %.dot
dot -Tpng $< > $@
clean:
$(RM) *.rtf *.html *.tex *.debug *.pdf *~ *.pyc *.dot \
*.aux *.toc *.png
2013-06-04 01:02:02 +03:00
fixmes:
grep FIXME *.py
.PHONY: all clean fixmes
.PRECIOUS: %.tex %.dot