12 lines
158 B
Makefile
12 lines
158 B
Makefile
|
.PHONY: all clean
|
||
|
|
||
|
all: cheatsheet.pdf
|
||
|
|
||
|
clean:
|
||
|
rm -f cheatsheet.aux
|
||
|
rm -f cheatsheet.log
|
||
|
rm -f cheatsheet.pdf
|
||
|
|
||
|
cheatsheet.pdf: cheatsheet.tex
|
||
|
pdflatex $<
|