2004-10-16 22:43:48 +08:00
|
|
|
# Process with autom4te to create an -*- Autotest -*- test suite.
|
|
|
|
|
|
|
|
# Test suite for GNU Libtool.
|
|
|
|
# Copyright 2004 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
# any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
# 02111-1307, USA.
|
|
|
|
|
2004-11-29 21:50:54 +08:00
|
|
|
m4_divert_push([PREPARE_TESTS])dnl
|
|
|
|
: ${LIBTOOLIZE="${abs_top_builddir}/libtoolize"}
|
|
|
|
export LIBTOOLIZE
|
|
|
|
m4_divert_pop([PREPARE_TESTS])dnl
|
|
|
|
|
|
|
|
# AT_LIBTOOLIZE([ARGS])
|
|
|
|
# ---------------------
|
|
|
|
m4_define([AT_LIBTOOLIZE],
|
|
|
|
["$LIBTOOLIZE" -I "$abs_top_srcdir" -I "$abs_top_srcdir/config" $1
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
# AT_CHECK_LIBTOOLIZE(ARGS, [EXIT-STATUS = 0], [STDOUT = `'], [STDERR = `'])
|
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
m4_define([AT_CHECK_LIBTOOLIZE],
|
|
|
|
[AT_CHECK([AT_LIBTOOLIZE([$1])],
|
|
|
|
[$2], [$3], [$4])
|
|
|
|
])
|
|
|
|
|
|
|
|
|
2004-10-16 22:43:48 +08:00
|
|
|
# AT_BOOTSTRAP
|
|
|
|
# ------------
|
|
|
|
m4_define([AT_BOOTSTRAP],
|
2004-11-29 21:50:54 +08:00
|
|
|
[
|
|
|
|
test -f ./ltmain.sh || AT_LIBTOOLIZE([--copy])
|
2004-10-16 22:43:48 +08:00
|
|
|
test -f ./configure || autoreconf --force --verbose --install
|
|
|
|
test -f ./configure || exit 1
|
|
|
|
./configure
|
2004-11-29 21:50:54 +08:00
|
|
|
])
|
2004-10-16 22:43:48 +08:00
|
|
|
|
|
|
|
# We use `dnl' in zillions of places...
|
|
|
|
m4_pattern_allow([^dnl$])
|
|
|
|
|
2004-11-29 21:50:54 +08:00
|
|
|
# We exercise these tools.
|
2004-10-16 22:43:48 +08:00
|
|
|
AT_TESTED([grep autoreconf autom4te automake])
|
|
|
|
|
|
|
|
## ----------- ##
|
|
|
|
## The suite. ##
|
|
|
|
## ----------- ##
|
|
|
|
|
|
|
|
AT_INIT
|
|
|
|
|
|
|
|
# Torturing subdir-objects builds
|
|
|
|
m4_include([am-subdir.at])
|