home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / automake-1.1e-bin.lha / share / automake / aclocal.m4 < prev    next >
Encoding:
M4 Source File  |  1996-10-12  |  1014 b   |  37 lines

  1. dnl aclocal.m4 generated automatically by aclocal 1.1e
  2.  
  3. # Do all the work for Automake.  This macro actually does too much --
  4. # some checks are only needed if your package does certain things.
  5. # But this isn't really a big deal.
  6.  
  7. # serial 1
  8.  
  9. dnl Usage:
  10. dnl AM_INIT_AUTOMAKE(package,version)
  11.  
  12. AC_DEFUN(AM_INIT_AUTOMAKE,
  13. [AC_REQUIRE([AM_PROG_INSTALL])
  14. PACKAGE=[$1]
  15. AC_SUBST(PACKAGE)
  16. AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
  17. VERSION=[$2]
  18. AC_SUBST(VERSION)
  19. AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
  20. AC_ARG_PROGRAM
  21. AC_PROG_MAKE_SET])
  22.  
  23. ## --------------------------------------------------------- ##
  24. ## Use AC_PROG_INSTALL, supplementing it with INSTALL_SCRIPT ##
  25. ## substitution.                                             ##
  26. ## From Franc,ois Pinard                                     ##
  27. ## --------------------------------------------------------- ##
  28.  
  29. # serial 1
  30.  
  31. AC_DEFUN(AM_PROG_INSTALL,
  32. [AC_REQUIRE([AC_PROG_INSTALL])
  33. test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
  34. AC_SUBST(INSTALL_SCRIPT)dnl
  35. ])
  36.  
  37.