forked from weaselab/conflict-set
10 lines
140 B
Makefile
10 lines
140 B
Makefile
.PHONY: clean
|
|
|
|
all: paper.pdf
|
|
|
|
paper.pdf: paper.tex $(wildcard *.tikz)
|
|
latexmk -pdf
|
|
|
|
clean:
|
|
xargs -I '{}' bash -c "rm -f {}" < .gitignore
|