mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-04 19:24:21 +02:00
21 lines
486 B
Plaintext
21 lines
486 B
Plaintext
# 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.
|
|
|
|
# serial 1
|
|
|
|
dnl Usage:
|
|
dnl AM_INIT_AUTOMAKE(package,version)
|
|
|
|
AC_DEFUN(AM_INIT_AUTOMAKE,
|
|
[AC_REQUIRE([AM_PROG_INSTALL])
|
|
PACKAGE=[$1]
|
|
AC_SUBST(PACKAGE)
|
|
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
|
|
VERSION=[$2]
|
|
AC_SUBST(VERSION)
|
|
AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
|
|
AM_SANITY_CHECK
|
|
AC_ARG_PROGRAM
|
|
AC_PROG_MAKE_SET])
|