1
0
mirror of https://github.com/ipfs/ipfs synced 2024-09-20 04:01:46 +02:00
ipfs/paper/Makefile
Juan Batiz-Benet db640ef2c9 tex instruments
2014-02-10 19:03:41 -08:00

16 lines
291 B
Makefile

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