blob: 8516bebcd6aa3ab2c62bb3e2f1c5d8437ae55278 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#! /bin/sh
#
# Reconfigure for a release, by updating the Makefile dependencies and
# running the autotools.
#
# $Id: reconf,v 1.3 2004/04/23 10:06:17 quozl Exp $
# make the existing config.h disappear temporarily
if test -f config.h
then
mv -f config.h config.h.TMP
fi
touch config.h
# rebuild dependencies (makedepend)
for makefile in Makefile.am Makefile.uClinux
do
echo -n "Rebuilding $makefile..."
head -`grep -n 'DO NOT ADD BELOW THIS POINT' $makefile | \
cut -d: -f1` $makefile > $makefile.new
for file in *.c
do
if test "$makefile" = "Makefile.uClinux"
then
gcc -MM $file -include config.embed.h
else
gcc -MM $file -DHAVE_CONFIG_H
fi
echo ''
done >> $makefile.new
echo 'done.'
if ! cmp -s $makefile.new $makefile
then
echo "Changes: <=old >=new"
diff $makefile $makefile.new | grep '^[<>]'
mv -f $makefile.new $makefile
else
rm -f $makefile.new
echo "No change."
fi
done
# restore the previous config.h
rm -f config.h
if test -f config.h.TMP
then
mv -f config.h.TMP config.h
fi
# show us what we do next
set -x
# reset the configuration
rm -f config.cache
rm -f config.log
# run the build tools sequence
aclocal
autoconf
automake -a --copy --verbose
autoheader
|