Edit

kc3-lang/automake/m4/AM_INIT_AUTOMAKE.m4

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1996-08-05 22:45:55
    Hash : ae0c9a76
    Message : Better aclocal/AM_ support

  • m4/AM_INIT_AUTOMAKE.m4
  • # Do all the work for Automake.  This macro actually does too much --
    # some checks are only needed if your package does certain things.
    # But this isn't really a big deal.
    
    dnl Usage:
    dnl AM_INIT_AUTOMAKE(package,version)
    
    AC_DEFUN(AM_INIT_AUTOMAKE,
    [AC_REQUIRE([AM_PROG_INSTALL])
    PACKAGE=[$1]
    AC_SUBST(PACKAGE)
    VERSION=[$2]
    AC_SUBST(VERSION)
    AC_ARG_PROGRAM
    AC_PROG_MAKE_SET])