home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fonts 1 / freshfonts1.bin / programs / amiga / pastex / macros / latex2e / base / makefile < prev    next >
Makefile  |  1994-06-03  |  1KB  |  49 lines

  1.  
  2. ########################################################################
  3. #   Start of customization section
  4. ########################################################################
  5.  
  6. # The directory where all runtime files reside
  7. DESTDIR=
  8.  
  9. # The directory where the format files reside
  10. FORMATDIR=
  11.  
  12. ######### Edit the following only if you want to place *.fd to a
  13. ######### different place.
  14.  
  15. # The directory where the .fd files reside:
  16. FDDIR=$(DESTDIR)
  17.  
  18. # The directory where class and package files reside:
  19. INPUTDIR=$(DESTDIR)
  20.  
  21. ########################################################################
  22. #   End of customization section
  23. ########################################################################
  24.  
  25. FORMAT=latex
  26.  
  27.  
  28. default:
  29.     @if test ! "${DESTDIR}" -o ! "$(FORMATDIR)" ; then \
  30.       echo "Destination directories not set." ; \
  31.       echo "Please edit the Makefile first!" ; \
  32.       exit 1 ; \
  33.     else \
  34.       make format ; \
  35.     fi
  36.  
  37.  
  38. format:    $(FORMAT).fmt
  39.  
  40. $(FORMAT).fmt:    $(FORMAT).ltx
  41.     initex $(FORMAT).ltx
  42.  
  43.  
  44. install: $(FORMAT).fmt
  45.     mv -i $(FORMAT).fmt $(FORMATDIR)
  46.     mv -i *.fd $(FDDIR)
  47.     mv -i *.cls *.clo *.sty *.def *.tex $(INPUTDIR)
  48.  
  49.