10 lines
133 B
Makefile
10 lines
133 B
Makefile
|
.PHONY : all
|
||
|
|
||
|
all: quem-tem-medo-hackers.pdf
|
||
|
|
||
|
%.pdf: %.tex
|
||
|
pdflatex $< ; pdflatex $<
|
||
|
|
||
|
clean:
|
||
|
rm -f *.{aux,log,nav,out,pdf,snm,toc}
|