You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
848 B

25 years ago
  1. # How to use the Makefile
  2. #
  3. # LATEX, BIBTEX, DVIPS, RM, GZIP and UUENCODE are configuration
  4. # variables which you can change to point to the appropriate
  5. # location on your system. You do not need to change anything else.
  6. #
  7. LATEX=latex
  8. BIBTEX=bibtex
  9. DVIPS=dvips -D600
  10. RM=rm -f
  11. GZIP=gzip
  12. UUENCODE=uuencode
  13. # `make' creates binsplit.dvi and binsplit.ps
  14. #
  15. all: binsplit.dvi binsplit.ps
  16. # `make binsplit.dvi' creates binsplit.dvi
  17. #
  18. binsplit.dvi: binsplit.tex binsplit.bib
  19. $(LATEX) binsplit.tex
  20. $(BIBTEX) binsplit
  21. $(LATEX) binsplit.tex
  22. $(LATEX) binsplit.tex
  23. # `make binsplit.ps' creates binsplit.ps
  24. #
  25. binsplit.ps: binsplit.dvi
  26. $(DVIPS) -o binsplit.ps binsplit.dvi
  27. # `make clean' removes all redundant files produced by LaTeX and BibTeX
  28. #
  29. clean:
  30. -$(RM) *.aux *.log *.toc *.idx *.lof *.lot *.bbl *.blg
  31. # Do not type the quotes!
  32. #
  33. # End of Help