Makefile 461 B

123456789101112
  1. SOURCE = nomenclature
  2. make:
  3. pdflatex $(SOURCE).tex -output-format=pdf # first run for the aux file
  4. makeindex $(SOURCE) # now the index is generated
  5. makeindex $(SOURCE).nlo -s style/nomencl.ist -o $(SOURCE).nls #now the nomenclature is generated
  6. pdflatex $(SOURCE).tex -output-format=pdf # pdf with index :-)
  7. make clean
  8. clean:
  9. rm -rf $(TARGET) *.class *.html *.log *.aux *.out *.ind *.idx *.ilg *.toc *.bbl *.blg *.pyg *.nls *.nlo