13 lines
148 B
Makefile
13 lines
148 B
Makefile
|
|
.PHONY: all clean clean-out
|
|
all: thesis.pdf clean-out
|
|
|
|
%.pdf: %.tex $(wildcard src/*)
|
|
latexmk -pdf $<
|
|
|
|
clean:
|
|
latexmk -C
|
|
|
|
clean-out:
|
|
latexmk -c
|