123456789101112131415 |
- all: gfs.pdf
- gfs.pdf: gfs.tex
- pdflatex --shell-escape gfs.tex
- clean:
- rm *.bbl *.aux *.dvi *.blg *.log *.gnuplot *.table
- watch:
- -make
- @echo "[watching *.tex for recompilation]"
- # for portability, use watchmedo -- pip install watchmedo
- @watchmedo shell-command --patterns="*.tex;" --recursive \
- --command='make' .
|