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