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