blob: 8b80dff89fe99fa7ae45b7ec2300caf49ce74a4f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
SRC=$(wildcard *.tex)
PDF=$(SRC:.tex=.pdf)
all: $(PDF)
%.pdf: %.tex
latexmk -outdir=build --pdf $<
latexmk -outdir=build -c
write-good $< || true
clean: ; latexmk -outdir=build -C; rm -f build/*.bbl
|