mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
11 lines
343 B
Makefile
11 lines
343 B
Makefile
|
SOURCE = size
|
||
|
|
||
|
make:
|
||
|
pdflatex $(SOURCE).tex -output-format=pdf # first run for the aux file
|
||
|
makeindex $(SOURCE) # now the index is generated
|
||
|
pdflatex $(SOURCE).tex -output-format=pdf # pdf with index :-)
|
||
|
make clean
|
||
|
|
||
|
clean:
|
||
|
rm -rf $(TARGET) *.class *.html *.log *.aux *.out *.ind *.idx *.ilg *.toc *.bbl *.blg *.pyg
|