]>
Commit | Line | Data |
---|---|---|
99a42820 | 1 | #!/bin/sh |
a9c7e163 RP |
2 | # Please do not edit this file. It is generated automatically from |
3 | # configure.in and a configure template. | |
99a42820 RP |
4 | configdirs= |
5 | ||
6 | #!/bin/sh | |
99a42820 RP |
7 | |
8 | # Configuration script template | |
9 | # Copyright (C) 1988, 1990, 1991 Free Software Foundation, Inc. | |
10 | ||
11 | #This file is part of GNU. | |
12 | ||
21a56d6d JG |
13 | # This program is free software; you can redistribute it and/or modify |
14 | # it under the terms of the GNU General Public License as published by | |
15 | # the Free Software Foundation; either version 2 of the License, or | |
16 | # (at your option) any later version. | |
17 | # | |
18 | # This program is distributed in the hope that it will be useful, | |
19 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 | # GNU General Public License for more details. | |
22 | # | |
23 | # You should have received a copy of the GNU General Public License | |
24 | # along with this program; if not, write to the Free Software | |
25 | # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
99a42820 | 26 | |
a9c7e163 RP |
27 | # $Id$ |
28 | ||
99a42820 RP |
29 | # |
30 | # Shell script to create proper links to machine-dependent files in | |
b5132a6b | 31 | # preparation for compilation. |
99a42820 RP |
32 | # |
33 | # If configure succeeds, it leaves its status in config.status. | |
34 | # If configure fails after disturbing the status quo, | |
35 | # config.status is removed. | |
36 | # | |
37 | ||
99a42820 RP |
38 | remove=rm |
39 | hard_link=ln | |
40 | symbolic_link='ln -s' | |
41 | ||
42 | #for Test | |
43 | #remove="echo rm" | |
44 | #hard_link="echo ln" | |
45 | #symbolic_link="echo ln -s" | |
46 | ||
c4220303 RP |
47 | progname=$0 |
48 | ||
99a42820 | 49 | # clear some things potentially inherited from environment. |
99a42820 | 50 | ansi= |
b5132a6b | 51 | defaulttargets= |
ec342d7d | 52 | destdir= |
b5132a6b | 53 | fatal= |
f2e91404 | 54 | hostsubdir= |
21a56d6d JG |
55 | Makefile=Makefile |
56 | Makefile_in=Makefile.in | |
f2e91404 RP |
57 | norecurse= |
58 | removing= | |
a9c7e163 | 59 | srcdir= |
ec342d7d | 60 | srctrigger= |
f2e91404 | 61 | target= |
b5132a6b | 62 | targets= |
f2e91404 RP |
63 | targetsubdir= |
64 | template= | |
b5132a6b | 65 | verbose= |
99a42820 RP |
66 | |
67 | for arg in $*; | |
68 | do | |
ec342d7d | 69 | case ${arg} in |
99a42820 RP |
70 | -ansi | +ansi) |
71 | ansi=true | |
72 | ;; | |
ec342d7d RP |
73 | -destdir=* | +destdir=* | +destdi=* | +destd=* | +dest=* | +des=* | +de=* | +d=*) |
74 | destdir=`echo ${arg} | sed 's/[+-]d[a-z]*=//'` | |
75 | ;; | |
c4220303 RP |
76 | -forcesubdirs | +forcesubdirs | +forcesubdir | +forcesubdi | +forcesubd \ |
77 | | +forcesub | +forcesu | +forces | +force | +forc | +for | +fo | +f) | |
f2e91404 | 78 | forcesubdirs=${arg} |
99a42820 | 79 | ;; |
a9c7e163 RP |
80 | -languages=* | +languages=* | +language=* | +languag=* \ |
81 | | +langua=* | +langu=* | +lang=* | +lan=* | +la=* \ | |
82 | | +l=*) | |
ec342d7d | 83 | languages="${languages} `echo ${arg} | sed 's/[+-]l[a-z]*=//'`" |
99a42820 RP |
84 | ;; |
85 | -gas | +gas | +ga | +g) | |
86 | gas=yes | |
87 | ;; | |
b5132a6b RP |
88 | -help | +h | +help) |
89 | fatal=true | |
90 | ;; | |
99a42820 RP |
91 | -nfp | +nfp | +nf | +n) |
92 | nfp=yes | |
93 | ;; | |
f2e91404 RP |
94 | -norecurse | +norecurse) |
95 | norecurse=true | |
96 | ;; | |
97 | -rm | +rm) | |
ec342d7d | 98 | removing=${arg} |
f2e91404 | 99 | ;; |
b5132a6b RP |
100 | # -srcdir=* | +srcdir=* | +srcdi=* | +srcd=* | +src=* | +sr=* | +s=*) |
101 | # srcdir=`echo ${arg} | sed 's/[+-]s[a-z]*=//'` | |
102 | # ;; | |
103 | -target=* | +target=* | +targe=* | +targ=* | +tar=* | +ta=* | +t=*) | |
104 | if [ -n "${targets}" ] ; then | |
105 | forcesubdirs="+forcesubdirs" | |
106 | fi | |
107 | ||
108 | newtargets="${targets} `echo ${arg} | sed 's/[+-]t[a-z]*=//'`" | |
109 | targets="${newtargets}" | |
f2e91404 RP |
110 | ;; |
111 | -template=* | +template=*) | |
ec342d7d | 112 | template=`echo ${arg} | sed 's/[+-]template=//'` |
f2e91404 | 113 | ;; |
b5132a6b RP |
114 | +verbose | +verbos | +verbo | +verb | +ver | +ve | +v) |
115 | verbose=${arg} | |
116 | ;; | |
117 | -* | +*) | |
118 | (echo ; | |
119 | echo "Unrecognized option: \"${arg}\"". ; | |
120 | echo) 1>&2 | |
121 | fatal=true | |
122 | ;; | |
99a42820 | 123 | *) |
b5132a6b RP |
124 | if [ -n "${hosts}" ] ; then |
125 | forcesubdirs="+forcesubdirs" | |
126 | fi | |
127 | ||
128 | newhosts="${hosts} ${arg}" | |
129 | hosts=${newhosts} | |
99a42820 RP |
130 | ;; |
131 | esac | |
132 | done | |
133 | ||
b5132a6b RP |
134 | if [ -n "${verbose}" ] ; then |
135 | echo `pwd`/configure $* | |
136 | echo targets=\"${targets}\" | |
137 | fi | |
138 | ||
f2e91404 | 139 | # process host and target only if not rebuilding configure itself or removing. |
b5132a6b | 140 | if [ -z "${template}" -a -z "${removing}" -a -z "${fatal}" ] ; then |
99a42820 | 141 | # Complain if an arg is missing |
b5132a6b RP |
142 | if [ -z "${hosts}" ] ; then |
143 | (echo ; | |
144 | echo "configure: No HOST specified." ; | |
145 | echo) 2>&1 | |
146 | fatal=true | |
99a42820 | 147 | fi |
f2e91404 | 148 | fi |
99a42820 | 149 | |
b5132a6b RP |
150 | if [ -n "${fatal}" -o "${hosts}" = "help" ] ; then |
151 | (echo "Usage: configure HOST" ; | |
152 | echo ; | |
153 | echo "Options: [defaults in brackets]" ; | |
154 | echo " +ansi configure w/ANSI library. [no ansi lib]" ; | |
155 | echo " +destdir=MYDIR configure for installation into MYDIR. [/usr/local]" ; | |
156 | echo " +forcesubdirs configure in subdirectories. [in source directories]" ; | |
157 | echo " +lang=LANG configure to build LANG. [gcc]" ; | |
158 | echo " +help print this message. [normal config]" ; | |
159 | echo " +gas configure the compilers for use with gas. [native as]" ; | |
160 | echo " +nfp configure the compilers default to soft floating point. [hard float]" ; | |
161 | echo " +norecurse configure this directory only. [recurse]" ; | |
162 | echo " +rm remove this configuration. [build a configuration]" ; | |
163 | echo " +target=TARGET configure for TARGET. [TARGET = HOST]" ; | |
164 | echo " +template=TEM rebuild configure using TEM. [normal config]" ; | |
165 | echo ; | |
166 | echo "Where HOST and TARGET are something like \"vax\", \"sun3\", \"encore\", etc." ; | |
167 | echo "Asking for more than one \"+target\" implies \"+forcesubdirs\". Any other" ; | |
168 | echo "options given will apply to all targets.") 1>&2 | |
169 | ||
170 | if [ -r config.status ] ; then | |
171 | cat config.status | |
172 | fi | |
173 | ||
174 | exit 1 | |
99a42820 RP |
175 | fi |
176 | ||
b5132a6b | 177 | #### configure.in common parts come in here. |
a9c7e163 RP |
178 | # This file is a shell script that supplies the information necessary |
179 | # to tailor a template configure script into the configure script | |
180 | # appropriate for this directory. For more information, check any | |
181 | # existing configure script. | |
182 | ||
183 | srctrigger=libbfd.c | |
184 | srcname="bfd" | |
b5132a6b | 185 | |
c4220303 | 186 | ## end of common part. |
99a42820 RP |
187 | |
188 | # are we rebuilding config itself? | |
b5132a6b RP |
189 | if [ -n "${template}" ] ; then |
190 | if [ ! -r ${template} ] ; then | |
99a42820 RP |
191 | echo "Can't find template ${template}." |
192 | exit 1 | |
193 | fi | |
194 | ||
c4220303 RP |
195 | # prep the template |
196 | sed -e '/^#### configure.in common parts come in here.$/,/^## end of common part.$/c\ | |
197 | #### configure.in common parts come in here.\ | |
198 | ## end of common part.' \ | |
199 | -e '/^#### configure.in per-host parts come in here.$/,/^## end of per-host part.$/c\ | |
200 | #### configure.in per-host parts come in here.\ | |
201 | ## end of per-host part.' \ | |
202 | -e '/^#### configure.in per-target parts come in here.$/,/^## end of per-target part.$/c\ | |
203 | #### configure.in per-target parts come in here.\ | |
204 | ## end of per-target part.' \ | |
21a56d6d JG |
205 | -e '/^#### configure.in post-target parts come in here.$/,/^## end of post-target part.$/c\ |
206 | #### configure.in post-target parts come in here.\ | |
207 | ## end of post-target part.' \ | |
c4220303 | 208 | < ${template} > template.new |
99a42820 | 209 | |
b5132a6b RP |
210 | if [ -r configure.in ] ; then |
211 | if [ -z "`grep '^# per\-host:' configure.in`" ] ; then | |
212 | echo `pwd`/configure.in has no "per-host:" line. | |
213 | exit 1 | |
214 | fi | |
215 | ||
216 | if [ -z "`grep '^# per\-target:' configure.in`" ] ; then | |
217 | echo `pwd`/configure.in has no "per-target:" line. | |
218 | exit 1 | |
219 | fi | |
220 | ||
21a56d6d JG |
221 | # split configure.in into common, per-host, per-target, |
222 | # and post-target parts. Post-target is optional. | |
04dc1a62 RP |
223 | sed -e '/^# per\-host:/,$d' configure.in > configure.com |
224 | sed -e '1,/^# per\-host:/d' -e '/^# per\-target:/,$d' configure.in > configure.hst | |
21a56d6d JG |
225 | if grep -s '^# post-target:' configure.in ; then |
226 | sed -e '1,/^# per\-target:/d' -e '/^# post\-target:/,$d' configure.in > configure.tgt | |
227 | sed -e '1,/^# post\-target:/d' configure.in > configure.pos | |
228 | else | |
229 | sed -e '1,/^# per\-target:/d' configure.in > configure.tgt | |
230 | echo >configure.pos | |
231 | fi | |
b5132a6b | 232 | |
04dc1a62 | 233 | # and insert them |
c4220303 RP |
234 | sed -e '/^#### configure.in common parts come in here.$/ r configure.com' \ |
235 | -e '/^#### configure.in per\-host parts come in here.$/ r configure.hst' \ | |
236 | -e '/^#### configure.in per\-target parts come in here.$/ r configure.tgt' \ | |
21a56d6d | 237 | -e '/^#### configure.in post\-target parts come in here.$/ r configure.pos' \ |
c4220303 | 238 | template.new > configure.new |
b5132a6b | 239 | |
21a56d6d | 240 | rm -f configure.com configure.tgt configure.hst configure.pos |
99a42820 | 241 | else |
ec342d7d RP |
242 | echo Warning: no configure.in in `pwd` |
243 | cat ${template} >> configure | |
99a42820 RP |
244 | fi |
245 | ||
c4220303 RP |
246 | chmod a+x configure.new |
247 | rm template.new | |
248 | # mv configure configure.old | |
249 | mv configure.new configure | |
99a42820 RP |
250 | echo Rebuilt configure in `pwd` |
251 | ||
b5132a6b | 252 | if [ -z "${norecurse}" ] ; then |
21a56d6d JG |
253 | # If template is relative path, make it absolute for recursing. |
254 | if echo "${template}" | grep -s '^/' ; then | |
255 | true | |
256 | else | |
257 | template=`pwd`/${template} | |
258 | fi | |
259 | ||
b5132a6b | 260 | while [ -n "${configdirs}" ] ; do |
99a42820 | 261 | # set configdir to car of configdirs, configdirs to cdr of configdirs |
ec342d7d | 262 | set ${configdirs}; configdir=$1; shift; configdirs=$* |
99a42820 | 263 | |
b5132a6b | 264 | if [ "`echo ${configdir}.*`" != "${configdir}.*" ] ; then |
99a42820 RP |
265 | targetspecificdirs=${configdir}.* |
266 | else | |
267 | targetspecificdirs= | |
268 | fi | |
269 | ||
b5132a6b | 270 | for i in ${configdir} ${targetspecificdirs} ; do |
6c18e393 RP |
271 | if [ -d $i ] ; then |
272 | if [ -r $i/configure ] ; then | |
273 | (cd $i ; | |
274 | ./configure +template=${template} ${verbose}) | |
275 | else | |
276 | echo No configure script in `pwd`/$i | |
277 | fi | |
99a42820 | 278 | else |
6c18e393 | 279 | echo Warning: directory $i is missing. |
99a42820 RP |
280 | fi |
281 | done | |
282 | done | |
283 | fi | |
284 | ||
285 | exit 0 | |
286 | fi | |
287 | ||
ec342d7d | 288 | # some sanity checks on configure.in |
b5132a6b | 289 | if [ -z "${srctrigger}" ] ; then |
ec342d7d RP |
290 | echo srctrigger not set in configure.in. `pwd` not configured. |
291 | exit 1 | |
292 | fi | |
293 | ||
b5132a6b RP |
294 | for host in ${hosts} ; do |
295 | # Default other arg | |
296 | if [ -z "${targets}" -o -n "${defaulttargets}" ] ; then | |
297 | targets=${host} | |
298 | defaulttargets=true | |
299 | fi | |
99a42820 | 300 | |
6c18e393 RP |
301 | host_makefile_frag=config/hmake-${host} |
302 | ||
b5132a6b | 303 | #### configure.in per-host parts come in here. |
99a42820 | 304 | |
c4220303 | 305 | ## end of per-host part. |
f2e91404 | 306 | |
99a42820 | 307 | |
b5132a6b RP |
308 | for target in ${targets} ; do |
309 | ||
310 | if [ -n "${verbose}" ] ; then | |
21a56d6d | 311 | echo " target=\"${target}\"" |
a9c7e163 | 312 | fi |
b5132a6b | 313 | |
6c18e393 RP |
314 | target_makefile_frag=config/tmake-${target} |
315 | ||
b5132a6b RP |
316 | #### configure.in per-target parts come in here. |
317 | ||
318 | files= | |
319 | links= | |
c4220303 | 320 | ## end of per-target part. |
b5132a6b RP |
321 | |
322 | # Temporarily, we support only direct subdir builds. | |
323 | hostsubdir=Host-${host} | |
324 | targetsubdir=Target-${target} | |
325 | ||
326 | if [ -n "${removing}" ] ; then | |
c4220303 RP |
327 | if [ -n "${forcesubdirs}" ] ; then |
328 | if [ -d "${hostsubdir}" ] ; then | |
329 | rm -rf ${hostsubdir}/${targetsubdir} | |
b5132a6b | 330 | |
c4220303 RP |
331 | if [ -z "`(ls ${hostsubdir}) 2>&1 | grep Target-`" ] ; then |
332 | rm -rf ${hostsubdir} | |
333 | fi | |
334 | else | |
335 | echo Warning: no `pwd`/${hostsubdir} to remove. | |
b5132a6b RP |
336 | fi |
337 | else | |
21a56d6d | 338 | rm -f ${Makefile} config.status ${links} |
b5132a6b | 339 | fi |
a9c7e163 | 340 | else |
b5132a6b RP |
341 | if [ -n "${forcesubdirs}" ] ; then |
342 | # check for existing status before allowing forced subdirs. | |
21a56d6d JG |
343 | if [ -f ${Makefile} ] ; then |
344 | echo "${Makefile} already exists in source directory. `pwd` not configured." | |
b5132a6b RP |
345 | exit 1 |
346 | fi | |
99a42820 | 347 | |
b5132a6b RP |
348 | if [ ! -d ${hostsubdir} ] ; then mkdir ${hostsubdir} ; fi |
349 | cd ${hostsubdir} | |
99a42820 | 350 | |
b5132a6b RP |
351 | if [ ! -d ${targetsubdir} ] ; then mkdir ${targetsubdir} ; fi |
352 | cd ${targetsubdir} | |
99a42820 | 353 | |
b5132a6b RP |
354 | srcdir=../.. |
355 | else | |
356 | # if not subdir builds, then make sure none exist. | |
357 | if [ -n "`(ls .) 2>&1 | grep Host-`" ] ; then | |
358 | echo "Configured subdirs exist. `pwd` not configured." | |
359 | exit 1 | |
360 | fi | |
361 | fi | |
99a42820 | 362 | |
b5132a6b RP |
363 | # Find the source files, if location was not specified. |
364 | if [ -z "${srcdir}" ] ; then | |
365 | srcdirdefaulted=1 | |
366 | srcdir=. | |
367 | if [ -n "${srctrigger}" -a ! -r ${srctrigger} ] ; then | |
368 | srcdir=.. | |
369 | fi | |
370 | fi | |
99a42820 | 371 | |
b5132a6b RP |
372 | if [ -n "${srctrigger}" -a ! -r ${srcdir}/${srctrigger} ] ; then |
373 | if [ -z "${srcdirdefaulted}" ] ; then | |
c4220303 | 374 | echo "${progname}: Can't find ${srcname} sources in `pwd`/${srcdir}" 1>&2 |
b5132a6b | 375 | else |
c4220303 | 376 | echo "${progname}: Can't find ${srcname} sources in `pwd`/. or `pwd`/.." 1>&2 |
b5132a6b | 377 | fi |
99a42820 | 378 | |
c4220303 | 379 | echo \(At least ${srctrigger} is missing.\) 1>&2 |
b5132a6b RP |
380 | exit 1 |
381 | fi | |
f2e91404 | 382 | |
b5132a6b RP |
383 | # Set up the list of links to be made. |
384 | # ${links} is the list of link names, and ${files} is the list of names to link to. | |
99a42820 | 385 | |
b5132a6b RP |
386 | # Make the links. |
387 | while [ -n "${files}" ] ; do | |
388 | # set file to car of files, files to cdr of files | |
389 | set ${files}; file=$1; shift; files=$* | |
390 | set ${links}; link=$1; shift; links=$* | |
f2e91404 | 391 | |
b5132a6b RP |
392 | if [ ! -r ${srcdir}/${file} ] ; then |
393 | echo "${progname}: cannot create a link \"${link}\"," 1>&2 | |
394 | echo "since the file \"${file}\" does not exist." 1>&2 | |
395 | exit 1 | |
396 | fi | |
f2e91404 | 397 | |
b5132a6b RP |
398 | ${remove} -f ${link} |
399 | rm -f config.status | |
400 | # Make a symlink if possible, otherwise try a hard link | |
401 | ${symbolic_link} ${srcdir}/${file} ${link} 2>/dev/null || ${hard_link} ${srcdir}/${file} ${link} | |
f2e91404 | 402 | |
b5132a6b RP |
403 | if [ ! -r ${link} ] ; then |
404 | echo "${progname}: unable to link \"${link}\" to \"${srcdir}/${file}\"." 1>&2 | |
405 | exit 1 | |
406 | fi | |
407 | echo "Linked \"${link}\" to \"${srcdir}/${file}\"." | |
408 | done | |
f2e91404 | 409 | |
b5132a6b RP |
410 | # Create a .gdbinit file which runs the one in srcdir |
411 | # and tells GDB to look there for source files. | |
412 | ||
413 | case ${srcdir} in | |
414 | .) | |
415 | ;; | |
416 | *) | |
417 | echo "dir ." > .gdbinit | |
418 | echo "dir ${srcdir}" >> .gdbinit | |
419 | echo "source ${srcdir}/.gdbinit" >> .gdbinit | |
420 | ;; | |
421 | esac | |
422 | ||
423 | # Install a makefile, and make it set VPATH | |
424 | # if necessary so that the sources are found. | |
425 | # Also change its value of srcdir. | |
426 | ||
427 | # FIXME-someday: This business of always writing to .tem and mv back | |
428 | # is so that I don't screw things up while developing. Once this | |
429 | # template is stable, these should be optimized. xoxorich. | |
430 | ||
431 | # Define macro CROSS_COMPILE in compilation if this is a cross-compiler. | |
432 | if [ "${host}" != "${target}" ] ; then | |
21a56d6d JG |
433 | echo "CROSS=-DCROSS_COMPILE" > ${Makefile} |
434 | echo "ALL=start.encap" >> ${Makefile} | |
b5132a6b | 435 | else |
21a56d6d | 436 | echo "ALL=all.internal" > ${Makefile} |
b5132a6b | 437 | fi |
f2e91404 | 438 | |
b5132a6b | 439 | # set target, host, VPATH |
21a56d6d JG |
440 | echo "host = ${host}" >> ${Makefile} |
441 | echo "target = ${target}" >> ${Makefile} | |
f2e91404 | 442 | |
b5132a6b | 443 | if [ -n "${forcesubdirs}" ] ; then |
21a56d6d | 444 | echo "subdir = /${hostsubdir}/${targetsubdir}" >> ${Makefile} |
b5132a6b | 445 | else |
21a56d6d | 446 | echo "subdir =" >> ${Makefile} |
b5132a6b | 447 | fi |
f2e91404 | 448 | |
21a56d6d JG |
449 | # echo "workdir = `pwd`" >> ${Makefile} |
450 | echo "VPATH = ${srcdir}" >> ${Makefile} | |
99a42820 | 451 | |
21a56d6d JG |
452 | # add "Makefile.in" (or whatever it's called) |
453 | cat ${srcdir}/${Makefile_in} >> ${Makefile} | |
99a42820 | 454 | |
b5132a6b | 455 | # Conditionalize the makefile for this host. |
6c18e393 | 456 | if [ -f ${srcdir}/${host_makefile_frag} ] ; then |
21a56d6d JG |
457 | sed -e "/^####/ r ${srcdir}/${host_makefile_frag}" ${Makefile} > Makefile.tem |
458 | mv Makefile.tem ${Makefile} | |
b5132a6b | 459 | fi |
f2e91404 | 460 | |
b5132a6b | 461 | # Conditionalize the makefile for this target. |
6c18e393 | 462 | if [ -f ${srcdir}/${target_makefile_frag} ] ; then |
21a56d6d JG |
463 | sed -e "/^####/ r ${srcdir}/${target_makefile_frag}" ${Makefile} > Makefile.tem |
464 | mv Makefile.tem ${Makefile} | |
b5132a6b | 465 | fi |
ec342d7d | 466 | |
b5132a6b | 467 | # set srcdir |
21a56d6d JG |
468 | sed "s@^srcdir = \.@srcdir = ${srcdir}@" ${Makefile} > Makefile.tem |
469 | mv Makefile.tem ${Makefile} | |
99a42820 | 470 | |
b5132a6b RP |
471 | # set destdir |
472 | if [ -n "${destdir}" ] ; then | |
21a56d6d JG |
473 | sed "s:^destdir =.*$:destdir = ${destdir}:" ${Makefile} > Makefile.tem |
474 | mv Makefile.tem ${Makefile} | |
b5132a6b | 475 | fi |
99a42820 | 476 | |
b5132a6b | 477 | # reset SUBDIRS |
21a56d6d JG |
478 | sed "s:^SUBDIRS =.*$:SUBDIRS = ${configdirs}:" ${Makefile} > Makefile.tem |
479 | mv Makefile.tem ${Makefile} | |
99a42820 | 480 | |
b5132a6b | 481 | # reset NONSUBDIRS |
21a56d6d JG |
482 | sed "s:^NONSUBDIRS =.*$:NONSUBDIRS = ${noconfigdirs}:" ${Makefile} > Makefile.tem |
483 | mv Makefile.tem ${Makefile} | |
99a42820 | 484 | |
b5132a6b | 485 | using= |
6c18e393 RP |
486 | if [ -f ${srcdir}/${host_makefile_frag} ] ; then |
487 | using=" using \"${host_makefile_frag}\"" | |
b5132a6b | 488 | fi |
99a42820 | 489 | |
6c18e393 | 490 | if [ -f ${srcdir}/${target_makefile_frag} ] ; then |
b5132a6b | 491 | if [ -z "${using}" ] ; then |
6c18e393 | 492 | andusing=" using \"${target_makefile_frag}\"" |
b5132a6b | 493 | else |
6c18e393 | 494 | andusing="${using} and \"${target_makefile_frag}\"" |
b5132a6b RP |
495 | fi |
496 | else | |
497 | andusing=${using} | |
498 | fi | |
99a42820 | 499 | |
21a56d6d JG |
500 | echo "Created \"${Makefile}\"" in `pwd`${andusing}. |
501 | ||
502 | #### configure.in post-target parts come in here. | |
503 | ||
504 | ## end of post-target part. | |
99a42820 | 505 | |
b5132a6b RP |
506 | if [ "${host}" = "${target}" ] ; then |
507 | echo "Links are now set up for use with a ${target}." \ | |
508 | > config.status | |
509 | # | tee ${srcdir}/config.status | |
510 | else | |
511 | echo "Links are now set up for host ${host} and target ${target}." \ | |
512 | > config.status | |
513 | # | tee ${srcdir}/config.status | |
514 | fi | |
515 | ||
516 | originaldir=`pwd` | |
517 | cd ${srcdir} | |
518 | fi | |
c4220303 RP |
519 | done # for each target |
520 | ||
521 | # # Now build a Makefile for this host. | |
522 | # if [ -n "${forcesubdirs}" ] ; then | |
523 | # cd ${hostsubdir} | |
524 | # cat > GNUmakefile << E!O!F | |
525 | ## Makefile generated by configure for host ${host}. | |
526 | # | |
527 | #%: | |
528 | # for i in ${targets} ; do \ | |
529 | # $(MAKE) -C Target-\$i \$@ | |
530 | # | |
531 | #all clean stage1 stage2 stage3 stage4etags tags TAGS | |
532 | #E!O!F | |
533 | # fi | |
534 | done # for each host | |
99a42820 | 535 | |
b5132a6b | 536 | # If there are subdirectories, then recurse. |
99a42820 | 537 | |
b5132a6b | 538 | if [ -n "${norecurse}" -o -z "${configdirs}" ] ; then exit 0 ; fi |
99a42820 | 539 | |
b5132a6b RP |
540 | # configdirs is not null |
541 | for configdir in ${configdirs} ; do | |
99a42820 | 542 | echo Configuring ${configdir}... |
b5132a6b RP |
543 | specifics= |
544 | commons= | |
545 | ||
546 | if [ -n "${defaulttargets}" ] ; then | |
547 | for host in ${hosts} ; do | |
548 | if [ -d ${configdir}.${host} ] ; then | |
549 | newspecifics="${specifics} ${host}" | |
550 | specifics=${newspecifics} | |
551 | else | |
552 | newcommons="${commons} ${host}" | |
553 | commons=${newcommons} | |
554 | fi # if target specific | |
555 | done # for each host | |
556 | ||
557 | if [ -n "${commons}" ] ; then | |
6c18e393 RP |
558 | if [ -d ${configdir} ] ; then |
559 | (cd ${configdir} ; | |
560 | ./configure ${commons} ${verbose} ${forcesubdirs} ${removing}) \ | |
561 | | sed 's/^/ /' | |
562 | else | |
563 | echo Warning: directory \"${configdir}\" is missing. | |
564 | fi | |
b5132a6b RP |
565 | fi # if any common hosts |
566 | ||
567 | if [ -n "${specifics}" ] ; then | |
568 | for host in ${specifics} ; do | |
569 | echo Configuring target specific directory ${configdir}.${host}... | |
570 | (cd ${configdir}.${host} ; | |
571 | ./configure ${host} ${verbose} ${forcesubdirs} ${removing}) \ | |
572 | | sed 's/^/ /' | |
573 | done # for host in specifics | |
574 | fi # if there are any specifics | |
575 | else | |
576 | ||
577 | for target in ${targets} ; do | |
578 | if [ -d ${configdir}.${target} ] ; then | |
579 | newspecifics="${specifics} ${target}" | |
580 | specifics=${newspecifics} | |
581 | else | |
582 | newcommons="${commons} +target=${target}" | |
583 | commons=${newcommons} | |
584 | fi | |
585 | ||
586 | done # check for target specific dir override | |
587 | ||
588 | if [ -n "${verbose}" ] ; then | |
589 | echo " "commons=\"${commons}\" | |
590 | echo " "specifics=\"${specifics}\" | |
591 | fi # if verbose | |
592 | ||
593 | if [ -n "${commons}" ] ; then | |
6c18e393 RP |
594 | if [ -d ${configdir} ] ; then |
595 | (cd ${configdir} ; | |
596 | ./configure ${hosts} ${verbose} ${forcesubdirs} ${removing} ${commons}) \ | |
597 | | sed 's/^/ /' | |
598 | else | |
599 | echo Warning: directory \"${configdir}\" is missing. | |
600 | fi | |
b5132a6b RP |
601 | fi # if any commons |
602 | ||
603 | if [ -n "${specifics}" ] ; then | |
604 | for target in ${specifics} ; do | |
605 | echo Configuring target specific directory ${configdir}.${target}... | |
606 | (cd ${configdir}.${target} ; | |
607 | ./configure ${hosts} ${verbose} ${forcesubdirs} ${removing} "+target=${target}") \ | |
608 | | sed 's/^/ /' | |
609 | done | |
610 | fi # if any specifics | |
611 | fi # not default targets | |
99a42820 RP |
612 | done |
613 | ||
614 | exit 0 | |
a9c7e163 RP |
615 | |
616 | # | |
617 | # $Log$ | |
21a56d6d JG |
618 | # Revision 1.12 1991/07/20 00:56:41 gnu |
619 | # Roll in configure that handles GDB. | |
620 | # | |
621 | # Revision 1.9 1991/07/06 04:35:51 gnu | |
622 | # Fix bug in configure when iterating targets. | |
623 | # Depend on alldeps.mak, not ${srcdir}/alldeps.mak, so it can be found | |
624 | # in either spot. | |
625 | # | |
626 | # Revision 1.8 1991/07/05 00:04:58 gnu | |
627 | # Thu Jul 4 14:47:06 1991 John Gilmore (gnu at cygint.cygnus.com) | |
628 | # | |
629 | # * configure.in, Makefile.in: Avoid rebuilding "depend" as much. | |
630 | # Avoid declaring Makefile dependencies, because GNU Make stupidly | |
631 | # tries to update it if we do. | |
632 | # | |
633 | # * coffread.c: Revise for minor changes to bfd internal coff | |
634 | # indexes. | |
635 | # | |
636 | # * configure: If -template= is given a relative path, make it | |
637 | # absolute before recurring in subdirectories. | |
6c18e393 | 638 | # |
21a56d6d JG |
639 | # Revision 1.7 1991/07/04 15:59:46 gnu |
640 | # Make gdb work with configure. Only thing that doesn't work is the -list | |
641 | # option (as far as I know). | |
6c18e393 | 642 | # |
21a56d6d JG |
643 | # Revision 1.6 1991/06/04 07:28:16 gnu |
644 | # Change GDB over to GNU General Public License version 2. | |
6c18e393 | 645 | # |
21a56d6d JG |
646 | # Revision 1.5 1991/05/19 07:26:54 rich |
647 | # configure changes and -opcode.h movement. | |
6c18e393 RP |
648 | # |
649 | # Revision 1.4 1991/05/19 00:16:45 rich | |
650 | # Configure for gdb. | |
c4220303 RP |
651 | # |
652 | # Revision 1.10 1991/05/04 00:58:38 rich | |
653 | # Fix program name bug. | |
654 | # | |
655 | # Revision 1.9 1991/05/03 19:14:18 rich | |
656 | # Changed getopt to libiberty, commented out an aborted attempt at host | |
657 | # level Makefiles because it caused errors on +rm, add a warning for | |
658 | # directories expected to be removed on +rm but that don't exist. | |
659 | # | |
660 | # Revision 1.8 1991/04/24 16:50:59 rich | |
661 | # Three staging checkpoint. | |
662 | # | |
663 | # Revision 1.7 1991/04/17 01:34:47 rich | |
664 | # Added getopt for binutils, fixed problem with host dependancies in | |
665 | # configure.template. | |
04dc1a62 RP |
666 | # |
667 | # Revision 1.6 1991/04/16 00:18:44 rich | |
b5132a6b RP |
668 | # Now handles multiple hosts and targets. |
669 | # | |
670 | # Revision 1.5 1991/04/15 23:43:44 rich | |
671 | # Now handles multiple hosts and targets. | |
672 | # | |
673 | # Revision 1.4 1991/04/13 02:11:03 rich | |
ec342d7d RP |
674 | # Config cut 3. We now almost install a29k. |
675 | # | |
676 | # Revision 1.3 1991/04/11 02:41:54 rich | |
677 | # Cut 2 config. Subdirs. | |
a9c7e163 RP |
678 | # |
679 | # | |
680 | # | |
681 | ||
b5132a6b RP |
682 | # |
683 | # Local Variables: | |
684 | # fill-column: 131 | |
685 | # End: | |
686 | # | |
a9c7e163 RP |
687 | |
688 | # end of configure.template |