| 1 | #! /bin/sh
|
|---|
| 2 | # Copyright (C) 2003 Free Software Foundation, Inc.
|
|---|
| 3 | #
|
|---|
| 4 | # This file is part of GNU Automake.
|
|---|
| 5 | #
|
|---|
| 6 | # GNU Automake is free software; you can redistribute it and/or modify
|
|---|
| 7 | # it under the terms of the GNU General Public License as published by
|
|---|
| 8 | # the Free Software Foundation; either version 2, or (at your option)
|
|---|
| 9 | # any later version.
|
|---|
| 10 | #
|
|---|
| 11 | # GNU Automake is distributed in the hope that it will be useful,
|
|---|
| 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 14 | # GNU General Public License for more details.
|
|---|
| 15 | #
|
|---|
| 16 | # You should have received a copy of the GNU General Public License
|
|---|
| 17 | # along with Automake; see the file COPYING. If not, write to
|
|---|
| 18 | # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|---|
| 19 | # Boston, MA 02110-1301, USA.
|
|---|
| 20 |
|
|---|
| 21 | # Make sure Makefile.in are up to date after make dist.
|
|---|
| 22 | # This is expected to work even without GNU Make (the GNU Make
|
|---|
| 23 | # feature that isn't supported elsewhere is the rebuild of
|
|---|
| 24 | # Makefile dependencies during ordinary builds).
|
|---|
| 25 | #
|
|---|
| 26 | # If this fails, this is likely to be due to a dependency being
|
|---|
| 27 | # given two different name. For instance BSD Make does not know
|
|---|
| 28 | # that `Makefile' is the same as `./Makefile'
|
|---|
| 29 | #
|
|---|
| 30 | # Report from Akim Demaille.
|
|---|
| 31 |
|
|---|
| 32 | . ./defs || exit 1
|
|---|
| 33 |
|
|---|
| 34 | set -e
|
|---|
| 35 |
|
|---|
| 36 | cat >>configure.in <<'EOF'
|
|---|
| 37 | # Rebuild rule are ok until make dist, but not afterwards.
|
|---|
| 38 | if test ! -f rebuild_ok; then
|
|---|
| 39 | ACLOCAL=false
|
|---|
| 40 | AUTOMAKE=false
|
|---|
| 41 | AUTOCONF=false
|
|---|
| 42 | fi
|
|---|
| 43 | AC_OUTPUT
|
|---|
| 44 | EOF
|
|---|
| 45 |
|
|---|
| 46 | : > rebuild_ok
|
|---|
| 47 | : > Makefile.am
|
|---|
| 48 |
|
|---|
| 49 | $ACLOCAL
|
|---|
| 50 | $AUTOCONF
|
|---|
| 51 | $AUTOMAKE --add-missing
|
|---|
| 52 | ./configure
|
|---|
| 53 | $MAKE
|
|---|
| 54 | $sleep
|
|---|
| 55 | touch aclocal.m4
|
|---|
| 56 | $MAKE distdir
|
|---|
| 57 | cd remake4-1.0
|
|---|
| 58 | test ! -f rebuild_ok
|
|---|
| 59 | ./configure
|
|---|
| 60 | $MAKE
|
|---|