diff --git a/dist/final_notecard.pdf b/dist/final_notecard.pdf new file mode 100644 index 0000000..e2d6b47 Binary files /dev/null and b/dist/final_notecard.pdf differ diff --git a/docs/Makefile b/docs/Makefile index a63e81e..ba4d961 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,3 +1,20 @@ -paper.pdf: paper.tex - pdflatex $^ -o $@ - evince $@ +.PHONY:watch +PAPER=acm_template + +all: $(PAPER).pdf + +%.pdf: %.tex + pdflatex $< + bibtex $*||true + pdflatex $< + pdflatex $< + +watch: + while true; do \ + inotifywait -qr -e modify -e create -e delete -e move ./; \ + make $(PAPER).pdf; \ + done + + +clean: + rm -f *.aux *.log *.out *.bbl *.blg *.dvi