Makefile 297 B

12345678910111213
  1. SOURCE = book
  2. make:
  3. pdflatex $(SOURCE).tex -output-format=pdf
  4. pdflatex $(SOURCE).tex -output-format=pdf
  5. makeindex $(SOURCE)
  6. bibtex $(SOURCE)
  7. pdflatex $(SOURCE).tex -output-format=pdf
  8. make clean
  9. clean:
  10. rm -rf $(TARGET) *.class *.html *.log *.aux *.out *.ind *.idx *.ilg *.toc *.bbl *.blg