home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / unixtex-6.1b-src.tgz / tar.out / contrib / unixtex / make / paths.make < prev    next >
Text File  |  1996-09-28  |  3KB  |  97 lines

  1. # paths.make -- installation directories.
  2. #
  3. # The compile-time paths are defined in kpathsea/paths.h, which is built
  4. # from kpathsea/paths.h.in and these definitions.  See kpathsea/INSTALL
  5. # for a description of how the various path-related files are used and
  6. # created.
  7.  
  8. # Do not change prefix and exec_prefix in Makefile.in!
  9. # configure doesn't propagate the change to the other Makefiles.
  10. # Instead, give the -prefix/-exec-prefix options to configure.
  11. # (See kpathsea/INSTALL for more details.) This is arguably
  12. # a bug, but it's not likely to change soon.
  13. #prefix = @prefix@
  14. prefix = /ade
  15. exec_prefix = @exec_prefix@
  16.  
  17. # Architecture-dependent executables.
  18. bindir = $(exec_prefix)/bin
  19.  
  20. # Architecture-independent executables.
  21. scriptdir = $(bindir)
  22.  
  23. # Architecture-dependent files, such as lib*.a files.
  24. libdir = $(exec_prefix)/lib
  25.  
  26. # Architecture-independent files.
  27. datadir = $(prefix)/lib
  28.  
  29. # Header files.
  30. includedir = $(prefix)/include
  31.  
  32. # GNU .info* files.
  33. infodir = $(prefix)/info
  34.  
  35. # Unix man pages.
  36. manext = 1
  37. mandir = $(prefix)/man/man$(manext)
  38.  
  39. # TeX & MF-specific directories. Not all of the following are relevant
  40. # for all programs, but it seems cleaner to collect everything in one place.
  41.  
  42. # The default paths are now in kpathsea/paths.h.in. Passing all the
  43. # paths to sub-makes can make the arg list too long on system V.
  44.  
  45. # The root of the tree.
  46. texmf = $(datadir)/texmf
  47.  
  48. # TeX and MF source files.
  49. texinputdir = $(texmf)/tex
  50. mfinputdir = $(texmf)/mf
  51.  
  52. # MakeTeXPK.site, texmf.cnf, etc.
  53. web2cdir = $(texmf)/web2c
  54.  
  55. # The top-level font directory.
  56. fontdir = $(texmf)/fonts
  57.  
  58. # Memory dumps (.fmt and .base).
  59. fmtdir = $(texmf)/ini
  60. basedir = $(fmtdir)
  61.  
  62. # Pool files.
  63. texpooldir = $(texmf)/ini
  64. mfpooldir = $(texpooldir)
  65.  
  66. # If install_fonts=true, the PostScript/LaserJet TFM and VF files for
  67. # the builtin fonts get installed in subdirectories of this directory,
  68. # named for the typeface families of these directories. If you don't
  69. # have the default directory setup, you will want to set
  70. # install_fonts=false.  Ditto for install_macros.
  71. install_fonts = true
  72. install_macros = true
  73.  
  74. # Where the .map files from fontname are installed.
  75. fontnamedir = $(texmf)/fontname
  76.  
  77. # Where the dvips configuration files get installed, and where
  78. # psfonts.map is.
  79. dvipsdir = $(texmf)/dvips
  80. psheaderdir = $(dvipsdir)
  81.  
  82. # MakeTeXPK will go here to create dc*.
  83. dcfontdir = $(fontdir)/public/dc
  84.  
  85. # MakeTeXPK will go here if it exists to create nonstandard CM fonts,
  86. # e.g., cmr11. See ftp.cs.umb.edu:pub/tex/sauter.tar.gz. The Sauter
  87. # files must be in your regular MFINPUTS.
  88. sauterdir = $(fontdir)/public/sauter
  89.  
  90. # If a font can't be found close enough to its stated size, we look for
  91. # each of these sizes in the order given.  This colon-separated list is
  92. # overridden by the envvar TEXSIZES, and by a program-specific variable
  93. # (e.g., XDVISIZES), and perhaps by a config file (e.g., in dvips).
  94. default_texsizes = 300:600
  95.  
  96. # End of paths.make.
  97.