home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / doxg1211.zip / doxygen.zip / doc / latex / Makefile < prev    next >
Makefile  |  2001-11-20  |  584b  |  32 lines

  1. all: refman.dvi
  2.  
  3. ps: refman.ps
  4.  
  5. pdf: refman.pdf
  6.  
  7. ps_2on1: refman_2on1.ps
  8.  
  9. pdf_2on1: refman_2on1.pdf
  10.  
  11. refman.ps: refman.dvi
  12.     dvips -o refman.ps refman.dvi
  13.  
  14. refman.pdf: refman.ps
  15.     ps2pdf refman.ps refman.pdf
  16.  
  17. refman_2on1.ps: refman.ps
  18.     psnup -2 refman.ps >refman_2on1.ps
  19.  
  20. refman_2on1.pdf: refman_2on1.ps
  21.     ps2pdf refman_2on1.ps refman_2on1.pdf
  22.  
  23. refman.dvi: refman.tex doxygen.sty
  24.     echo "Running latex..."
  25.     latex refman.tex
  26.     echo "Running makeindex..."
  27.     makeindex refman.idx
  28.     echo "Rerunning latex...."
  29.     latex refman.tex
  30. clean:
  31.     rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out
  32.