source: rtems/bootstrap @ fb327db3

4.104.114.84.95
Last change on this file since fb327db3 was ec6968b, checked in by Joel Sherrill <joel.sherrill@…>, on 06/14/00 at 17:15:18

Patch rtems-rc-20000614-2-cvs.diff from Ralf Corsepius
<corsepiu@…> to evaluate ACLOCAL_AMFLAGS in
Makefile.ams before running aclocal.

Remark: This patch is in preparation to switching to Cygnus/GNU
canonicalization. I plan to introduce to an alternate aclocal macros
directory which shall contain Cygnus/GNU conforming macros only,
soon.

  • Property mode set to 100755
File size: 3.2 KB
Line 
1#!/bin/sh
2#
3# helps bootstrapping, when checked out from CVS
4# requires GNU autoconf and GNU automake
5#
6# $Id$
7
8# this is not meant to be exported outside the source tree
9
10# NOTE: Inspired by libtool's autogen script
11
12# to be run from the toplevel directory of RTEMS'
13# source tree
14
15progname=`basename $0`
16top_srcdir=`dirname $0`
17
18verbose="";
19quiet="false"
20mode="generate"
21
22usage()
23{
24  echo
25  echo "usage: ${progname} [-h|-q|-v]"
26  echo
27  echo "options:"
28  echo "        -h .. display this message and exit";
29  echo "        -q .. quiet, don't display directories";
30  echo "        -v .. verbose, pass -v to automake when invoking automake"
31  echo "        -c .. clean, remove all aclocal/autoconf/automake generated files"
32  echo
33  exit 1;
34}
35
36if test ! -f $top_srcdir/VERSION; then
37  echo "${progname}:"
38  echo "        Installation problem: Can't find file VERSION"
39  exit 1;
40fi
41
42while test $# -gt 0; do
43case $1 in
44-h|--he|--hel|--help)
45  usage ;;
46-q|--qu|--qui|--quie|--quiet)
47  quiet="true";
48  shift;;
49-v|--ve|--ver|--verb|--verbo|--verbos|--verbose)
50  verbose="-v";
51  shift;;
52-c|--cl|--cle|--clea|--clean)
53  mode="clean";
54  shift;;
55-*) echo "unknown option $1" ;
56  usage ;;
57*) echo "invalid parameter $1" ;
58  usage ;;
59esac
60done
61
62case $mode in
63generate)
64
65  case $top_srcdir in
66  /* ) aclocal_dir=$top_srcdir
67    ;;
68  *) aclocal_dir=`pwd`/$top_srcdir
69    ;;
70  esac
71
72  confs=`find . -name 'configure.in' -print`
73  for i in $confs; do
74  dir=`dirname $i`;
75  ( test "$quiet" = "true" || echo "$dir";
76    cd $dir;
77    pat="s,\$(RTEMS_TOPdir),${aclocal_dir},g"
78    aclocal_args=`grep '^[ ]*ACLOCAL_AMFLAGS' Makefile.am | \
79      sed -e 's%.*ACLOCAL_AMFLAGS.*\=[ ]*%%g' -e $pat ` ;
80    test "$verbose" = "-v" && echo "aclocal $aclocal_args"
81    aclocal $aclocal_args;
82    autoconf;
83    test -n "`grep CONFIG_HEADER configure.in`" && autoheader ;
84    test -f Makefile.am && automake $verbose ;
85    test -f Makefile.am && test -n "`grep 'stamp-h\.in' Makefile.in`" \
86      && echo timestamp > stamp-h.in
87  )
88  done
89  ;;
90
91clean)
92  test "$quiet" = "true" || echo "removing automake generated Makefile.in files"
93  files=`find . -name 'Makefile.am' -print | sed -e 's%\.am%\.in%g'` ;
94  for i in $files; do if test -f $i; then
95    rm -f $i
96    test "$verbose" = "-v" && echo "$i"   
97  fi; done
98
99  test "$quiet" = "true" || echo "removing configure files"
100  files=`find . -name 'configure' -print` ;
101  test "$verbose" = "-v" && test -n "$files" && echo "$files" ;
102  for i in $files; do if test -f $i; then
103    rm -f $i
104    test "$verbose" = "-v" && echo "$i"   
105  fi; done
106 
107  test "$quiet" = "true" || echo "removing aclocal.m4 files"
108  files=`find . -name 'aclocal.m4' -print` ;
109  test "$verbose" = "-v" && test -n "$files" && echo "$files" ;
110  for i in $files; do if test -f $i; then
111    rm -f $i
112    test "$verbose" = "-v" && echo "$i"   
113  fi; done
114
115  find . -name '*~' -print | xargs rm -f
116  find . -name '*.orig' -print | xargs rm -f
117  find . -name '*.rej' -print | xargs rm -f
118  find . -name 'config.status' -print | xargs rm -f
119  find . -name 'config.log' -print | xargs rm -f
120  find . -name 'config.cache' -print | xargs rm -f
121  find . -name 'Makefile' -print | xargs rm -f
122  find . -name '.deps' -print | xargs rm -rf
123  find . -name '.libs' -print | xargs rm -rf
124  find . -name 'stamp-h.in' | xargs rm -rf
125  ;;
126esac
Note: See TracBrowser for help on using the repository browser.