home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-bin / share / aclocal / am_init_automake.m4 < prev    next >
Encoding:
M4 Source File  |  1996-10-12  |  470 b   |  20 lines

  1. # Do all the work for Automake.  This macro actually does too much --
  2. # some checks are only needed if your package does certain things.
  3. # But this isn't really a big deal.
  4.  
  5. # serial 1
  6.  
  7. dnl Usage:
  8. dnl AM_INIT_AUTOMAKE(package,version)
  9.  
  10. AC_DEFUN(AM_INIT_AUTOMAKE,
  11. [AC_REQUIRE([AM_PROG_INSTALL])
  12. PACKAGE=[$1]
  13. AC_SUBST(PACKAGE)
  14. AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
  15. VERSION=[$2]
  16. AC_SUBST(VERSION)
  17. AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
  18. AC_ARG_PROGRAM
  19. AC_PROG_MAKE_SET])
  20.