10 lines
123 B
Makefile
10 lines
123 B
Makefile
|
.PHONY : all
|
||
|
|
||
|
all: 30-anos-gnu.pdf
|
||
|
|
||
|
%.pdf: %.tex
|
||
|
pdflatex $< ; pdflatex $<
|
||
|
|
||
|
clean:
|
||
|
rm -f *.{aux,log,nav,out,pdf,snm,toc}
|