* ylwrap: New file.
[platform/upstream/binutils.git] / Makefile.in
1 #
2 # Makefile for directory with subdirs to build.
3 #   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 1997 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)/share
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 GDB_NLM_DEPS = 
45
46 SHELL = /bin/sh
47
48 # INSTALL_PROGRAM_ARGS is changed by configure.in to use -x for a
49 # cygwin32 host.
50 INSTALL_PROGRAM_ARGS =
51
52 INSTALL = $(SHELL) $$s/install-sh -c
53 INSTALL_PROGRAM = $(INSTALL) $(INSTALL_PROGRAM_ARGS)
54 INSTALL_SCRIPT = $(INSTALL)
55 INSTALL_DATA = $(INSTALL) -m 644
56
57 INSTALL_DOSREL = install-dosrel-fake
58
59 AS = as
60 AR = ar
61 AR_FLAGS = rc
62 CC = cc
63
64 # Special variables passed down in EXTRA_GCC_FLAGS.  They are defined
65 # here so that they can be overridden by Makefile fragments.
66 HOST_CC = $(CC_FOR_BUILD)
67 HOST_PREFIX = 
68 HOST_PREFIX_1 = loser-
69
70 # These flag values are normally overridden by the configure script.
71 CFLAGS = -g
72 CXXFLAGS = -g -O2
73
74 LIBCFLAGS = $(CFLAGS)
75 CFLAGS_FOR_TARGET = $(CFLAGS)
76 LDFLAGS_FOR_TARGET = 
77 LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET)
78 PICFLAG = 
79 PICFLAG_FOR_TARGET = 
80
81 # start-sanitize-chill
82 CHILLFLAGS = $(CFLAGS)
83 CHILL_LIB = -lchill
84 # end-sanitize-chill
85 CXX = c++
86
87 # Use -O2 to stress test the compiler.
88 LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates
89 CXXFLAGS_FOR_TARGET = $(CXXFLAGS)
90 LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET) -fno-implicit-templates
91
92 RANLIB = ranlib
93
94 DLLTOOL = dlltool
95 WINDRES = windres
96
97 NM = nm
98
99 LD = ld
100
101 # Not plain GZIP, since gzip looks there for extra command-line options.
102 GZIPPROG = gzip
103
104 # These values are substituted by configure.
105 DEFAULT_YACC = yacc
106 DEFAULT_LEX = lex
107
108 # BISON: This line sed'ed to BISON = bison -y for FSF releases, don't remove.
109 BISON = `if [ -f $$r/byacc/byacc ] ; \
110             then echo $$r/byacc/byacc ; \
111             else echo ${DEFAULT_YACC} ; \
112         fi`
113
114 LEX = `if [ -f $$r/flex/flex ] ; \
115         then echo $$r/flex/flex ; \
116         else echo ${DEFAULT_LEX} ; fi`
117
118 M4 = `if [ -f $$r/m4/m4 ] ; \
119         then echo $$r/m4/m4 ; \
120         else echo m4 ; fi`
121
122 MAKEINFO = `if [ -f $$r/texinfo/makeinfo/Makefile ] ; \
123         then echo $$r/texinfo/makeinfo/makeinfo ; \
124         else echo makeinfo ; fi`
125
126 # This just becomes part of the MAKEINFO definition passed down to
127 # sub-makes.  It lets flags be given on the command line while still
128 # using the makeinfo from the object tree.
129 MAKEINFOFLAGS =
130
131 EXPECT = `if [ -f $$r/expect/expect ] ; \
132         then echo $$r/expect/expect ; \
133         else echo expect ; fi`
134
135 RUNTEST = `if [ -f $$s/dejagnu/runtest ] ; \
136         then echo $$s/dejagnu/runtest ; \
137         else echo runtest ; fi`
138
139
140 # compilers to use to create programs which must be run in the build
141 # environment.
142 CC_FOR_BUILD = $(CC)
143 CXX_FOR_BUILD = $(CXX)
144
145 SUBDIRS = "this is set via configure, don't edit this"
146 OTHERS = 
147
148 # This is set by the configure script to the list of directories which
149 # should be built using the target tools.
150 TARGET_CONFIGDIRS = libiberty libgloss newlib libio librx libstdc++ libg++ winsup
151
152 # Target libraries are put under this directory:
153 # Changed by configure to $(target_alias) if cross.
154 TARGET_SUBDIR = .
155
156 # This is set by the configure script to the arguments passed to configure.
157 CONFIG_ARGUMENTS = 
158
159 # This is set by configure to REALLY_SET_LIB_PATH if --enable-shared
160 # was used.
161 SET_LIB_PATH =
162
163 # This is the name of the environment variable used for the path to
164 # the libraries.  This may be changed by configure.in.
165 RPATH_ENVVAR = LD_LIBRARY_PATH
166
167 # configure.in sets SET_LIB_PATH to this if --enable-shared was used.
168 REALLY_SET_LIB_PATH = \
169   $(RPATH_ENVVAR)=$$r/bfd:$$r/opcodes:$$$(RPATH_ENVVAR); \
170   export $(RPATH_ENVVAR);
171
172 ALL = all.normal
173 INSTALL_TARGET = installdirs \
174         $(INSTALL_MODULES) \
175         $(INSTALL_TARGET_MODULES) \
176         $(INSTALL_X11_MODULES) \
177         install-gcc \
178         $(INSTALL_DOSREL)
179
180
181 CC_FOR_TARGET = ` \
182   if [ -f $$r/gcc/xgcc ] ; then \
183     if [ -f $$r/$(TARGET_SUBDIR)/newlib/Makefile ] ; then \
184       if [ -f $$r/$(TARGET_SUBDIR)/winsup/Makefile ] ; then \
185         echo $$r/gcc/xgcc -B$$r/gcc/ -B$$r/newlib/ -L$$r/winsup -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \
186       else \
187         echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \
188       fi; \
189     else \
190       echo $$r/gcc/xgcc -B$$r/gcc/; \
191     fi; \
192   else \
193     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
194       echo $(CC); \
195     else \
196       t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \
197     fi; \
198   fi`
199
200 # If CC_FOR_TARGET is not overriden on the command line, then this
201 # variable is passed down to the gcc Makefile, where it is used to
202 # build libgcc2.a.  We define it here so that it can itself be
203 # overridden on the command line.
204 GCC_FOR_TARGET = $$r/gcc/xgcc -B$$r/gcc/
205
206 # start-sanitize-chill
207 CHILL_FOR_TARGET = ` \
208   if [ -f $$r/gcc/xgcc ] ; then \
209     echo $$r/gcc/xgcc -B$$r/gcc/ -L$$r/gcc/ch/runtime/; \
210   else \
211     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
212       echo $(CC); \
213     else \
214       t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \
215     fi; \
216   fi`
217
218 # end-sanitize-chill
219
220 CXX_FOR_TARGET = ` \
221   if [ -f $$r/gcc/xgcc ] ; then \
222     if [ -f $$r/$(TARGET_SUBDIR)/newlib/Makefile ] ; then \
223       if [ -f $$r/$(TARGET_SUBDIR)/winsup/Makefile ] ; then \
224         echo $$r/gcc/xgcc -B$$r/gcc/ -B$$r/newlib/ -L$$r/winsup -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \
225       else \
226         echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \
227       fi; \
228     else \
229       echo $$r/gcc/xgcc -B$$r/gcc/; \
230     fi; \
231   else \
232     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
233       echo $(CXX); \
234     else \
235       t='$(program_transform_name)'; echo c++ | sed -e 's/x/x/' $$t; \
236     fi; \
237   fi`
238
239 AS_FOR_TARGET = ` \
240   if [ -f $$r/gas/as.new ] ; then \
241     echo $$r/gas/as.new ; \
242   else \
243     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
244       echo $(AS); \
245     else \
246        t='$(program_transform_name)'; echo as | sed -e 's/x/x/' $$t ; \
247     fi; \
248   fi`
249
250 LD_FOR_TARGET = ` \
251   if [ -f $$r/ld/ld.new ] ; then \
252     echo $$r/ld/ld.new ; \
253   else \
254     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
255       echo $(LD); \
256     else \
257        t='$(program_transform_name)'; echo ld | sed -e 's/x/x/' $$t ; \
258     fi; \
259   fi`
260
261 DLLTOOL_FOR_TARGET = ` \
262   if [ -f $$r/binutils/dlltool ] ; then \
263     echo $$r/binutils/dlltool ; \
264   else \
265     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
266       echo $(DLLTOOL); \
267     else \
268        t='$(program_transform_name)'; echo dlltool | sed -e 's/x/x/' $$t ; \
269     fi; \
270   fi`
271
272 WINDRES_FOR_TARGET = ` \
273   if [ -f $$r/binutils/windres ] ; then \
274     echo $$r/binutils/windres ; \
275   else \
276     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
277       echo $(WINDRES); \
278     else \
279        t='$(program_transform_name)'; echo windres | sed -e 's/x/x/' $$t ; \
280     fi; \
281   fi`
282
283 AR_FOR_TARGET = ` \
284   if [ -f $$r/binutils/ar ] ; then \
285     echo $$r/binutils/ar ; \
286   else \
287     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
288       echo $(AR); \
289     else \
290        t='$(program_transform_name)'; echo ar | sed -e 's/x/x/' $$t ; \
291     fi; \
292   fi`
293
294 RANLIB_FOR_TARGET = ` \
295   if [ -f $$r/binutils/ranlib ] ; then \
296     echo $$r/binutils/ranlib ; \
297   else \
298     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
299       echo $(RANLIB); \
300     else \
301        t='$(program_transform_name)'; echo ranlib | sed -e 's/x/x/' $$t ; \
302     fi; \
303   fi`
304
305 NM_FOR_TARGET = ` \
306   if [ -f $$r/binutils/nm.new ] ; then \
307     echo $$r/binutils/nm.new ; \
308   else \
309     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
310       echo $(NM); \
311     else \
312        t='$(program_transform_name)'; echo nm | sed -e 's/x/x/' $$t ; \
313     fi; \
314   fi`
315
316 #### host and target specific makefile fragments come in here.
317 ###
318
319 # Flags to pass down to all sub-makes.
320 # Please keep these in alphabetical order.
321 BASE_FLAGS_TO_PASS = \
322         "AR_FLAGS=$(AR_FLAGS)" \
323         "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
324         "AS_FOR_TARGET=$(AS_FOR_TARGET)" \
325         "BISON=$(BISON)" \
326         "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
327         "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
328         "CFLAGS=$(CFLAGS)" \
329         "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
330         $(start-sanitize-chill)\
331         "CHILLFLAGS=$(CHILLFLAGS)" \
332         "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
333         "CHILL_LIB=$(CHILL_LIB)" \
334         $(end-sanitize-chill)\
335         "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
336         "CXXFLAGS=$(CXXFLAGS)" \
337         "CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \
338         "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
339         "DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \
340         "INSTALL=$(INSTALL)" \
341         "INSTALL_DATA=$(INSTALL_DATA)" \
342         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
343         "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
344         "LDFLAGS=$(LDFLAGS)" \
345         "LEX=$(LEX)" \
346         "LD_FOR_TARGET=$(LD_FOR_TARGET)" \
347         "LIBCFLAGS=$(LIBCFLAGS)" \
348         "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
349         "LIBCXXFLAGS=$(LIBCXXFLAGS)" \
350         "LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \
351         "M4=$(M4)" \
352         "MAKE=$(MAKE)" \
353         "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
354         "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
355         "PICFLAG=$(PICFLAG)" \
356         "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
357         "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
358         "SHELL=$(SHELL)" \
359         "EXPECT=$(EXPECT)" \
360         "RUNTEST=$(RUNTEST)" \
361         "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
362         "WINDRES_FOR_TARGET=$(WINDRES_FOR_TARGET)" \
363         "YACC=$(BISON)" \
364         "exec_prefix=$(exec_prefix)" \
365         "prefix=$(prefix)" \
366         "tooldir=$(tooldir)" 
367
368 # Flags to pass down to most sub-makes, in which we're building with
369 # the host environment.
370 # If any variables are added here, they must be added to do-*, below.
371 EXTRA_HOST_FLAGS = \
372         'AR=$(AR)' \
373         'AS=$(AS)' \
374         'CC=$(CC)' \
375         'CXX=$(CXX)' \
376         'DLLTOOL=$(DLLTOOL)' \
377         'LD=$(LD)' \
378         'NM=$(NM)' \
379         'RANLIB=$(RANLIB)' \
380         'WINDRES=$(WINDRES)'
381
382 FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)
383
384 # Flags that are concerned with the location of the X11 include files
385 # and library files
386 #
387 # NOTE: until the top-level is getting the values via autoconf, it only
388 # causes problems to have this top-level Makefile overriding the autoconf-set
389 # values in child directories.  Only variables that don't conflict with
390 # autoconf'ed ones should be passed by X11_FLAGS_TO_PASS for now.
391 #
392 X11_FLAGS_TO_PASS = \
393         'X11_EXTRA_CFLAGS=$(X11_EXTRA_CFLAGS)' \
394         'X11_EXTRA_LIBS=$(X11_EXTRA_LIBS)'
395
396 # Flags to pass down to makes which are built with the target environment.
397 # The double $ decreases the length of the command line; the variables
398 # are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them.
399 # If any variables are added here, they must be added to do-*, below.
400 EXTRA_TARGET_FLAGS = \
401         'AR=$$(AR_FOR_TARGET)' \
402         'AS=$$(AS_FOR_TARGET)' \
403         'CC=$$(CC_FOR_TARGET)' \
404         'CFLAGS=$$(CFLAGS_FOR_TARGET)' \
405         'CXX=$$(CXX_FOR_TARGET)' \
406         'CXXFLAGS=$$(CXXFLAGS_FOR_TARGET)' \
407         'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
408         'LD=$$(LD_FOR_TARGET)' \
409         'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET)' \
410         'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET)' \
411         'NM=$$(NM_FOR_TARGET)' \
412         'PICFLAG=$$(PICFLAG_FOR_TARGET)' \
413         'RANLIB=$$(RANLIB_FOR_TARGET)' \
414         'WINDRES=$$(WINDRES_FOR_TARGET)'
415
416 TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)
417
418 # Flags to pass down to gcc.  gcc builds a library, libgcc.a, so it
419 # unfortunately needs the native compiler and the target ar and
420 # ranlib.
421 # If any variables are added here, they must be added to do-*, below.
422 # The HOST_* variables are a special case, which are used for the gcc
423 # cross-building scheme.
424 EXTRA_GCC_FLAGS = \
425         'AR=$$(AR_FOR_TARGET)' \
426         'AS=$(AS)' \
427         'CC=$(CC)' \
428         'CXX=$(CXX)' \
429         'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
430         'HOST_CC=$(CC_FOR_BUILD)' \
431         'HOST_PREFIX=$(HOST_PREFIX)' \
432         'HOST_PREFIX_1=$(HOST_PREFIX_1)' \
433         'NM=$(NM)' \
434         'RANLIB=$$(RANLIB_FOR_TARGET)' \
435         'WINDRES=$$(WINDRES_FOR_TARGET)' \
436         "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
437         `if test x"$(LANGUAGES)" != x; then echo "LANGUAGES=$(LANGUAGES)"; fi` \
438         `if test x"$(STMP_FIXPROTO)" != x; then echo "STMP_FIXPROTO=$(STMP_FIXPROTO)"; fi` \
439         `if test x"$(LIMITS_H_TEST)" != x; then echo "LIMITS_H_TEST=$(LIMITS_H_TEST)"; fi` \
440         `if test x"$(LIBGCC1_TEST)" != x; then echo "LIBGCC1_TEST=$(LIBGCC1_TEST)"; fi` \
441         `if test x"$(LIBGCC2_CFLAGS)" != x; then echo "LIBGCC2_CFLAGS=$(LIBGCC2_CFLAGS)"; fi` \
442         `if test x"$(LIBGCC2_DEBUG_CFLAGS)" != x; then echo "LIBGCC2_DEBUG_CFLAGS=$(LIBGCC2_DEBUG_CFLAGS)"; fi` \
443         `if test x"$(LIBGCC2_INCLUDES)" != x; then echo "LIBGCC2_INCLUDES=$(LIBGCC2_INCLUDES)"; fi` \
444         `if test x"$(ENQUIRE)" != x; then echo "ENQUIRE=$(ENQUIRE)"; fi` \
445         `if test x"$(BOOT_CFLAGS)" != x; then echo "BOOT_CFLAGS=$(BOOT_CFLAGS)"; fi`
446
447 GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS)
448
449 # This is a list of the targets for all of the modules which are compiled
450 # using $(FLAGS_TO_PASS).
451 ALL_MODULES = \
452         all-apache \
453         all-autoconf \
454         all-automake \
455         all-bash \
456         all-bfd \
457         all-binutils \
458         all-byacc \
459         all-cvs \
460         all-db \
461         all-dejagnu \
462         all-diff \
463         all-dosutils \
464         all-etc \
465         all-fileutils \
466         all-findutils \
467         all-find \
468         all-flex \
469         all-gas \
470         all-gawk \
471         all-gnuserv \
472         all-gprof \
473         all-grep \
474         all-grez \
475         all-gzip \
476         all-hello \
477         $(start-sanitize-ide) \
478         all-ilu \
479         $(end-sanitize-ide) \
480         all-indent \
481         all-inet \
482         all-ispell \
483         all-itcl \
484         all-ld \
485         all-libiberty \
486         $(start-sanitize-ide) \
487         all-libide \
488         $(end-sanitize-ide) \
489         all-m4 \
490         all-make \
491         all-mmalloc \
492         all-opcodes \
493         all-patch \
494         all-perl \
495         all-prms \
496         all-rcs \
497         all-readline \
498         all-release \
499         all-recode \
500         all-sed \
501         all-send-pr \
502         all-shellutils \
503         all-sim \
504         all-sn \
505         all-tar \
506         all-tcl \
507         all-texinfo \
508         all-textutils \
509         all-tgas \
510         all-time \
511         all-uudecode \
512         $(start-sanitize-ide) \
513         all-vmake \
514         $(end-sanitize-ide) \
515         all-wdiff 
516
517 # This is a list of the check targets for all of the modules which are
518 # compiled using $(FLAGS_TO_PASS).
519 #
520 # The list is in two parts.  The first lists those tools which
521 # are tested as part of the host's native tool-chain, and not
522 # tested in a cross configuration.
523 NATIVE_CHECK_MODULES = \
524         check-byacc \
525         check-flex
526
527 CROSS_CHECK_MODULES = \
528         check-apache \
529         check-autoconf \
530         check-automake \
531         check-bash \
532         check-bfd \
533         check-binutils \
534         check-cvs \
535         check-db \
536         check-dejagnu \
537         check-diff \
538         check-etc \
539         check-fileutils \
540         check-findutils \
541         check-find \
542         check-gas \
543         check-gawk \
544         check-gnuserv \
545         check-gprof \
546         check-grep \
547         check-gzip \
548         check-hello \
549         $(start-sanitize-ide) \
550         check-ilu \
551         $(end-sanitize-ide) \
552         check-indent \
553         check-inet \
554         check-ispell \
555         check-itcl \
556         check-ld \
557         check-libiberty \
558         $(start-sanitize-ide) \
559         check-libide \
560         $(end-sanitize-ide) \
561         check-m4 \
562         check-make \
563         check-mmcheckoc \
564         check-opcodes \
565         check-patch \
566         check-perl \
567         check-prms \
568         check-rcs \
569         check-readline \
570         check-recode \
571         check-sed \
572         check-send-pr \
573         check-shellutils \
574         check-sn \
575         check-sim \
576         check-tar \
577         check-tcl \
578         check-texinfo \
579         check-textutils \
580         check-tgas \
581         check-time \
582         check-uudecode \
583         $(start-sanitize-ide) \
584         check-vmake \
585         $(end-sanitize-ide) \
586         check-wdiff
587
588 CHECK_MODULES=$(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
589
590 # This is a list of the install targets for all of the modules which are
591 # compiled using $(FLAGS_TO_PASS).
592 # We put install-opcodes before install-binutils because the installed
593 # binutils might be on PATH, and they might need the shared opcodes
594 # library.
595 INSTALL_MODULES = \
596         install-apache \
597         install-autoconf \
598         install-automake \
599         install-bash \
600         install-bfd \
601         install-opcodes \
602         install-binutils \
603         install-byacc \
604         install-cvs \
605         install-db \
606         install-dejagnu \
607         install-diff \
608         install-dosutils \
609         install-etc \
610         install-fileutils \
611         install-findutils \
612         install-find \
613         install-flex \
614         install-gas \
615         install-gawk \
616         install-gnuserv \
617         install-gprof \
618         install-grep \
619         install-grez \
620         install-gzip \
621         install-hello \
622         $(start-sanitize-ide) \
623         install-ilu \
624         $(end-sanitize-ide) \
625         install-indent \
626         install-inet \
627         install-ispell \
628         install-itcl \
629         install-ld \
630         install-libiberty \
631         $(start-sanitize-ide) \
632         install-libide \
633         $(end-sanitize-ide) \
634         install-m4 \
635         install-make \
636         install-mmalloc \
637         install-patch \
638         install-perl \
639         install-prms \
640         install-rcs \
641         install-readline \
642         install-recode \
643         install-sed \
644         install-send-pr \
645         install-shellutils \
646         install-sim \
647         install-sn \
648         install-tar \
649         install-tcl \
650         install-texinfo \
651         install-textutils \
652         install-tgas \
653         install-time \
654         install-uudecode \
655         $(start-sanitize-ide) \
656         install-vmake \
657         $(end-sanitize-ide) \
658         install-wdiff
659
660 # This is a list of the targets for all of the modules which are compiled
661 # using $(X11_FLAGS_TO_PASS).
662 ALL_X11_MODULES = \
663         all-emacs \
664         all-emacs19 \
665         all-gdb \
666         all-expect \
667         all-gash \
668         all-guile \
669         all-tclX \
670         all-tk \
671         all-tix
672
673 # This is a list of the check targets for all of the modules which are
674 # compiled using $(X11_FLAGS_TO_PASS).
675 CHECK_X11_MODULES = \
676         check-emacs \
677         check-gdb \
678         check-guile \
679         check-expect \
680         check-gash \
681         check-tclX \
682         check-tk \
683         check-tix
684
685 # This is a list of the install targets for all the modules which are
686 # compiled using $(X11_FLAGS_TO_PASS).
687 INSTALL_X11_MODULES = \
688         install-emacs \
689         install-emacs19 \
690         install-gdb \
691         install-guile \
692         install-expect \
693         install-gash \
694         install-tclX \
695         install-tk \
696         install-tix
697
698 # This is a list of the targets for all of the modules which are compiled
699 # using $(TARGET_FLAGS_TO_PASS).
700 ALL_TARGET_MODULES = \
701         all-target-libio \
702         all-target-libstdc++ \
703         all-target-librx \
704         all-target-libg++ \
705         all-target-newlib \
706         all-target-winsup \
707         all-target-libgloss \
708         all-target-libiberty \
709         all-target-gperf \
710         all-target-examples
711
712 # This is a list of the configure targets for all of the modules which
713 # are compiled using the target tools.
714 CONFIGURE_TARGET_MODULES = \
715         configure-target-libio \
716         configure-target-libstdc++ \
717         configure-target-librx \
718         configure-target-libg++ \
719         configure-target-newlib \
720         configure-target-winsup \
721         configure-target-libgloss \
722         configure-target-libiberty \
723         configure-target-gperf \
724         configure-target-examples
725
726 # This is a list of the check targets for all of the modules which are
727 # compiled using $(TARGET_FLAGS_TO_PASS).
728 CHECK_TARGET_MODULES = \
729         check-target-libio \
730         check-target-libstdc++ \
731         check-target-libg++ \
732         check-target-newlib \
733         check-target-winsup \
734         check-target-libiberty \
735         check-target-gperf
736
737 # This is a list of the install targets for all of the modules which are
738 # compiled using $(TARGET_FLAGS_TO_PASS).
739 INSTALL_TARGET_MODULES = \
740         install-target-libio \
741         install-target-libstdc++ \
742         install-target-libg++ \
743         install-target-newlib \
744         install-target-winsup \
745         install-target-libgloss \
746         install-target-libiberty \
747         install-target-gperf
748
749 # This is a list of the targets for which we can do a clean-{target}.
750 CLEAN_MODULES = \
751         clean-apache \
752         clean-autoconf \
753         clean-automake \
754         clean-bash \
755         clean-bfd \
756         clean-binutils \
757         clean-byacc \
758         clean-cvs \
759         clean-db \
760         clean-dejagnu \
761         clean-diff \
762         clean-dosutils \
763         clean-etc \
764         clean-fileutils \
765         clean-findutils \
766         clean-find \
767         clean-flex \
768         clean-gas \
769         clean-gawk \
770         clean-gnuserv \
771         clean-gprof \
772         clean-grep \
773         clean-grez \
774         clean-gzip \
775         clean-hello \
776         $(start-sanitize-ide) \
777         clean-ilu \
778         $(end-sanitize-ide) \
779         clean-indent \
780         clean-inet \
781         clean-ispell \
782         clean-itcl \
783         clean-ld \
784         clean-libiberty \
785         $(start-sanitize-ide) \
786         clean-libide \
787         $(end-sanitize-ide) \
788         clean-m4 \
789         clean-make \
790         clean-mmalloc \
791         clean-opcodes \
792         clean-patch \
793         clean-perl \
794         clean-prms \
795         clean-rcs \
796         clean-readline \
797         clean-release \
798         clean-recode \
799         clean-sed \
800         clean-send-pr \
801         clean-shellutils \
802         clean-sim \
803         clean-sn \
804         clean-tar \
805         clean-tcl \
806         clean-texinfo \
807         clean-textutils \
808         clean-tgas \
809         clean-time \
810         clean-uudecode \
811         $(start-sanitize-ide) \
812         clean-vmake \
813         $(end-sanitize-ide) \
814         clean-wdiff
815
816 # All of the target modules that can be cleaned
817 CLEAN_TARGET_MODULES = \
818         clean-target-libio \
819         clean-target-libstdc++ \
820         clean-target-librx \
821         clean-target-libg++ \
822         clean-target-newlib \
823         clean-target-winsup \
824         clean-target-libgloss \
825         clean-target-libiberty \
826         clean-target-gperf \
827         clean-target-examples
828
829 # All of the x11 modules that can be cleaned
830 CLEAN_X11_MODULES = \
831         clean-emacs \
832         clean-emacs19 \
833         clean-gdb \
834         clean-expect \
835         clean-gash \
836         clean-guile \
837         clean-tclX \
838         clean-tk \
839         clean-tix
840
841 # The first rule in the file had better be this one.  Don't put any above it.
842 all: all.normal
843 .PHONY: all
844
845 # The target built for a native build.
846 .PHONY: all.normal
847 all.normal: \
848         $(ALL_MODULES) \
849         $(ALL_X11_MODULES) \
850         $(ALL_TARGET_MODULES) \
851         all-gcc
852
853 # Do a target for all the subdirectories.  A ``make do-X'' will do a
854 # ``make X'' in all subdirectories (because, in general, there is a
855 # dependency (below) of X upon do-X, a ``make X'' will also do this,
856 # but it may do additional work as well).
857 # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
858 # because it is so large that it can easily overflow the command line
859 # length limit on some systems.
860 DO_X = \
861         do-clean \
862         do-distclean \
863         do-dvi \
864         do-info \
865         do-install-info \
866         do-installcheck \
867         do-mostlyclean \
868         do-maintainer-clean \
869         do-TAGS
870 .PHONY: $(DO_X)
871 $(DO_X):
872         @target=`echo $@ | sed -e 's/^do-//'`; \
873         r=`pwd`; export r; \
874         s=`cd $(srcdir); pwd`; export s; \
875         $(SET_LIB_PATH) \
876         for i in $(SUBDIRS) -dummy-; do \
877           if [ -f ./$$i/Makefile ]; then \
878             case $$i in \
879             gcc) \
880               for flag in $(EXTRA_GCC_FLAGS); do \
881                 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
882               done; \
883               ;; \
884             *) \
885               for flag in $(EXTRA_HOST_FLAGS); do \
886                 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
887               done; \
888               ;; \
889             esac ; \
890             export AR AS CC CXX LD NM RANLIB DLLTOOL WINDRES; \
891             if (cd ./$$i; \
892                 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
893                         "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
894                         "RANLIB=$${RANLIB}" \
895                         "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
896                         $${target}); \
897             then true; else exit 1; fi; \
898           else true; fi; \
899         done
900         @target=`echo $@ | sed -e 's/^do-//'`; \
901         r=`pwd`; export r; \
902         s=`cd $(srcdir); pwd`; export s; \
903         $(SET_LIB_PATH) \
904         for i in $(TARGET_CONFIGDIRS) -dummy-; do \
905           if [ -f $(TARGET_SUBDIR)/$$i/Makefile ]; then \
906             for flag in $(EXTRA_TARGET_FLAGS); do \
907                 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
908             done; \
909             export AR AS CC CXX LD NM RANLIB DLLTOOL WINDRES; \
910             if (cd $(TARGET_SUBDIR)/$$i; \
911                 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
912                         "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
913                         "RANLIB=$${RANLIB}" \
914                         "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
915                         $${target}); \
916             then true; else exit 1; fi; \
917           else true; fi; \
918         done
919
920 # Here are the targets which correspond to the do-X targets.
921
922 .PHONY: info installcheck dvi install-info
923 .PHONY: clean distclean mostlyclean maintainer-clean realclean
924 .PHONY: local-clean local-distclean local-maintainer-clean
925 info: do-info
926 installcheck: do-installcheck
927 dvi: do-dvi
928
929 # Make sure makeinfo is built before we do a `make info'.
930 do-info: all-texinfo
931
932 install-info: do-install-info dir.info
933         s=`cd $(srcdir); pwd`; export s; \
934         if [ -f dir.info ] ; then \
935           $(INSTALL_DATA) dir.info $(infodir)/dir.info ; \
936         else true ; fi
937
938 local-clean:
939         -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E
940
941 local-distclean:
942         -rm -f Makefile config.status config.cache
943         -if [ "$(TARGET_SUBDIR)" != "." ]; then \
944           rm -rf $(TARGET_SUBDIR); \
945         else true; fi
946
947 local-maintainer-clean:
948         @echo "This command is intended for maintainers to use;"
949         @echo "it deletes files that may require special tools to rebuild."
950
951 clean: do-clean local-clean
952 mostlyclean: do-mostlyclean local-clean
953 distclean: do-distclean local-clean local-distclean
954 maintainer-clean: local-maintainer-clean do-maintainer-clean local-clean 
955 maintainer-clean: local-distclean
956 realclean: maintainer-clean
957
958 # This rule is used to clean specific modules.
959 .PHONY: $(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc
960 $(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc:
961         @dir=`echo $@ | sed -e 's/clean-//'`; \
962         if [ -f ./$${dir}/Makefile ] ; then \
963           r=`pwd`; export r; \
964           s=`cd $(srcdir); pwd`; export s; \
965           $(SET_LIB_PATH) \
966           (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) clean); \
967         else \
968           true; \
969         fi
970
971 .PHONY: $(CLEAN_TARGET_MODULES)
972 $(CLEAN_TARGET_MODULES):
973         @dir=`echo $@ | sed -e 's/clean-target-//'`; \
974         rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
975         if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
976           r=`pwd`; export r; \
977           s=`cd $(srcdir); pwd`; export s; \
978           $(SET_LIB_PATH) \
979           (cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) clean); \
980         else \
981           true; \
982         fi
983
984 clean-target: $(CLEAN_TARGET_MODULES)
985
986 # Check target.
987
988 .PHONY: check
989 check: $(CHECK_MODULES) \
990         $(CHECK_TARGET_MODULES) \
991         $(CHECK_X11_MODULES) \
992         check-gcc
993
994 # Installation targets.
995
996 .PHONY: install uninstall source-vault binary-vault vault-install
997 install: $(INSTALL_TARGET) 
998
999 uninstall:
1000         @echo "the uninstall target is not supported in this tree"
1001
1002 source-vault:
1003         $(MAKE) -f ./release/Build-A-Release \
1004                 host=$(host_alias) source-vault
1005
1006 binary-vault:
1007         $(MAKE) -f ./release/Build-A-Release \
1008                 host=$(host_alias) target=$(target_alias)
1009
1010 vault-install:
1011         @if [ -f ./release/vault-install ] ; then \
1012           ./release/vault-install $(host_alias) $(target_alias) ; \
1013         else \
1014           true ; \
1015         fi
1016
1017 .PHONY: install.all
1018 install.all: install-no-fixedincludes
1019         @if [ -f ./gcc/Makefile ] ; then \
1020                 r=`pwd` ; export r ; \
1021                 $(SET_LIB_PATH) \
1022                 (cd ./gcc; \
1023                 $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
1024         else \
1025                 true ; \
1026         fi
1027
1028 # inet-install is used because the I*Net wants DejaGNU installed but
1029 # not built.  Similarly, gzip is built but not installed.
1030 inet-install:
1031         $(MAKE) INSTALL_MODULES="`echo $(INSTALL_MODULES) | sed -e 's/install-dejagnu//' -e 's/install-gzip//'`" install
1032
1033 # install-no-fixedincludes is used because Cygnus can not distribute
1034 # the fixed header files.
1035 .PHONY: install-no-fixedincludes
1036 install-no-fixedincludes: \
1037         installdirs \
1038         $(INSTALL_MODULES) \
1039         $(INSTALL_TARGET_MODULES) \
1040         $(INSTALL_X11_MODULES) \
1041         gcc-no-fixedincludes 
1042
1043 # Install the gcc headers files, but not the fixed include files,
1044 # which Cygnus is not allowed to distribute.  This rule is very
1045 # dependent on the workings of the gcc Makefile.in.
1046 .PHONY: gcc-no-fixedincludes
1047 gcc-no-fixedincludes:
1048         @if [ -f ./gcc/Makefile ]; then \
1049           rm -rf gcc/tmp-include; \
1050           mv gcc/include gcc/tmp-include 2>/dev/null; \
1051           mkdir gcc/include; \
1052           cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \
1053           touch gcc/stmp-fixinc gcc/include/fixed; \
1054           rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \
1055           r=`pwd`; export r; \
1056           s=`cd $(srcdir); pwd` ; export s; \
1057           $(SET_LIB_PATH) \
1058           (cd ./gcc; \
1059            $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
1060           rm -rf gcc/include; \
1061           mv gcc/tmp-include gcc/include 2>/dev/null; \
1062         else true; fi
1063
1064 # This rule is used to build the modules which use FLAGS_TO_PASS.  To
1065 # build a target all-X means to cd to X and make all.
1066 #
1067 # all-gui, and all-libproc are handled specially because
1068 # they are still experimental, and if they fail to build, that
1069 # shouldn't stop "make all".
1070 .PHONY: $(ALL_MODULES) all-gui all-libproc
1071 $(ALL_MODULES) all-gui all-libproc:
1072         @dir=`echo $@ | sed -e 's/all-//'`; \
1073         if [ -f ./$${dir}/Makefile ] ; then \
1074           r=`pwd`; export r; \
1075           s=`cd $(srcdir); pwd`; export s; \
1076           $(SET_LIB_PATH) \
1077           (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
1078         else \
1079           true; \
1080         fi
1081
1082 # These rules are used to check the modules which use FLAGS_TO_PASS.
1083 # To build a target check-X means to cd to X and make check.  Some
1084 # modules are only tested in a native toolchain.
1085
1086 .PHONY: $(CHECK_MODULES) $(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
1087 $(NATIVE_CHECK_MODULES):
1088         @if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
1089           dir=`echo $@ | sed -e 's/check-//'`; \
1090           if [ -f ./$${dir}/Makefile ] ; then \
1091             r=`pwd`; export r; \
1092             s=`cd $(srcdir); pwd`; export s; \
1093             $(SET_LIB_PATH) \
1094             (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
1095           else \
1096             true; \
1097           fi; \
1098         fi
1099
1100 $(CROSS_CHECK_MODULES):
1101         @dir=`echo $@ | sed -e 's/check-//'`; \
1102         if [ -f ./$${dir}/Makefile ] ; then \
1103           r=`pwd`; export r; \
1104           s=`cd $(srcdir); pwd`; export s; \
1105           $(SET_LIB_PATH) \
1106           (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
1107         else \
1108           true; \
1109         fi
1110
1111 # This rule is used to install the modules which use FLAGS_TO_PASS.
1112 # To build a target install-X means to cd to X and make install.
1113 .PHONY: $(INSTALL_MODULES)
1114 $(INSTALL_MODULES): installdirs
1115         @dir=`echo $@ | sed -e 's/install-//'`; \
1116         if [ -f ./$${dir}/Makefile ] ; then \
1117           r=`pwd`; export r; \
1118           s=`cd $(srcdir); pwd`; export s; \
1119           $(SET_LIB_PATH) \
1120           (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
1121         else \
1122           true; \
1123         fi
1124
1125 # This rule is used to configure the modules which are built with the
1126 # target tools.
1127 .PHONY: $(CONFIGURE_TARGET_MODULES)
1128 $(CONFIGURE_TARGET_MODULES):
1129         @dir=`echo $@ | sed -e 's/configure-target-//'`; \
1130         if [ -d $(TARGET_SUBDIR)/$${dir} ]; then \
1131           r=`pwd`; export r; \
1132           $(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/$${dir}/tmpmulti.out 2> /dev/null; \
1133           if [ -s $(TARGET_SUBDIR)/$${dir}/tmpmulti.out ]; then \
1134             if [ -f $(TARGET_SUBDIR)/$${dir}/multilib.out ]; then \
1135               if cmp $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out > /dev/null; then \
1136                 rm -f $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
1137               else \
1138                 echo "Multilibs changed for $${dir}, reconfiguring"; \
1139                 rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/Makefile; \
1140                 mv $(TARGET_SUBDIR)/$${dir}/tmpmulti.out $(TARGET_SUBDIR)/$${dir}/multilib.out; \
1141               fi; \
1142             else \
1143               mv $(TARGET_SUBDIR)/$${dir}/tmpmulti.out $(TARGET_SUBDIR)/$${dir}/multilib.out; \
1144             fi; \
1145           fi; \
1146         fi; exit 0      # break command into two pieces
1147         @dir=`echo $@ | sed -e 's/configure-target-//'`; \
1148         if [ ! -d $(TARGET_SUBDIR) ]; then \
1149           true; \
1150         elif [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1151           true; \
1152         elif echo " $(TARGET_CONFIGDIRS) " | grep " $${dir} " >/dev/null 2>&1; then \
1153           if [ -d $(srcdir)/$${dir} ]; then \
1154             [ -d $(TARGET_SUBDIR)/$${dir} ] || mkdir $(TARGET_SUBDIR)/$${dir};\
1155             r=`pwd`; export r; \
1156             s=`cd $(srcdir); pwd`; export s; \
1157             $(SET_LIB_PATH) \
1158             AR="$(AR_FOR_TARGET)"; export AR; \
1159             AS="$(AS_FOR_TARGET)"; export AS; \
1160             CC="$(CC_FOR_TARGET)"; export CC; \
1161             CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
1162             CXX="$(CXX_FOR_TARGET)"; export CXX; \
1163             CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
1164             DLLTOOL="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL; \
1165             LD="$(LD_FOR_TARGET)"; export LD; \
1166             LDFLAGS="$(LDFLAGS_FOR_TARGET)"; export LDFLAGS; \
1167             NM="$(NM_FOR_TARGET)"; export NM; \
1168             RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \
1169             WINDRES="$(WINDRES_FOR_TARGET)"; export WINDRES; \
1170             echo Configuring in $(TARGET_SUBDIR)/$${dir}; \
1171             cd $(TARGET_SUBDIR)/$${dir}; \
1172             case $(srcdir) in \
1173             /*) \
1174               topdir=$(srcdir) ;; \
1175             *) \
1176               case "$(TARGET_SUBDIR)" in \
1177               .) topdir="../$(srcdir)" ;; \
1178               *) topdir="../../$(srcdir)" ;; \
1179               esac ;; \
1180             esac; \
1181             if [ "$(srcdir)" = "." ] ; then \
1182               if [ "$(TARGET_SUBDIR)" != "." ] ; then \
1183                 if $(SHELL) $$s/symlink-tree $${topdir}/$${dir} "no-such-file" ; then \
1184                   if [ -f Makefile ]; then \
1185                     if $(MAKE) distclean; then \
1186                       true; \
1187                     else \
1188                       exit 1; \
1189                     fi; \
1190                   else \
1191                     true; \
1192                   fi; \
1193                 else \
1194                   exit 1; \
1195                 fi; \
1196               else \
1197                 true; \
1198               fi; \
1199               srcdiroption="--srcdir=."; \
1200               libsrcdir="."; \
1201             else \
1202               srcdiroption="--srcdir=$${topdir}/$${dir}"; \
1203               libsrcdir="$$s/$${dir}"; \
1204             fi; \
1205             if [ -f $${libsrcdir}/configure ] ; then \
1206               $(SHELL) $${libsrcdir}/configure \
1207                 $(CONFIG_ARGUMENTS) $${srcdiroption} \
1208                 --with-target-subdir="$(TARGET_SUBDIR)"; \
1209             else \
1210               $(SHELL) $$s/configure \
1211                 $(CONFIG_ARGUMENTS) $${srcdiroption} \
1212                 --with-target-subdir="$(TARGET_SUBDIR)"; \
1213             fi; \
1214           else \
1215             true; \
1216           fi; \
1217         else \
1218           true; \
1219         fi
1220
1221 # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
1222 # To build a target all-X means to cd to X and make all.
1223 .PHONY: $(ALL_TARGET_MODULES)
1224 $(ALL_TARGET_MODULES):
1225         @dir=`echo $@ | sed -e 's/all-target-//'`; \
1226         if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1227           r=`pwd`; export r; \
1228           s=`cd $(srcdir); pwd`; export s; \
1229           $(SET_LIB_PATH) \
1230           (cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) all); \
1231         else \
1232           true; \
1233         fi
1234
1235 # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
1236 # To build a target install-X means to cd to X and make install.
1237 .PHONY: $(CHECK_TARGET_MODULES)
1238 $(CHECK_TARGET_MODULES):
1239         @dir=`echo $@ | sed -e 's/check-target-//'`; \
1240         if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1241           r=`pwd`; export r; \
1242           s=`cd $(srcdir); pwd`; export s; \
1243           $(SET_LIB_PATH) \
1244           (cd $(TARGET_SUBDIR)/$${dir};$(MAKE) $(TARGET_FLAGS_TO_PASS) check);\
1245         else \
1246           true; \
1247         fi
1248
1249 # This rule is used to install the modules which use
1250 # TARGET_FLAGS_TO_PASS.  To build a target install-X means to cd to X
1251 # and make install.
1252 .PHONY: $(INSTALL_TARGET_MODULES)
1253 $(INSTALL_TARGET_MODULES): installdirs
1254         @dir=`echo $@ | sed -e 's/install-target-//'`; \
1255         if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1256           r=`pwd`; export r; \
1257           s=`cd $(srcdir); pwd`; export s; \
1258           $(SET_LIB_PATH) \
1259           (cd $(TARGET_SUBDIR)/$${dir}; \
1260             $(MAKE) $(TARGET_FLAGS_TO_PASS) install); \
1261         else \
1262           true; \
1263         fi
1264
1265 # This rule is used to build the modules which use X11_FLAGS_TO_PASS.
1266 # To build a target all-X means to cd to X and make all.
1267 .PHONY: $(ALL_X11_MODULES)
1268 $(ALL_X11_MODULES):
1269         @dir=`echo $@ | sed -e 's/all-//'`; \
1270         if [ -f ./$${dir}/Makefile ] ; then \
1271           r=`pwd`; export r; \
1272           s=`cd $(srcdir); pwd`; export s; \
1273           $(SET_LIB_PATH) \
1274           (cd $${dir}; \
1275            $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \
1276         else \
1277           true; \
1278         fi
1279
1280 # This rule is used to check the modules which use X11_FLAGS_TO_PASS.
1281 # To build a target check-X means to cd to X and make all.
1282 .PHONY: $(CHECK_X11_MODULES)
1283 $(CHECK_X11_MODULES):
1284         @dir=`echo $@ | sed -e 's/check-//'`; \
1285         if [ -f ./$${dir}/Makefile ] ; then \
1286           r=`pwd`; export r; \
1287           s=`cd $(srcdir); pwd`; export s; \
1288           $(SET_LIB_PATH) \
1289           (cd $${dir}; \
1290            $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \
1291         else \
1292           true; \
1293         fi
1294
1295 # This rule is used to install the modules which use X11_FLAGS_TO_PASS.
1296 # To build a target install-X means to cd to X and make install.
1297 .PHONY: $(INSTALL_X11_MODULES)
1298 $(INSTALL_X11_MODULES):
1299         @dir=`echo $@ | sed -e 's/install-//'`; \
1300         if [ -f ./$${dir}/Makefile ] ; then \
1301           r=`pwd`; export r; \
1302           s=`cd $(srcdir); pwd`; export s; \
1303           $(SET_LIB_PATH) \
1304           (cd $${dir}; \
1305            $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \
1306         else \
1307           true; \
1308         fi
1309
1310 # gcc is the only module which uses GCC_FLAGS_TO_PASS.
1311 .PHONY: all-gcc
1312 all-gcc:
1313         @if [ -f ./gcc/Makefile ] ; then \
1314           r=`pwd`; export r; \
1315           s=`cd $(srcdir); pwd`; export s; \
1316           $(SET_LIB_PATH) \
1317           (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \
1318         else \
1319           true; \
1320         fi
1321
1322 .PHONY: all-bootstrap
1323 all-bootstrap:
1324         @if [ -f ./gcc/Makefile ] ; then \
1325           r=`pwd`; export r; \
1326           s=`cd $(srcdir); pwd`; export s; \
1327           $(SET_LIB_PATH) \
1328           (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) bootstrap); \
1329         else \
1330           true; \
1331         fi
1332
1333 .PHONY: check-gcc
1334 check-gcc:
1335         @if [ -f ./gcc/Makefile ] ; then \
1336           r=`pwd`; export r; \
1337           s=`cd $(srcdir); pwd`; export s; \
1338           $(SET_LIB_PATH) \
1339           (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \
1340         else \
1341           true; \
1342         fi
1343
1344 .PHONY: install-gcc
1345 install-gcc:
1346         @if [ -f ./gcc/Makefile ] ; then \
1347           r=`pwd`; export r; \
1348           s=`cd $(srcdir); pwd`; export s; \
1349           $(SET_LIB_PATH) \
1350           (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
1351         else \
1352           true; \
1353         fi
1354
1355
1356 # EXPERIMENTAL STUFF
1357 # This rule is used to install the modules which use FLAGS_TO_PASS.
1358 # To build a target install-X means to cd to X and make install.
1359 .PHONY: install-dosrel
1360 install-dosrel: installdirs info
1361         @dir=`echo $@ | sed -e 's/install-//'`; \
1362         if [ -f ./$${dir}/Makefile ] ; then \
1363           r=`pwd`; export r; \
1364           s=`cd $(srcdir); pwd`; export s; \
1365           $(SET_LIB_PATH) \
1366           (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
1367         else \
1368           true; \
1369         fi
1370
1371 install-dosrel-fake:
1372
1373
1374 # This is a list of inter-dependencies among modules.
1375 all-apache:
1376 all-autoconf: all-m4
1377 all-automake:
1378 all-bash:
1379 all-bfd:
1380 all-binutils: all-libiberty all-opcodes all-bfd all-flex all-byacc
1381 all-byacc:
1382 all-cvs:
1383 all-db:
1384 all-dejagnu: all-tcl all-expect all-tk
1385 all-diff: all-libiberty
1386 all-emacs:
1387 all-emacs19: all-byacc
1388 all-etc:
1389 configure-target-examples: $(ALL_GCC)
1390 all-target-examples: configure-target-examples
1391 all-expect: all-tcl all-tk
1392 all-fileutils: all-libiberty
1393 all-findutils:
1394 all-find:
1395 all-flex: all-libiberty all-byacc
1396 all-gas: all-libiberty all-opcodes all-bfd
1397 all-gash: all-tcl
1398 all-gawk:
1399 ALL_GCC = all-gcc
1400 all-gcc: all-byacc all-binutils all-gas all-ld
1401 all-bootstrap: all-libiberty all-byacc all-binutils all-gas all-ld
1402 GDB_TK = all-tk all-tcl all-itcl all-tix
1403 all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-byacc all-sim $(gdbnlmrequirements) $(GDB_TK)
1404 all-gnuserv:
1405 configure-target-gperf: $(ALL_GCC)
1406 all-target-gperf: configure-target-gperf all-target-libiberty all-target-libg++
1407 all-gprof: all-libiberty all-bfd all-opcodes
1408 all-grep: all-libiberty
1409 all-grez: all-libiberty all-bfd all-opcodes
1410 all-gui: all-gdb all-libproc all-target-librx
1411 all-guile:
1412 all-gzip: all-libiberty
1413 all-hello: all-libiberty
1414 # start-sanitize-ide
1415 all-ilu:
1416 # end-sanitize-ide
1417 all-indent:
1418 all-inet: all-tcl all-send-pr all-perl
1419 all-ispell: all-emacs19
1420 all-itcl: all-tcl all-tk
1421 all-ld: all-libiberty all-bfd all-opcodes all-byacc all-flex
1422 configure-target-libg++: $(ALL_GCC) configure-target-librx
1423 all-target-libg++: configure-target-libg++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio all-target-librx all-target-libstdc++
1424 configure-target-libgloss: $(ALL_GCC)
1425 all-target-libgloss: configure-target-libgloss configure-target-newlib
1426 configure-target-libio: $(ALL_GCC)
1427 all-target-libio: configure-target-libio all-gas all-ld all-gcc all-target-libiberty all-target-newlib
1428 all-libiberty:
1429 # start-sanitize-ide
1430 all-libide: all-tcl all-tk all-itcl all-ilu
1431 # end-sanitize-ide
1432 configure-target-librx: $(ALL_GCC) configure-target-newlib
1433 all-target-librx: configure-target-librx
1434 configure-target-libstdc++: $(ALL_GCC)
1435 all-target-libstdc++: configure-target-libstdc++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio
1436 all-m4: all-libiberty
1437 all-make: all-libiberty
1438 all-mmalloc:
1439 configure-target-newlib: $(ALL_GCC)
1440 all-target-newlib: configure-target-newlib all-binutils all-gas all-gcc
1441 all-opcodes: all-bfd all-libiberty
1442 all-patch: all-libiberty
1443 all-perl:
1444 all-prms: all-libiberty
1445 all-rcs:
1446 all-readline:
1447 all-recode: all-libiberty
1448 all-sed: all-libiberty
1449 all-send-pr: all-prms
1450 all-shellutils:
1451 all-sim: all-libiberty all-bfd all-opcodes
1452 all-sn: all-tcl all-tk all-itcl all-db all-grep
1453 all-tar: all-libiberty
1454 all-tcl:
1455 all-tclX: all-tcl all-tk
1456 all-tk: all-tcl
1457 all-texinfo: all-libiberty
1458 all-textutils:
1459 all-tgas: all-libiberty all-bfd all-opcodes
1460 all-time:
1461 all-tix: all-tcl all-tk
1462 # start-sanitize-ide
1463 all-vmake: all-tcl all-tk all-itcl all-libide
1464 # end-sanitize-ide
1465 all-wdiff:
1466 all-target-winsup: all-target-newlib all-target-libiberty all-target-librx all-target-libio configure-target-winsup 
1467 configure-target-winsup: configure-target-newlib
1468 all-uudecode: all-libiberty
1469 configure-target-libiberty: $(ALL_GCC)
1470 all-target-libiberty: configure-target-libiberty all-gcc all-ld all-target-newlib
1471 all-target: $(ALL_TARGET_MODULES)
1472 install-target: $(INSTALL_TARGET_MODULES)
1473
1474 ### other supporting targets
1475
1476 MAKEDIRS= \
1477         $(prefix) \
1478         $(exec_prefix)
1479 .PHONY: installdirs
1480 installdirs: mkinstalldirs
1481         $(SHELL) $(srcdir)/mkinstalldirs $(MAKEDIRS)
1482
1483 dir.info: do-install-info
1484         if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \
1485           $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \
1486           mv -f dir.info.new dir.info ; \
1487         else true ; \
1488         fi
1489
1490 dist:
1491         @echo "Building a full distribution of this tree isn't done"
1492         @echo "via 'make dist'.  Check out the etc/ subdirectory" 
1493
1494 etags tags: TAGS
1495
1496 # Right now this just builds TAGS in each subdirectory.  emacs19 has the
1497 # ability to use several tags files at once, so there is probably no need
1498 # to combine them into one big TAGS file (like CVS 1.3 does).  We could
1499 # (if we felt like it) have this Makefile write a piece of elisp which
1500 # the user could load to tell emacs19 where all the TAGS files we just
1501 # built are.
1502 TAGS: do-TAGS
1503
1504 # with the gnu make, this is done automatically.
1505
1506 Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag)
1507         $(SHELL) ./config.status
1508
1509 #
1510 # Support for building net releases
1511
1512 # Files in devo used in any net release.
1513 # ChangeLog omitted because it may refer to files which are not in this
1514 # distribution (perhaps it would be better to include it anyway).
1515 DEVO_SUPPORT= README Makefile.in configure configure.in \
1516         config.guess config.sub config move-if-change \
1517         mpw-README mpw-build.in mpw-config.in mpw-configure mpw-install \
1518         COPYING COPYING.LIB install-sh config-ml.in symlink-tree \
1519         mkinstalldirs ltconfig ltmain.sh missing ylwrap
1520
1521 # Files in devo/etc used in any net release.
1522 # ChangeLog omitted because it may refer to files which are not in this
1523 # distribution (perhaps it would be better to include it anyway).
1524 ETC_SUPPORT= Makefile.in configure configure.in standards.texi \
1525         make-stds.texi standards.info*
1526
1527 # When you use `make setup-dirs' or `make taz' you should always redefine
1528 # this macro.
1529 SUPPORT_FILES = list-of-support-files-for-tool-in-question
1530
1531 .PHONY: taz
1532
1533 taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \
1534   texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1535         # Take out texinfo from a few places; make simple BISON=bison line.
1536         sed -e '/^all\.normal: /s/\all-texinfo //' \
1537             -e '/^      install-texinfo /d' \
1538             -e '/^BISON = `if/,/^$$/d' \
1539             -e '/^# BISON:/s/.*/BISON = $(DEFAULT_YACC)/' \
1540         <Makefile.in >tmp
1541         mv -f tmp Makefile.in
1542         #
1543         $(start-sanitize-Sanitize)
1544         @if [ -f .Sanitize ] ; then echo "RUN Sanitize FIRST!" ; false ; fi ;
1545         $(end-sanitize-Sanitize)
1546         ./configure sun4
1547         [ -z "$(CONFIGURE_TARGET_MODULES)" ] \
1548           || $(MAKE) $(CONFIGURE_TARGET_MODULES) ALL_GCC="" \
1549             CC_FOR_TARGET="$(CC)" CXX_FOR_TARGET="$(CXX)"
1550         # Make links, and run "make diststuff" or "make info" when needed.
1551         rm -rf proto-toplev ; mkdir proto-toplev
1552         set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
1553         for d in $$dirs ; do \
1554           if [ -d $$d ]; then \
1555             if [ ! -f $$d/Makefile ] ; then true ; \
1556             elif grep '^diststuff:' $$d/Makefile >/dev/null ; then \
1557                 (cd $$d ; $(MAKE) diststuff ) || exit 1 ; \
1558             elif grep '^info:' $$d/Makefile >/dev/null ; then \
1559                 (cd $$d ; $(MAKE) info ) || exit 1 ; \
1560             fi ; \
1561             if [ -d $$d/proto-$$d.dir ]; then \
1562               ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
1563             else \
1564               ln -s ../$$d proto-toplev/$$d ; \
1565             fi ; \
1566           else ln -s ../$$d proto-toplev/$$d ; fi ; \
1567         done
1568         cd etc ; $(MAKE) info
1569         $(MAKE) distclean
1570         #
1571         mkdir proto-toplev/etc
1572         (cd proto-toplev/etc; \
1573          for i in $(ETC_SUPPORT); do \
1574                 ln -s ../../etc/$$i . ; \
1575          done)
1576         #
1577         # Take out texinfo from configurable dirs
1578         rm proto-toplev/configure.in
1579         sed -e '/^host_tools=/s/texinfo //' \
1580             <configure.in >proto-toplev/configure.in
1581         #
1582         mkdir proto-toplev/texinfo
1583         ln -s ../../texinfo/texinfo.tex         proto-toplev/texinfo/
1584         ln -s ../../texinfo/gpl.texinfo         proto-toplev/texinfo/
1585         ln -s ../../texinfo/lgpl.texinfo        proto-toplev/texinfo/
1586         if test -r texinfo/util/tex3patch ; then \
1587           mkdir proto-toplev/texinfo/util && \
1588           ln -s ../../../texinfo/util/tex3patch proto-toplev/texinfo/util ; \
1589         else true; fi
1590         chmod og=u `find . -print`
1591         $(MAKE) -f Makefile.in do-tar-gz TOOL=$(TOOL) \
1592                 VER=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`
1593
1594 do-tar-gz:
1595         echo "==> Making $(TOOL)-$(VER).tar.gz"
1596         -rm -f $(TOOL)-$(VER)
1597         ln -s proto-toplev $(TOOL)-$(VER)
1598         tar cfh $(TOOL)-$(VER).tar $(TOOL)-$(VER)
1599         $(GZIPPROG) -v -9 $(TOOL)-$(VER).tar
1600
1601 TEXINFO_SUPPORT= texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1602 DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT)
1603
1604 .PHONY: gas.tar.gz
1605 GAS_SUPPORT_DIRS= bfd include libiberty opcodes setup.com makefile.vms
1606 gas.tar.gz: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas
1607         $(MAKE) -f Makefile.in taz TOOL=gas \
1608                 SUPPORT_FILES="$(GAS_SUPPORT_DIRS)"
1609
1610 # The FSF "binutils" release includes gprof and ld.
1611 .PHONY: binutils.tar.gz
1612 BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof setup.com makefile.vms
1613 binutils.tar.gz: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils
1614         $(MAKE) -f Makefile.in taz TOOL=binutils \
1615                 SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS) makeall.bat configure.bat"
1616
1617 .PHONY: gas+binutils.tar.gz
1618 GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof
1619 gas+binutils.tar.gz: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas
1620         $(MAKE) -f Makefile.in taz TOOL=gas \
1621                 SUPPORT_FILES="$(GASB_SUPPORT_DIRS) makeall.bat configure.bat"
1622
1623 .PHONY: libg++.tar.gz
1624 LIBGXX_SUPPORT_DIRS=include libstdc++ libio librx libiberty
1625 libg++.tar.gz: $(DIST_SUPPORT) libg++
1626         $(MAKE) -f Makefile.in taz TOOL=libg++ \
1627                 SUPPORT_FILES="$(LIBGXX_SUPPORT_DIRS)"
1628
1629 GNATS_SUPPORT_DIRS=include libiberty send-pr
1630 gnats.tar.gz: $(DIST_SUPPORT) $(GNATS_SUPPORT_DIRS) gnats
1631         $(MAKE) -f  Makefile.in taz TOOL=gnats \
1632                 SUPPORT_FILES="$(GNATS_SUPPORT_DIRS)"
1633
1634 .PHONY: gdb.tar.gz
1635 GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline sim utils
1636 GDBTK_SUPPORT_DIRS= `if [ -d tcl -a -d tk ] ; then echo tcl tk ; fi`
1637 gdb.tar.gz: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb
1638         $(MAKE) -f Makefile.in taz TOOL=gdb \
1639                 SUPPORT_FILES="$(GDB_SUPPORT_DIRS) $(GDBTK_SUPPORT_DIRS)"
1640
1641 .PHONY: newlib.tar.gz
1642 NEWLIB_SUPPORT_DIRS=libgloss
1643 # taz configures for the sun4 target which won't configure newlib.
1644 # We need newlib configured so that the .info files are made.
1645 # Unfortunately, it is not enough to just configure newlib separately:
1646 # taz will build the .info files but since SUBDIRS won't contain newlib,
1647 # distclean won't be run (leaving Makefile, config.status, and the tmp files
1648 # used in building the .info files, eg: *.def, *.ref).
1649 # The problem isn't solvable however without a lot of extra work because
1650 # target libraries are built in subdir $(target_alias) which gets nuked during
1651 # the make distclean.  For now punt on the issue of shipping newlib info files
1652 # with newlib net releases and wait for a day when some native target (sun4?)
1653 # supports newlib (if only minimally).
1654 newlib.tar.gz: $(DIST_SUPPORT) $(NEWLIB_SUPPORT_DIRS) newlib
1655         $(MAKE) -f Makefile.in taz TOOL=newlib \
1656                 SUPPORT_FILES="$(NEWLIB_SUPPORT_DIRS)" \
1657                 DEVO_SUPPORT="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib
1658
1659 .NOEXPORT:
1660 MAKEOVERRIDES=
1661
1662 # start-sanitize-chill
1663 ## This is ugly, but I don't want GNU make to put these variables in
1664 ## the environment.  Older makes will see this as a set of targets
1665 ## with no dependencies and no actions.
1666 unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
1667 # end-sanitize-chill
1668
1669 # end of Makefile.in