add notecard makefile and dist.

This commit is contained in:
matt 2023-06-08 08:36:25 -07:00
parent d06b8d5e23
commit 62036998a8
2 changed files with 20 additions and 3 deletions

BIN
dist/final_notecard.pdf vendored Normal file

Binary file not shown.

View File

@ -1,3 +1,20 @@
paper.pdf: paper.tex .PHONY:watch
pdflatex $^ -o $@ PAPER=acm_template
evince $@
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