OSDN Git Service

Undo last patch that tried using both $1 and $srcdir.
[pf3gnuchains/gcc-fork.git] / gcc / configure.frag
1 # configure.frag for GNU CC
2 # Process the Makefile fragments from language directories.
3
4 # Copyright (C) 1997 Free Software Foundation, Inc.
5
6 #This file is part of GNU CC.
7
8 #GNU CC is free software; you can redistribute it and/or modify
9 #it under the terms of the GNU General Public License as published by
10 #the Free Software Foundation; either version 2, or (at your option)
11 #any later version.
12
13 #GNU CC is distributed in the hope that it will be useful,
14 #but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #GNU General Public License for more details.
17
18 #You should have received a copy of the GNU General Public License
19 #along with GNU CC; see the file COPYING.  If not, write to
20 #the Free Software Foundation, 59 Temple Place - Suite 330,
21 #Boston, MA 02111-1307, USA.
22
23 rm -f Make-lang
24 touch Make-lang
25
26 # We can either be invoked with . from configure or from Makefile.
27 # Some shells can't pass arguments to source'd scripts.
28 # ??? This needs some rethinking.
29
30 savesrcdir=$srcdir
31 savesubdirs=$subdirs
32
33 for subdir in . $savesubdirs
34 do
35         oldsrcdir=$savesrcdir
36
37         # Re-adjust the path
38         case $oldsrcdir in
39         /*)
40                 case $subdir in
41                 .)
42                         srcdir=$oldsrcdir
43                         ;;
44                 *)
45                         srcdir=$oldsrcdir/$subdir
46                         ;;
47                 esac
48                 ;;
49         *)
50                 case $subdir in
51                 .)
52                         ;;
53                 *)
54                         oldsrcdir=../${oldsrcdir}
55                         srcdir=$oldsrcdir/$subdir
56                         ;;
57                 esac
58                 ;;
59         esac
60         mainsrcdir=$oldsrcdir
61         STARTDIR=`pwd`
62         test -d $subdir || mkdir $subdir
63         cd $subdir
64
65         # If this is the top level Makefile, add the language fragments.
66         if [ $subdir = . ]
67         then
68                 for s in .. $savesubdirs
69                 do
70                         if [ $s != ".." ]
71                         then
72                                 cat ${mainsrcdir}/$s/Make-lang.in >> Make-lang
73                         fi
74                 done
75         fi
76
77         cd $STARTDIR
78 done   # end of current-dir SUBDIRS loop
79
80 srcdir=$savesrcdir