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

  1. dnl Top-level configure for kpathsea-using programs.
  2. dnl Our job is to run configure in the relevant subdirectories.
  3. dnl
  4. dnl Assumption: each program will create a c-auto.h that defines
  5. dnl everything kpathsea needs.  We arrange this by including (at
  6. dnl autoconf time) kpathsea/common.ac.
  7. dnl 
  8. dnl Consequence: we don't need to run configure in the kpathsea directory
  9. dnl itself; we can just copy from a program directory.  We'll use the
  10. dnl first one.
  11. dnl 
  12. AC_INIT(kpathsea/kpathsea.texi)
  13.  
  14. AC_PROG_MAKE_SET
  15.  
  16. dnl Because we include make/common.make.
  17. AC_PROG_CC
  18.  
  19. dnl If we guessed the prefix in the subdirectories, it might guess
  20. dnl differently than the prefix here, and that would cause confusion.
  21. AC_PREFIX_PROGRAM(tex)
  22.  
  23. dnl Pass this down from the top level so that when the subprograms
  24. dnl install kpathsea a command line value is propagated.
  25. AC_PROG_INSTALL
  26.  
  27. AC_CONFIG_SUBDIRS(kpathsea dviljk dvipsk web2c xdvik)
  28.  
  29. AC_OUTPUT(Makefile)
  30.