* Makefile.in (taz): Build "info" in etc explicitly.
[external/binutils.git] / Makefile.in
1 #
2 # Makefile for directory with subdirs to build.
3 #   Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation
4 #
5 # This file is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
18 #
19
20 srcdir = .
21
22 prefix = /usr/local
23
24 exec_prefix = $(prefix)
25 bindir = $(exec_prefix)/bin
26 libdir = $(exec_prefix)/lib
27 tooldir = $(exec_prefix)/$(target)
28
29 program_transform_name =
30
31 datadir = $(prefix)/lib
32 mandir = $(prefix)/man
33 man1dir = $(mandir)/man1
34 man2dir = $(mandir)/man2
35 man3dir = $(mandir)/man3
36 man4dir = $(mandir)/man4
37 man5dir = $(mandir)/man5
38 man6dir = $(mandir)/man6
39 man7dir = $(mandir)/man7
40 man8dir = $(mandir)/man8
41 man9dir = $(mandir)/man9
42 infodir = $(prefix)/info
43 includedir = $(prefix)/include
44 docdir = $(datadir)/doc
45 GDB_NLM_DEPS = 
46
47 SHELL = /bin/sh
48
49 INSTALL = $${srcroot}/install.sh -c
50 INSTALL_PROGRAM = $(INSTALL)
51 INSTALL_DATA = $(INSTALL) -m 644
52 INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
53
54 INSTALL_DOSREL = install-dosrel-fake
55
56 AS = as
57 AR = ar
58 AR_FLAGS = rc
59 CC = cc
60
61 # Special variables passed down in EXTRA_GCC_FLAGS.  They are defined
62 # here so that they can be overridden by Makefile fragments.
63 HOST_CC = $(CC_FOR_BUILD)
64 HOST_PREFIX = 
65 HOST_PREFIX_1 = loser-
66
67 # We don't specify -g -O because many compilers don't support -g -O,
68 # and/or -O is broken in and of itself.
69 CFLAGS = -g
70 LIBCFLAGS = $(CFLAGS)
71 CFLAGS_FOR_TARGET = $(CFLAGS)
72 LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET)
73 PICFLAG = 
74 PICFLAG_FOR_TARGET = 
75
76 # start-sanitize-chill
77 CHILLFLAGS = $(CFLAGS)
78 CHILL_LIB = -lchill
79 # end-sanitize-chill
80 CXX = gcc
81
82 # Use -O2 to stress test the compiler.
83 CXXFLAGS = -g -O2
84 LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates
85 CXXFLAGS_FOR_TARGET = $(CXXFLAGS)
86 LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET) -fno-implicit-templates
87
88 RANLIB = ranlib
89 NM = nm
90 # Not plain GZIP, since gzip looks there for extra command-line options.
91 GZIPPROG = gzip
92
93 # BISON: This line sed'ed to BISON = bison -y for FSF releases, don't remove.
94 BISON = `if [ -f $$r/byacc/byacc ] ; \
95             then echo $$r/byacc/byacc ; \
96             else echo byacc ; \
97         fi`
98
99 LEX = `if [ -f $$r/flex/flex ] ; \
100         then echo $$r/flex/flex ; \
101         else echo flex ; fi`
102
103 M4 = `if [ -f $$r/m4/m4 ] ; \
104         then echo $$r/m4/m4 ; \
105         else echo m4 ; fi`
106
107 MAKEINFO = `if [ -f $$r/texinfo/makeinfo/makeinfo ] ; \
108         then echo $$r/texinfo/makeinfo/makeinfo ; \
109         else echo makeinfo ; fi`
110
111 # This just becomes part of the MAKEINFO definition passed down to
112 # sub-makes.  It lets flags be given on the command line while still
113 # using the makeinfo from the object tree.
114 MAKEINFOFLAGS =
115
116 EXPECT = `if [ -f $$r/expect/expect ] ; \
117         then echo $$r/expect/expect ; \
118         else echo expect ; fi`
119
120 RUNTEST = `if [ -f $${srcroot}/dejagnu/runtest ] ; \
121         then echo $${srcroot}/dejagnu/runtest ; \
122         else echo runtest ; fi`
123
124
125 # compilers to use to create programs which must be run in the build
126 # environment.
127 CC_FOR_BUILD = $(CC)
128 CXX_FOR_BUILD = $(CXX)
129
130 SUBDIRS = "this is set via configure, don't edit this"
131 OTHERS = 
132
133 # This is set by the configure script to the list of directories which
134 # should be built using the target tools.
135 TARGET_CONFIGDIRS = xiberty libgloss newlib libio librx libstdc++ libg++ winsup
136
137 # This is set by the configure script to the arguments passed to configure.
138 CONFIG_ARGUMENTS = 
139
140 ALL = all.normal
141 INSTALL_TARGET = install-dirs \
142         $(INSTALL_MODULES) \
143         $(INSTALL_TARGET_MODULES) \
144         $(INSTALL_X11_MODULES) \
145         install-gcc \
146         $(INSTALL_DOSREL)
147
148
149 CC_FOR_TARGET = ` \
150   if [ -f $$r/gcc/Makefile ] ; then \
151     if [ -f $$r/newlib/Makefile ] ; then \
152       echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/newlib/targ-include -idirafter $${srcroot}/newlib/libc/include -nostdinc; \
153     else \
154       echo $$r/gcc/xgcc -B$$r/gcc/; \
155     fi; \
156   else \
157     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
158       echo $(CC); \
159     else \
160       t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \
161     fi; \
162   fi`
163
164 # start-sanitize-chill
165 CHILL_FOR_TARGET = ` \
166   if [ -f $$r/gcc/Makefile ] ; then \
167     echo $$r/gcc/xgcc -B$$r/gcc/ -L$$r/gcc/ch/runtime/; \
168   else \
169     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
170       echo $(CC); \
171     else \
172       t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \
173     fi; \
174   fi`
175
176 # end-sanitize-chill
177
178 CXX_FOR_TARGET = ` \
179   if [ -f $$r/gcc/Makefile ] ; then \
180     if [ -f $$r/newlib/Makefile ] ; then \
181       echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/newlib/targ-include -idirafter $${srcroot}/newlib/libc/include -nostdinc; \
182     else \
183       echo $$r/gcc/xgcc -B$$r/gcc/; \
184     fi; \
185   else \
186     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
187       echo $(CXX); \
188     else \
189       t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \
190     fi; \
191   fi`
192
193 AS_FOR_TARGET = ` \
194   if [ -f $$r/gas/as.new ] ; then \
195     echo $$r/gas/as.new ; \
196   else \
197     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
198       echo $(AS); \
199     else \
200        t='$(program_transform_name)'; echo as | sed -e 's/x/x/' $$t ; \
201     fi; \
202   fi`
203
204 LD_FOR_TARGET = ` \
205   if [ -f $$r/ld/ld.new ] ; then \
206     echo $$r/ld/ld.new ; \
207   else \
208     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
209       echo $(LD); \
210     else \
211        t='$(program_transform_name)'; echo ld | sed -e 's/x/x/' $$t ; \
212     fi; \
213   fi`
214
215 DLLTOOL_FOR_TARGET = ` \
216   if [ -f $$r/binutils/dlltool ] ; then \
217     echo $$r/binutils/dlltool ; \
218   else \
219     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
220       echo $(DLLTOOL); \
221     else \
222        t='$(program_transform_name)'; echo dlltool | sed -e 's/x/x/' $$t ; \
223     fi; \
224   fi`
225
226 AR_FOR_TARGET = ` \
227   if [ -f $$r/binutils/ar ] ; then \
228     echo $$r/binutils/ar ; \
229   else \
230     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
231       echo $(AR); \
232     else \
233        t='$(program_transform_name)'; echo ar | sed -e 's/x/x/' $$t ; \
234     fi; \
235   fi`
236
237 RANLIB_FOR_TARGET = ` \
238   if [ -f $$r/binutils/ranlib ] ; then \
239     echo $$r/binutils/ranlib ; \
240   else \
241     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
242       echo $(RANLIB); \
243     else \
244        t='$(program_transform_name)'; echo ranlib | sed -e 's/x/x/' $$t ; \
245     fi; \
246   fi`
247
248 NM_FOR_TARGET = ` \
249   if [ -f $$r/binutils/nm.new ] ; then \
250     echo $$r/binutils/nm.new ; \
251   else \
252     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
253       echo $(NM); \
254     else \
255        t='$(program_transform_name)'; echo nm | sed -e 's/x/x/' $$t ; \
256     fi; \
257   fi`
258
259 #### host and target specific makefile fragments come in here.
260 ###
261
262 # Flags to pass down to all sub-makes.
263 # Please keep these in alphabetical order.
264 BASE_FLAGS_TO_PASS = \
265         "AR_FLAGS=$(AR_FLAGS)" \
266         "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
267         "AS_FOR_TARGET=$(AS_FOR_TARGET)" \
268         "BISON=$(BISON)" \
269         "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
270         "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
271         "CFLAGS=$(CFLAGS)" \
272         "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
273         $(start-sanitize-chill)\
274         "CHILLFLAGS=$(CHILLFLAGS)" \
275         "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
276         "CHILL_LIB=$(CHILL_LIB)" \
277         $(end-sanitize-chill)\
278         "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
279         "CXXFLAGS=$(CXXFLAGS)" \
280         "CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \
281         "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
282         "DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \
283         "GCC_FOR_TARGET=$(CC_FOR_TARGET)" \
284         "INSTALL=$(INSTALL)" \
285         "INSTALL_DATA=$(INSTALL_DATA)" \
286         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
287         "INSTALL_XFORM=$(INSTALL_XFORM)" \
288         "LDFLAGS=$(LDFLAGS)" \
289         "LEX=$(LEX)" \
290         "LD_FOR_TARGET=$(LD_FOR_TARGET)" \
291         "LIBCFLAGS=$(LIBCFLAGS)" \
292         "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
293         "LIBCXXFLAGS=$(LIBCXXFLAGS)" \
294         "LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \
295         "M4=$(M4)" \
296         "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
297         "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
298         "PICFLAG=$(PICFLAG)" \
299         "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
300         "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
301         "SHELL=$(SHELL)" \
302         "EXPECT=$(EXPECT)" \
303         "RUNTEST=$(RUNTEST)" \
304         "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
305         "YACC=$(BISON)" \
306         "exec_prefix=$(exec_prefix)" \
307         "prefix=$(prefix)" \
308         "tooldir=$(tooldir)" 
309
310 # Flags to pass down to most sub-makes, in which we're building with
311 # the host environment.
312 # If any variables are added here, they must be added to do-*, below.
313 EXTRA_HOST_FLAGS = \
314         'AR=$(AR)' \
315         'AS=$(AS)' \
316         'CC=$(CC)' \
317         'CXX=$(CXX)' \
318         'NM=$(NM)' \
319         'RANLIB=$(RANLIB)'
320
321 FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)
322
323 # Flags that are concerned with the location of the X11 include files
324 # and library files
325 #
326 # NOTE: until the top-level is getting the values via autoconf, it only
327 # causes problems to have this top-level Makefile overriding the autoconf-set
328 # values in child directories.  Only variables that don't conflict with
329 # autoconf'ed ones should be passed by X11_FLAGS_TO_PASS for now.
330 #
331 X11_FLAGS_TO_PASS = \
332         'X11_EXTRA_CFLAGS=$(X11_EXTRA_CFLAGS)' \
333         'X11_EXTRA_LIBS=$(X11_EXTRA_LIBS)'
334
335 # Flags to pass down to makes which are built with the target environment.
336 # The double $ decreases the length of the command line; the variables
337 # are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them.
338 # If any variables are added here, they must be added to do-*, below.
339 EXTRA_TARGET_FLAGS = \
340         'AR=$$(AR_FOR_TARGET)' \
341         'AS=$$(AS_FOR_TARGET)' \
342         'CC=$$(CC_FOR_TARGET)' \
343         'CFLAGS=$$(CFLAGS_FOR_TARGET)' \
344         'CXX=$$(CXX_FOR_TARGET)' \
345         'CXXFLAGS=$$(CXXFLAGS_FOR_TARGET)' \
346         'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
347         'LD=$$(LD_FOR_TARGET)' \
348         'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET)' \
349         'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET)' \
350         'NM=$$(NM_FOR_TARGET)' \
351         'PICFLAG=$$(PICFLAG_FOR_TARGET)' \
352         'RANLIB=$$(RANLIB_FOR_TARGET)'
353
354 TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)
355
356 # Flags to pass down to gcc.  gcc builds a library, libgcc.a, so it
357 # unfortunately needs the native compiler and the target ar and
358 # ranlib.
359 # If any variables are added here, they must be added to do-*, below.
360 # The HOST_* variables are a special case, which are used for the gcc
361 # cross-building scheme.
362 EXTRA_GCC_FLAGS = \
363         'AR=$$(AR_FOR_TARGET)' \
364         'AS=$(AS)' \
365         'CC=$(CC)' \
366         'CXX=$(CXX)' \
367         'HOST_CC=$(CC_FOR_BUILD)' \
368         'HOST_PREFIX=$(HOST_PREFIX)' \
369         'HOST_PREFIX_1=$(HOST_PREFIX_1)' \
370         'NM=$(NM)' \
371         'RANLIB=$$(RANLIB_FOR_TARGET)'
372
373 GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS)
374
375 # This is a list of the targets for all of the modules which are compiled
376 # using $(FLAGS_TO_PASS).
377 ALL_MODULES = \
378         all-autoconf \
379         all-bfd \
380         all-binutils \
381         all-byacc \
382         all-cvs \
383         all-dejagnu \
384         all-diff \
385         all-dosutils \
386         all-etc \
387         all-fileutils \
388         all-find \
389         all-flex \
390         all-gas \
391         all-gawk \
392         all-gprof \
393         all-grep \
394         all-gzip \
395         all-hello \
396         all-indent \
397         all-ispell \
398         all-ld \
399         all-libiberty \
400         all-m4 \
401         all-make \
402         all-mmalloc \
403         all-opcodes \
404         all-patch \
405         all-prms \
406         all-rcs \
407         all-readline \
408         all-release \
409         all-recode \
410         all-sed \
411         all-send-pr \
412         all-shellutils \
413         all-sim \
414         all-tar \
415         all-tcl \
416         all-texinfo \
417         all-textutils \
418         all-tgas \
419         all-time \
420         all-uudecode \
421         all-wdiff 
422
423 # This is a list of the check targets for all of the modules which are
424 # compiled using $(FLAGS_TO_PASS).
425 # This is a list of the check targets for all of the modules which are
426 # compiled using $(FLAGS_TO_PASS).
427 #
428 # The list is in two parts.  The first lists those tools which
429 # are tested as part of the host's native tool-chain, and not
430 # tested in a cross configuration.
431 NATIVE_CHECK_MODULES = \
432         check-byacc \
433         check-flex
434
435 CROSS_CHECK_MODULES = \
436         check-autoconf \
437         check-bfd \
438         check-binutils \
439         check-cvs \
440         check-dejagnu \
441         check-diff \
442         check-etc \
443         check-fileutils \
444         check-find \
445         check-gas \
446         check-gawk \
447         check-gprof \
448         check-grep \
449         check-gzip \
450         check-hello \
451         check-indent \
452         check-ispell \
453         check-ld \
454         check-libiberty \
455         check-m4 \
456         check-make \
457         check-mmcheckoc \
458         check-opcodes \
459         check-patch \
460         check-prms \
461         check-rcs \
462         check-readline \
463         check-recode \
464         check-sed \
465         check-send-pr \
466         check-shellutils \
467         check-sim \
468         check-tar \
469         check-tcl \
470         check-texinfo \
471         check-textutils \
472         check-tgas \
473         check-time \
474         check-uudecode \
475         check-wdiff
476
477 CHECK_MODULES=$(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
478
479 # This is a list of the install targets for all of the modules which are
480 # compiled using $(FLAGS_TO_PASS).
481 INSTALL_MODULES = \
482         install-autoconf \
483         install-bfd \
484         install-binutils \
485         install-byacc \
486         install-cvs \
487         install-dejagnu \
488         install-diff \
489         install-dosutils \
490         install-etc \
491         install-fileutils \
492         install-find \
493         install-flex \
494         install-gas \
495         install-gawk \
496         install-gprof \
497         install-grep \
498         install-gzip \
499         install-hello \
500         install-indent \
501         install-ispell \
502         install-ld \
503         install-libiberty \
504         install-m4 \
505         install-make \
506         install-mmalloc \
507         install-opcodes \
508         install-patch \
509         install-prms \
510         install-rcs \
511         install-readline \
512         install-recode \
513         install-sed \
514         install-send-pr \
515         install-shellutils \
516         install-sim \
517         install-tar \
518         install-tcl \
519         install-texinfo \
520         install-textutils \
521         install-tgas \
522         install-time \
523         install-uudecode \
524         install-wdiff
525
526 # This is a list of the targets for all of the modules which are compiled
527 # using $(X11_FLAGS_TO_PASS).
528 ALL_X11_MODULES = \
529         all-emacs \
530         all-emacs19 \
531         all-gdb \
532         all-expect \
533         all-gash \
534         all-tclX \
535         all-tk
536
537 # This is a list of the check targets for all of the modules which are
538 # compiled using $(X11_FLAGS_TO_PASS).
539 CHECK_X11_MODULES = \
540         check-emacs \
541         check-gdb \
542         check-expect \
543         check-gash \
544         check-tclX \
545         check-tk
546
547 # This is a list of the install targets for all the modules which are
548 # compiled using $(X11_FLAGS_TO_PASS).
549 INSTALL_X11_MODULES = \
550         install-emacs \
551         install-emacs19 \
552         install-gdb \
553         install-expect \
554         install-gash \
555         install-tclX \
556         install-tk
557
558 # This is a list of the targets for all of the modules which are compiled
559 # using $(TARGET_FLAGS_TO_PASS).
560 ALL_TARGET_MODULES = \
561         all-libio \
562         all-libstdc++ \
563         all-librx \
564         all-libg++ \
565         all-newlib \
566         all-winsup \
567         all-libgloss \
568         all-xiberty
569
570 # This is a list of the configure targets for all of the modules which
571 # are compiled using the target tools.
572 CONFIGURE_TARGET_MODULES = \
573         configure-libio \
574         configure-libstdc++ \
575         configure-librx \
576         configure-libg++ \
577         configure-newlib \
578         configure-winsup \
579         configure-libgloss \
580         configure-xiberty
581
582 # This is a list of the check targets for all of the modules which are
583 # compiled using $(TARGET_FLAGS_TO_PASS).
584 CHECK_TARGET_MODULES = \
585         check-libio \
586         check-libstdc++ \
587         check-libg++ \
588         check-newlib \
589         check-winsup \
590         check-xiberty
591
592 # This is a list of the install targets for all of the modules which are
593 # compiled using $(TARGET_FLAGS_TO_PASS).
594 INSTALL_TARGET_MODULES = \
595         install-libio \
596         install-libstdc++ \
597         install-libg++ \
598         install-newlib \
599         install-winsup \
600         install-libgloss \
601         install-xiberty
602
603 # This is a shell case of all modules which are compiled using
604 # $(TARGET_FLAGS_TO_PASS), used in the do-X rule.
605 TARGET_LIBS = libio | libstdc++ | librx | libg++ | newlib | xiberty | winsup
606
607 # The first rule in the file had better be this one.  Don't put any above it.
608 all: all.normal
609 .PHONY: all
610
611 # The target built for a native build.
612 .PHONY: all.normal
613 all.normal: \
614         $(ALL_MODULES) \
615         $(ALL_TARGET_MODULES) \
616         $(ALL_X11_MODULES) \
617         all-gcc
618
619 # Do a target for all the subdirectories.  A ``make do-X'' will do a
620 # ``make X'' in all subdirectories (because, in general, there is a
621 # dependency (below) of X upon do-X, a ``make X'' will also do this,
622 # but it may do additional work as well).
623 # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
624 # because it is so large that it can easily overflow the command line
625 # length limit on some systems.
626 DO_X = \
627         do-clean \
628         do-distclean \
629         do-dvi \
630         do-info \
631         do-install-info \
632         do-installcheck \
633         do-mostlyclean \
634         do-maintainer-clean \
635         do-TAGS
636 .PHONY: $(DO_X)
637 $(DO_X):
638         @target=`echo $@ | sed -e 's/^do-//'`; \
639         r=`pwd`; export r; \
640         srcroot=`cd $(srcdir); pwd`; export srcroot; \
641         for i in $(SUBDIRS) $(TARGET_CONFIGDIRS); do \
642           if [ -f ./$$i/Makefile ]; then \
643             case $$i in \
644             $(TARGET_LIBS) ) \
645               for flag in $(EXTRA_TARGET_FLAGS); do \
646                 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
647               done; \
648               ;; \
649             gcc) \
650               for flag in $(EXTRA_GCC_FLAGS); do \
651                 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
652               done; \
653               ;; \
654             *) \
655               for flag in $(EXTRA_HOST_FLAGS); do \
656                 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
657               done; \
658               ;; \
659             esac ; \
660             export AR AS CC CXX NM RANLIB; \
661             if (cd ./$$i; \
662                 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
663                         "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \
664                         "RANLIB=$${RANLIB}" \
665                         $${target}); \
666             then true; else exit 1; fi; \
667           else true; fi; \
668         done
669
670 # Here are the targets which correspond to the do-X targets.
671
672 .PHONY: info installcheck dvi install-info
673 .PHONY: clean distclean mostlyclean maintainer-clean realclean
674 .PHONY: local-clean local-distclean local-maintainer-clean
675 info: do-info
676 installcheck: do-installcheck
677 dvi: do-dvi
678
679 install-info: do-install-info dir.info
680         srcroot=`cd $(srcdir); pwd`; export srcroot; \
681         if [ -f dir.info ] ; then \
682           $(INSTALL_DATA) dir.info $(infodir)/dir.info ; \
683         else true ; fi
684
685 local-clean:
686         -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E
687
688 local-distclean:
689         -rm -f Makefile config.status
690
691 local-maintainer-clean:
692         @echo "This command is intended for maintainers to use;"
693         @echo "it deletes files that may require special tools to rebuild."
694
695 clean: do-clean local-clean
696 mostlyclean: do-mostlyclean local-clean
697 distclean: do-distclean local-clean local-distclean
698 maintainer-clean: local-maintainer-clean do-maintainer-clean local-clean 
699 maintainer-clean: local-distclean
700 realclean: maintainer-clean
701
702 # Check target.
703
704 .PHONY: check
705 check: $(CHECK_MODULES) \
706         $(CHECK_TARGET_MODULES) \
707         $(CHECK_X11_MODULES) \
708         check-gcc
709
710 # Installation targets.
711
712 .PHONY: install uninstall source-vault binary-vault vault-install
713 install: $(INSTALL_TARGET) 
714
715 uninstall:
716         @echo "the uninstall target is not supported in this tree"
717
718 source-vault:
719         $(MAKE) -f ./release/Build-A-Release \
720                 host=$(host_alias) source-vault
721
722 binary-vault:
723         $(MAKE) -f ./release/Build-A-Release \
724                 host=$(host_alias) target=$(target_alias)
725
726 vault-install:
727         @if [ -f ./release/vault-install ] ; then \
728           ./release/vault-install $(host_alias) $(target_alias) ; \
729         else \
730           true ; \
731         fi
732
733 .PHONY: install.all
734 install.all: install-no-fixedincludes
735         @if [ -f ./gcc/Makefile ] ; then \
736                 r=`pwd` ; export r ; \
737                 (cd ./gcc; \
738                 $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
739         else \
740                 true ; \
741         fi
742
743 # install-no-fixedincludes is used because Cygnus can not distribute
744 # the fixed header files.
745 .PHONY: install-no-fixedincludes
746 install-no-fixedincludes: \
747         install-dirs \
748         $(INSTALL_MODULES) \
749         $(INSTALL_TARGET_MODULES) \
750         $(INSTALL_X11_MODULES) \
751         gcc-no-fixedincludes 
752
753 # Install the gcc headers files, but not the fixed include files,
754 # which Cygnus is not allowed to distribute.  This rule is very
755 # dependent on the workings of the gcc Makefile.in.
756 .PHONY: gcc-no-fixedincludes
757 gcc-no-fixedincludes:
758         @if [ -f ./gcc/Makefile ]; then \
759           rm -rf gcc/tmp-include; \
760           mv gcc/include gcc/tmp-include 2>/dev/null; \
761           mkdir gcc/include; \
762           cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \
763           touch gcc/stmp-fixinc gcc/include/fixed; \
764           rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \
765           r=`pwd`; export r; \
766           srcroot=`cd $(srcdir); pwd` ; export srcroot; \
767           (cd ./gcc; \
768            $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
769           rm -rf gcc/include; \
770           mv gcc/tmp-include gcc/include 2>/dev/null; \
771         else true; fi
772
773 # This rule is used to build the modules which use FLAGS_TO_PASS.  To
774 # build a target all-X means to cd to X and make all.
775 #
776 # all-gui, and all-libproc are handled specially because
777 # they are still experimental, and if they fail to build, that
778 # shouldn't stop "make all".
779 .PHONY: $(ALL_MODULES) all-gui all-libproc
780 $(ALL_MODULES) all-gui all-libproc:
781         @dir=`echo $@ | sed -e 's/all-//'`; \
782         if [ -f ./$${dir}/Makefile ] ; then \
783           r=`pwd`; export r; \
784           srcroot=`cd $(srcdir); pwd`; export srcroot; \
785           (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
786         else \
787           true; \
788         fi
789
790 # These rules are used to check the modules which use FLAGS_TO_PASS.
791 # To build a target check-X means to cd to X and make check.  Some
792 # modules are only tested in a native toolchain.
793
794 .PHONY: $(CHECK_MODULES) $(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
795 $(NATIVE_CHECK_MODULES):
796         @if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
797           dir=`echo $@ | sed -e 's/check-//'`; \
798           if [ -f ./$${dir}/Makefile ] ; then \
799             r=`pwd`; export r; \
800             srcroot=`cd $(srcdir); pwd`; export srcroot; \
801             (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
802           else \
803             true; \
804           fi; \
805         fi
806
807 $(CROSS_CHECK_MODULES):
808         @dir=`echo $@ | sed -e 's/check-//'`; \
809         if [ -f ./$${dir}/Makefile ] ; then \
810           r=`pwd`; export r; \
811           srcroot=`cd $(srcdir); pwd`; export srcroot; \
812           (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
813         else \
814           true; \
815         fi
816
817 # This rule is used to install the modules which use FLAGS_TO_PASS.
818 # To build a target install-X means to cd to X and make install.
819 .PHONY: $(INSTALL_MODULES)
820 $(INSTALL_MODULES): install-dirs
821         @dir=`echo $@ | sed -e 's/install-//'`; \
822         if [ -f ./$${dir}/Makefile ] ; then \
823           r=`pwd`; export r; \
824           srcroot=`cd $(srcdir); pwd`; export srcroot; \
825           (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
826         else \
827           true; \
828         fi
829
830 # This rule is used to configure the modules which are built with the
831 # target tools.
832 .PHONY: $(CONFIGURE_TARGET_MODULES)
833 $(CONFIGURE_TARGET_MODULES):
834         @dir=`echo $@ | sed -e 's/configure-//'`; \
835         if [ -f ./$${dir}/Makefile ] ; then \
836           true; \
837         elif echo " $(TARGET_CONFIGDIRS) " | grep " $${dir} " >/dev/null 2>&1; then \
838           if [ -d $(srcdir)/$${dir} ]; then \
839             if [ -d ./$${dir} ]; then true; else mkdir $${dir}; fi; \
840             r=`pwd`; export r; \
841             srcroot=`cd $(srcdir); pwd`; export srcroot; \
842             AR="$(AR_FOR_TARGET)"; export AR; \
843             AS="$(AS_FOR_TARGET)"; export AS; \
844             CC="$(CC_FOR_TARGET)"; export CC; \
845             CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
846             CXX="$(CXX_FOR_TARGET)"; export CXX; \
847             CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
848             LD="$(LD_FOR_TARGET)"; export LD; \
849             NM="$(NM_FOR_TARGET)"; export NM; \
850             RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \
851             cd $${dir}; \
852             $${srcroot}/configure $(CONFIG_ARGUMENTS) --srcdir=$${srcroot}/$${dir}; \
853           else \
854             true; \
855           fi \
856         else \
857           true; \
858         fi
859
860 # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
861 # To build a target all-X means to cd to X and make all.
862 .PHONY: $(ALL_TARGET_MODULES)
863 $(ALL_TARGET_MODULES):
864         @dir=`echo $@ | sed -e 's/all-//'`; \
865         if [ -f ./$${dir}/Makefile ] ; then \
866           r=`pwd`; export r; \
867           srcroot=`cd $(srcdir); pwd`; export srcroot; \
868           (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) all); \
869         else \
870           true; \
871         fi
872
873 # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
874 # To build a target install-X means to cd to X and make install.
875 .PHONY: $(CHECK_TARGET_MODULES)
876 $(CHECK_TARGET_MODULES):
877         @dir=`echo $@ | sed -e 's/check-//'`; \
878         if [ -f ./$${dir}/Makefile ] ; then \
879           r=`pwd`; export r; \
880           srcroot=`cd $(srcdir); pwd`; export srcroot; \
881           (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) check); \
882         else \
883           true; \
884         fi
885
886 # This rule is used to install the modules which use
887 # TARGET_FLAGS_TO_PASS.  To build a target install-X means to cd to X
888 # and make install.
889 .PHONY: $(INSTALL_TARGET_MODULES)
890 $(INSTALL_TARGET_MODULES): install-dirs
891         @dir=`echo $@ | sed -e 's/install-//'`; \
892         if [ -f ./$${dir}/Makefile ] ; then \
893           r=`pwd`; export r; \
894           srcroot=`cd $(srcdir); pwd`; export srcroot; \
895           (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) install); \
896         else \
897           true; \
898         fi
899
900 # This rule is used to build the modules which use X11_FLAGS_TO_PASS.
901 # To build a target all-X means to cd to X and make all.
902 .PHONY: $(ALL_X11_MODULES)
903 $(ALL_X11_MODULES):
904         @dir=`echo $@ | sed -e 's/all-//'`; \
905         if [ -f ./$${dir}/Makefile ] ; then \
906           r=`pwd`; export r; \
907           srcroot=`cd $(srcdir); pwd`; export srcroot; \
908           (cd $${dir}; \
909            $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \
910         else \
911           true; \
912         fi
913
914 # This rule is used to check the modules which use X11_FLAGS_TO_PASS.
915 # To build a target check-X means to cd to X and make all.
916 .PHONY: $(CHECK_X11_MODULES)
917 $(CHECK_X11_MODULES):
918         @dir=`echo $@ | sed -e 's/check-//'`; \
919         if [ -f ./$${dir}/Makefile ] ; then \
920           r=`pwd`; export r; \
921           srcroot=`cd $(srcdir); pwd`; export srcroot; \
922           (cd $${dir}; \
923            $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \
924         else \
925           true; \
926         fi
927
928 # This rule is used to install the modules which use X11_FLAGS_TO_PASS.
929 # To build a target install-X means to cd to X and make install.
930 .PHONY: $(INSTALL_X11_MODULES)
931 $(INSTALL_X11_MODULES):
932         @dir=`echo $@ | sed -e 's/install-//'`; \
933         if [ -f ./$${dir}/Makefile ] ; then \
934           r=`pwd`; export r; \
935           srcroot=`cd $(srcdir); pwd`; export srcroot; \
936           (cd $${dir}; \
937            $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \
938         else \
939           true; \
940         fi
941
942 # gcc is the only module which uses GCC_FLAGS_TO_PASS.
943 .PHONY: all-gcc
944 all-gcc:
945         @if [ -f ./gcc/Makefile ] ; then \
946           r=`pwd`; export r; \
947           srcroot=`cd $(srcdir); pwd`; export srcroot; \
948           (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \
949         else \
950           true; \
951         fi
952
953 .PHONY: check-gcc
954 check-gcc:
955         @if [ -f ./gcc/Makefile ] ; then \
956           r=`pwd`; export r; \
957           srcroot=`cd $(srcdir); pwd`; export srcroot; \
958           (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \
959         else \
960           true; \
961         fi
962
963 .PHONY: install-gcc
964 install-gcc:
965         @if [ -f ./gcc/Makefile ] ; then \
966           r=`pwd`; export r; \
967           srcroot=`cd $(srcdir); pwd`; export srcroot; \
968           (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
969         else \
970           true; \
971         fi
972
973
974 # EXPERIMENTAL STUFF
975 # This rule is used to install the modules which use FLAGS_TO_PASS.
976 # To build a target install-X means to cd to X and make install.
977 .PHONY: install-dosrel
978 install-dosrel: install-dirs info
979         @dir=`echo $@ | sed -e 's/install-//'`; \
980         if [ -f ./$${dir}/Makefile ] ; then \
981           r=`pwd`; export r; \
982           srcroot=`cd $(srcdir); pwd`; export srcroot; \
983           (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
984         else \
985           true; \
986         fi
987
988 install-dosrel-fake:
989
990
991 # This is a list of inter-dependencies among modules.
992 all-autoconf: all-m4
993 all-bfd:
994 all-binutils: all-libiberty all-opcodes all-bfd all-flex all-byacc
995 all-byacc:
996 all-cvs:
997 all-dejagnu: all-tcl all-expect all-tk
998 all-diff: all-libiberty
999 all-emacs:
1000 all-emacs19: all-byacc
1001 all-etc:
1002 all-expect: all-tcl all-tk
1003 all-fileutils: all-libiberty
1004 all-find:
1005 all-flex: all-libiberty all-byacc
1006 all-gas: all-libiberty all-opcodes all-bfd
1007 all-gash: all-tcl
1008 all-gawk:
1009 all-gcc: all-libiberty all-byacc all-binutils all-gas all-ld
1010 all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-byacc all-sim $(gdbnlmrequirements)
1011 all-gprof: all-libiberty all-bfd
1012 all-grep: all-libiberty
1013 all-gui: all-gdb all-libproc all-librx
1014 all-gzip: all-libiberty
1015 all-hello: all-libiberty
1016 all-indent:
1017 all-ispell: all-emacs19
1018 all-ld: all-libiberty all-bfd all-byacc all-flex
1019 configure-libg++: all-gcc
1020 all-libg++: configure-libg++ all-gas all-ld all-gcc all-xiberty all-newlib all-libio all-librx all-libstdc++
1021 configure-libgloss: all-gcc
1022 all-libgloss: configure-libgloss
1023 configure-libio: all-gcc
1024 all-libio: configure-libio all-gas all-ld all-gcc all-xiberty all-newlib
1025 all-libiberty:
1026 configure-librx: all-gcc all-newlib
1027 all-librx: configure-librx
1028 configure-libstdc++: all-gcc
1029 all-libstdc++: configure-libstdc++ all-gas all-ld all-gcc all-xiberty all-newlib all-libio
1030 all-m4: all-libiberty
1031 all-make: all-libiberty
1032 all-mmalloc:
1033 configure-newlib: all-gcc
1034 all-newlib: configure-newlib all-binutils all-gas all-gcc
1035 all-opcodes: all-bfd
1036 all-patch:
1037 all-prms: all-libiberty
1038 all-rcs:
1039 all-readline:
1040 all-recode: all-libiberty
1041 all-sed: all-libiberty
1042 all-send-pr: all-prms
1043 all-shellutils:
1044 all-sim: all-libiberty all-bfd
1045 all-tar: all-libiberty
1046 all-tcl:
1047 all-tclX: all-tcl all-tk
1048 all-tk: all-tcl
1049 all-texinfo: all-libiberty
1050 all-textutils:
1051 all-tgas: all-libiberty all-bfd
1052 all-time:
1053 all-wdiff:
1054 all-winsup: all-newlib 
1055 configure-winsup: configure-newlib
1056 all-uudecode: all-libiberty
1057 configure-xiberty: all-gcc
1058 all-xiberty: configure-xiberty all-gcc all-ld all-newlib
1059
1060 ### other supporting targets
1061
1062 MAKEDIRS= \
1063         $(prefix) \
1064         $(exec_prefix) \
1065         $(tooldir)
1066
1067 .PHONY: install-dirs
1068 install-dirs:
1069         @for i in $(MAKEDIRS) ; do \
1070                 echo Making $$i... ; \
1071                 parent=`echo $$i | sed -e 's@/[^/]*$$@@' | sed -e 's@^$$@/@'`; \
1072                 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi ; \
1073                 if [ ! -d $$i ] ; then \
1074                         if mkdir $$i ; then \
1075                                 true ; \
1076                         else \
1077                                 exit 1 ; \
1078                         fi ; \
1079                 else \
1080                         true ; \
1081                 fi ; \
1082         done
1083
1084
1085 dir.info: do-install-info
1086         if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \
1087           $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \
1088           mv -f dir.info.new dir.info ; \
1089         else true ; \
1090         fi
1091
1092 dist:
1093         @echo "Building a full distribution of this tree isn't done"
1094         @echo "via 'make dist'.  Check out the etc/ subdirectory" 
1095
1096 etags tags: TAGS
1097
1098 # Right now this just builds TAGS in each subdirectory.  emacs19 has the
1099 # ability to use several tags files at once, so there is probably no need
1100 # to combine them into one big TAGS file (like CVS 1.3 does).  We could
1101 # (if we felt like it) have this Makefile write a piece of elisp which
1102 # the user could load to tell emacs19 where all the TAGS files we just
1103 # built are.
1104 TAGS: do-TAGS
1105
1106 # with the gnu make, this is done automatically.
1107
1108 Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag)
1109         $(SHELL) ./config.status
1110
1111 #
1112 # Support for building net releases
1113
1114 # Files in devo used in any net release.
1115 # ChangeLog omitted because it may refer to files which are not in this
1116 # distribution (perhaps it would be better to include it anyway).
1117 DEVO_SUPPORT= README Makefile.in configure configure.in \
1118         config.guess config.sub config move-if-change \
1119         mpw-README mpw-build.in mpw-config.in mpw-configure \
1120         COPYING COPYING.LIB install.sh
1121
1122 # Files in devo/etc used in any net release.
1123 # ChangeLog omitted because it may refer to files which are not in this
1124 # distribution (perhaps it would be better to include it anyway).
1125 ETC_SUPPORT= Makefile.in cfg-paper.texi configure.in configure.man \
1126         configure.texi standards.texi make-stds.texi
1127 ETC_SUPPORT_PFX=configure.info standards.info cfg-paper.info
1128
1129 # When you use `make setup-dirs' or `make taz' you should always redefine
1130 # this macro.
1131 SUPPORT_FILES = list-of-support-files-for-tool-in-question
1132 # Files where "byacc" (Cygnus version) should be changed to "bison -y" (FSF).
1133 DISTBISONFILES= binutils/Makefile.in gas/Makefile.in gdb/Makefile.in
1134
1135 .PHONY: taz
1136
1137 taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \
1138   texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1139         # Make sure "diststuff" files get built properly.
1140         for f in $(DISTBISONFILES) ; do \
1141           if [ -r $$f ]; then \
1142             sed '/^BISON *=.*$$/s/.*/BISON = bison -y/' <$$f >tmp ; \
1143             mv -f tmp $$f ; \
1144           else true; fi ; \
1145         done
1146         # Take out texinfo from a few places; make simple BISON=bison line.
1147         sed -e '/^all\.normal: /s/\all-texinfo //' \
1148             -e '/^      install-texinfo /d' \
1149             -e '/^BISON = /,/^$$/d' \
1150             -e '/^# BISON:/s/.*/BISON = bison -y/' \
1151         <Makefile.in >tmp
1152         mv -f tmp Makefile.in
1153         #
1154         $(start-sanitize-Sanitize)
1155         @if [ -f .Sanitize ] ; then echo "RUN Sanitize FIRST!" ; false ; fi ;
1156         $(end-sanitize-Sanitize)
1157         ./configure sun4
1158         # Make links, and run "make diststuff" or "make info" when needed.
1159         rm -rf proto-toplev ; mkdir proto-toplev
1160         set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
1161         for d in $$dirs ; do \
1162           if [ -d $$d ]; then \
1163             if grep '^diststuff:' $$d/Makefile >/dev/null ; then \
1164                 (cd $$d ; $(MAKE) diststuff ) || exit 1  ; \
1165             elif grep '^info:' $$d/Makefile >/dev/null ; then \
1166                 (cd $$d ; $(MAKE) info ) || exit 1  ; \
1167             fi ; \
1168             if [ -d $$d/proto-$$d.dir ]; then \
1169               ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
1170             else \
1171               ln -s ../$$d proto-toplev/$$d ; \
1172             fi ; \
1173           else ln -s ../$$d proto-toplev/$$d ; fi ; \
1174         done
1175         cd etc ; $(MAKE) info
1176         $(MAKE) distclean
1177         #
1178         mkdir proto-toplev/etc
1179         (cd proto-toplev/etc; \
1180          for i in $(ETC_SUPPORT); do \
1181                 ln -s ../../etc/$$i . ; \
1182          done ; \
1183          for i in $(ETC_SUPPORT_PFX); do \
1184                 ln -s ../../etc/$$i* . ; \
1185          done)
1186         #
1187         # Take out texinfo from configurable dirs
1188         rm proto-toplev/configure.in
1189         sed -e '/^host_tools=/s/texinfo //' \
1190             <configure.in >proto-toplev/configure.in
1191         #
1192         mkdir proto-toplev/texinfo
1193         ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
1194         ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/
1195         ln -s ../../texinfo/lgpl.texinfo proto-toplev/texinfo/
1196         ln -s ../../texinfo/tex3patch   proto-toplev/texinfo/
1197         chmod og=u `find . -print`
1198         (VER=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \
1199                 echo "==> Making $(TOOL)-$$VER.tar.gz"; \
1200                 rm -f $(TOOL)-$$VER; ln -s proto-toplev $(TOOL)-$$VER; \
1201                 tar cfh - $(TOOL)-$$VER \
1202                 | $(GZIPPROG) -v -9 >$(TOOL)-$$VER.tar.gz )
1203
1204 TEXINFO_SUPPORT= texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1205 DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT)
1206
1207 .PHONY: gas.tar.gz
1208 GAS_SUPPORT_DIRS= bfd include libiberty opcodes
1209 gas.tar.gz: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas
1210         $(MAKE) -f Makefile.in taz TOOL=gas \
1211                 SUPPORT_FILES="$(GAS_SUPPORT_DIRS)"
1212
1213 # The FSF "binutils" release includes gprof and ld.
1214 .PHONY: binutils.tar.gz
1215 BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof
1216 binutils.tar.gz: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils
1217         $(MAKE) -f Makefile.in taz TOOL=binutils \
1218                 SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS) makeall.bat configure.bat"
1219
1220 .PHONY: gas+binutils.tar.gz
1221 GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof
1222 gas+binutils.tar.gz: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas
1223         $(MAKE) -f Makefile.in taz TOOL=gas \
1224                 SUPPORT_FILES="$(GASB_SUPPORT_DIRS) makeall.bat configure.bat"
1225
1226 .PHONY: libg++.tar.gz
1227 LIBGXX_SUPPORT_DIRS=include libstdc++ libio librx libiberty xiberty
1228 libg++.tar.gz: $(DIST_SUPPORT) libg++
1229         $(MAKE) -f Makefile.in taz TOOL=libg++ \
1230                 SUPPORT_FILES="$(LIBGXX_SUPPORT_DIRS)"
1231
1232 GNATS_SUPPORT_DIRS=include libiberty send-pr
1233 gnats.tar.gz: $(DIST_SUPPORT) $(GNATS_SUPPORT_DIRS) gnats
1234         $(MAKE) -f  Makefile.in taz TOOL=gnats \
1235                 SUPPORT_FILES="$(GNATS_SUPPORT_DIRS)"
1236
1237 .PHONY: gdb.tar.gz
1238 GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline sim utils
1239 GDBTK_SUPPORT_DIRS= `if [ -d tcl -a -d tk ] ; then echo tcl tk ; fi`
1240 gdb.tar.gz: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb
1241         $(MAKE) -f Makefile.in taz TOOL=gdb \
1242                 SUPPORT_FILES="$(GDB_SUPPORT_DIRS) $(GDBTK_SUPPORT_DIRS)"
1243
1244 .PHONY: newlib.tar.gz
1245 NEWLIB_SUPPORT_DIRS=libgloss
1246 # taz configures for the sun4 target which won't configure newlib.
1247 # We need newlib configured so that the .info files are made.
1248 # Unfortunately, it is not enough to just configure newlib separately:
1249 # taz will build the .info files but since SUBDIRS won't contain newlib,
1250 # distclean won't be run (leaving Makefile, config.status, and the tmp files
1251 # used in building the .info files, eg: *.def, *.ref).
1252 # Compensate here by configuring newlib for a simple (no multilib support)
1253 # cross target (sparc64), building the info files, and doing make distclean
1254 # ourselves.
1255 newlib.tar.gz: $(DIST_SUPPORT) $(NEWLIB_SUPPORT_DIRS) newlib
1256         rootme=`pwd` ; \
1257           cd newlib && ../configure --srcdir $$rootme/newlib \
1258                 --host sun4 --target sparc64-elf
1259         cd newlib ; make info
1260         cd newlib ; make distclean
1261         $(MAKE) -f Makefile.in taz TOOL=newlib \
1262                 SUPPORT_FILES="$(NEWLIB_SUPPORT_DIRS)" \
1263                 DEVO_SUPPORT="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib
1264
1265 .NOEXPORT:
1266 MAKEOVERRIDES=
1267
1268 # start-sanitize-chill
1269 ## This is ugly, but I don't want GNU make to put these variables in
1270 ## the environment.  Older makes will see this as a set of targets
1271 ## with no dependencies and no actions.
1272 unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
1273 # end-sanitize-chill
1274
1275 # end of Makefile.in