add notecard makefile and dist.
This commit is contained in:
BIN
dist/final_notecard.pdf
vendored
Normal file
BIN
dist/final_notecard.pdf
vendored
Normal file
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
|
||||||
|
|||||||
Reference in New Issue
Block a user