add notecard makefile and dist.
This commit is contained in:
parent
d06b8d5e23
commit
62036998a8
Binary file not shown.
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue