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