2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/documents/index/Makefile

11 lines
344 B
Makefile
Raw Normal View History

2012-09-28 13:36:23 +02:00
SOURCE = index
make:
2012-09-28 13:45:06 +02:00
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 :-)
2012-09-28 13:36:23 +02:00
make clean
clean:
rm -rf $(TARGET) *.class *.html *.log *.aux *.out *.ind *.idx *.ilg *.toc *.bbl *.blg *.pyg