12 lines
97 B
Makefile
12 lines
97 B
Makefile
|
PDF = pitch.pdf
|
||
|
|
||
|
all: $(PDF)
|
||
|
|
||
|
%.pdf: %.tex
|
||
|
pdflatex "$*"
|
||
|
|
||
|
clean:
|
||
|
git clean -fdx
|
||
|
|
||
|
.PHONY: clean
|