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.

25 lines
437 B

25 years ago
  1. # This is the developer's makefile, not the user's makefile.
  2. # Don't use it unless you know exactly what you do!
  3. # Some important programs:
  4. SHELL = /bin/sh
  5. MAKE = make
  6. RM = rm -f
  7. LATEX = latex
  8. DVIPS = dvips -D600
  9. all : diag_rational.ps tchebychev.ps hermite.ps legendre.ps laguerre.ps
  10. # %.tex : %.lyx
  11. %.dvi : %.tex
  12. $(LATEX) $<
  13. $(RM) $(patsubst %.tex,%.aux,$<)
  14. $(RM) $(patsubst %.tex,%.log,$<)
  15. %.ps : %.dvi
  16. $(DVIPS) -o $@ $<