8 lines
164 B
Makefile
8 lines
164 B
Makefile
ALL: poster_portrait.pdf
|
|
|
|
%.pdf: %.tex Makefile
|
|
pdflatex --enable-write18 $< && pdflatex $< && pdflatex $<
|
|
|
|
clean:
|
|
rm -f *.aux *.bbl *.blg *.log poster_*.pdf
|