9 lines
87 B
Makefile
9 lines
87 B
Makefile
all: clean pdf
|
|
|
|
pdf:
|
|
pdflatex test.tex
|
|
|
|
clean:
|
|
rm -f test.aux
|
|
|
|
.PHONY: all pdf clean
|