Wed Feb 28 12:25:46 1996 Jason Merrill <jason@yorick.cygnus.com>
[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-prms \
441         all-rcs \
442         all-readline \
443         all-release \
444         all-recode \
445         all-sed \
446         all-send-pr \
447         all-shellutils \
448         all-sim \
449         all-tar \
450         all-tcl \
451         all-texinfo \
452         all-textutils \
453         all-tgas \
454         all-time \
455         all-uudecode \
456         all-wdiff 
457
458 # This is a list of the check targets for all of the modules which are
459 # compiled using $(FLAGS_TO_PASS).
460 # This is a list of the check targets for all of the modules which are
461 # compiled using $(FLAGS_TO_PASS).
462 #
463 # The list is in two parts.  The first lists those tools which
464 # are tested as part of the host's native tool-chain, and not
465 # tested in a cross configuration.
466 NATIVE_CHECK_MODULES = \
467         check-byacc \
468         check-flex
469
470 CROSS_CHECK_MODULES = \
471         check-autoconf \
472         check-bfd \
473         check-binutils \
474         check-cvs \
475         check-dejagnu \
476         check-diff \
477         check-etc \
478         check-fileutils \
479         check-find \
480         check-gas \
481         check-gawk \
482         check-gprof \
483         check-grep \
484         check-gzip \
485         check-hello \
486         check-indent \
487         check-ispell \
488         check-ld \
489         check-libiberty \
490         check-m4 \
491         check-make \
492         check-mmcheckoc \
493         check-opcodes \
494         check-patch \
495         check-prms \
496         check-rcs \
497         check-readline \
498         check-recode \
499         check-sed \
500         check-send-pr \
501         check-shellutils \
502         check-sim \
503         check-tar \
504         check-tcl \
505         check-texinfo \
506         check-textutils \
507         check-tgas \
508         check-time \
509         check-uudecode \
510         check-wdiff
511
512 CHECK_MODULES=$(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
513
514 # This is a list of the install targets for all of the modules which are
515 # compiled using $(FLAGS_TO_PASS).
516 INSTALL_MODULES = \
517         install-autoconf \
518         install-bfd \
519         install-binutils \
520         install-byacc \
521         install-cvs \
522         install-dejagnu \
523         install-diff \
524         install-dosutils \
525         install-etc \
526         install-fileutils \
527         install-find \
528         install-flex \
529         install-gas \
530         install-gawk \
531         install-gprof \
532         install-grep \
533         install-grez \
534         install-gzip \
535         install-hello \
536         install-indent \
537         install-ispell \
538         install-ld \
539         install-libiberty \
540         install-m4 \
541         install-make \
542         install-mmalloc \
543         install-opcodes \
544         install-patch \
545         install-prms \
546         install-rcs \
547         install-readline \
548         install-recode \
549         install-sed \
550         install-send-pr \
551         install-shellutils \
552         install-sim \
553         install-tar \
554         install-tcl \
555         install-texinfo \
556         install-textutils \
557         install-tgas \
558         install-time \
559         install-uudecode \
560         install-wdiff
561
562 # This is a list of the targets for all of the modules which are compiled
563 # using $(X11_FLAGS_TO_PASS).
564 ALL_X11_MODULES = \
565         all-emacs \
566         all-emacs19 \
567         all-gdb \
568         all-expect \
569         all-gash \
570         all-tclX \
571         all-tk
572
573 # This is a list of the check targets for all of the modules which are
574 # compiled using $(X11_FLAGS_TO_PASS).
575 CHECK_X11_MODULES = \
576         check-emacs \
577         check-gdb \
578         check-expect \
579         check-gash \
580         check-tclX \
581         check-tk
582
583 # This is a list of the install targets for all the modules which are
584 # compiled using $(X11_FLAGS_TO_PASS).
585 INSTALL_X11_MODULES = \
586         install-emacs \
587         install-emacs19 \
588         install-gdb \
589         install-expect \
590         install-gash \
591         install-tclX \
592         install-tk
593
594 # This is a list of the targets for all of the modules which are compiled
595 # using $(TARGET_FLAGS_TO_PASS).
596 ALL_TARGET_MODULES = \
597         all-target-libio \
598         all-target-libstdc++ \
599         all-target-librx \
600         all-target-libg++ \
601         all-target-newlib \
602         all-target-winsup \
603         all-target-libgloss \
604         all-target-libiberty \
605         all-target-examples
606
607 # This is a list of the configure targets for all of the modules which
608 # are compiled using the target tools.
609 CONFIGURE_TARGET_MODULES = \
610         configure-target-libio \
611         configure-target-libstdc++ \
612         configure-target-librx \
613         configure-target-libg++ \
614         configure-target-newlib \
615         configure-target-winsup \
616         configure-target-libgloss \
617         configure-target-libiberty \
618         configure-target-examples
619
620 # This is a list of the check targets for all of the modules which are
621 # compiled using $(TARGET_FLAGS_TO_PASS).
622 CHECK_TARGET_MODULES = \
623         check-target-libio \
624         check-target-libstdc++ \
625         check-target-libg++ \
626         check-target-newlib \
627         check-target-winsup \
628         check-target-libiberty
629
630 # This is a list of the install targets for all of the modules which are
631 # compiled using $(TARGET_FLAGS_TO_PASS).
632 INSTALL_TARGET_MODULES = \
633         install-target-libio \
634         install-target-libstdc++ \
635         install-target-libg++ \
636         install-target-newlib \
637         install-target-winsup \
638         install-target-libgloss \
639         install-target-libiberty
640
641 # The first rule in the file had better be this one.  Don't put any above it.
642 all: all.normal
643 .PHONY: all
644
645 # The target built for a native build.
646 .PHONY: all.normal
647 all.normal: \
648         $(ALL_MODULES) \
649         $(ALL_TARGET_MODULES) \
650         $(ALL_X11_MODULES) \
651         all-gcc
652
653 # Do a target for all the subdirectories.  A ``make do-X'' will do a
654 # ``make X'' in all subdirectories (because, in general, there is a
655 # dependency (below) of X upon do-X, a ``make X'' will also do this,
656 # but it may do additional work as well).
657 # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
658 # because it is so large that it can easily overflow the command line
659 # length limit on some systems.
660 DO_X = \
661         do-clean \
662         do-distclean \
663         do-dvi \
664         do-info \
665         do-install-info \
666         do-installcheck \
667         do-mostlyclean \
668         do-maintainer-clean \
669         do-TAGS
670 .PHONY: $(DO_X)
671 $(DO_X):
672         @target=`echo $@ | sed -e 's/^do-//'`; \
673         r=`pwd`; export r; \
674         srcroot=`cd $(srcdir); pwd`; export srcroot; \
675         $(SET_LIB_PATH) \
676         for i in $(SUBDIRS) -dummy-; do \
677           if [ -f ./$$i/Makefile ]; then \
678             case $$i in \
679             gcc) \
680               for flag in $(EXTRA_GCC_FLAGS); do \
681                 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
682               done; \
683               ;; \
684             *) \
685               for flag in $(EXTRA_HOST_FLAGS); do \
686                 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
687               done; \
688               ;; \
689             esac ; \
690             export AR AS CC CXX NM RANLIB DLLTOOL; \
691             if (cd ./$$i; \
692                 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
693                         "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \
694                         "RANLIB=$${RANLIB}" \
695                         "DLLTOOL=$${DLLTOOL}" \
696                         $${target}); \
697             then true; else exit 1; fi; \
698           else true; fi; \
699         done
700         @target=`echo $@ | sed -e 's/^do-//'`; \
701         r=`pwd`; export r; \
702         srcroot=`cd $(srcdir); pwd`; export srcroot; \
703         $(SET_LIB_PATH) \
704         for i in $(TARGET_CONFIGDIRS) -dummy-; do \
705           if [ -f $(TARGET_SUBDIR)/$$i/Makefile ]; then \
706             for flag in $(EXTRA_TARGET_FLAGS); do \
707                 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
708             done; \
709             export AR AS CC CXX NM RANLIB DLLTOOL; \
710             if (cd $(TARGET_SUBDIR)/$$i; \
711                 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
712                         "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \
713                         "RANLIB=$${RANLIB}" \
714                         "DLLTOOL=$${DLLTOOL}" \
715                         $${target}); \
716             then true; else exit 1; fi; \
717           else true; fi; \
718         done
719
720 # Here are the targets which correspond to the do-X targets.
721
722 .PHONY: info installcheck dvi install-info
723 .PHONY: clean distclean mostlyclean maintainer-clean realclean
724 .PHONY: local-clean local-distclean local-maintainer-clean
725 info: do-info
726 installcheck: do-installcheck
727 dvi: do-dvi
728
729 install-info: do-install-info dir.info
730         srcroot=`cd $(srcdir); pwd`; export srcroot; \
731         if [ -f dir.info ] ; then \
732           $(INSTALL_DATA) dir.info $(infodir)/dir.info ; \
733         else true ; fi
734
735 local-clean:
736         -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E
737
738 local-distclean:
739         -rm -f Makefile config.status
740         -if [ "$(TARGET_SUBDIR)" != "." ]; then \
741           rm -rf $(TARGET_SUBDIR); \
742         else true; fi
743
744 local-maintainer-clean:
745         @echo "This command is intended for maintainers to use;"
746         @echo "it deletes files that may require special tools to rebuild."
747
748 clean: do-clean local-clean
749 mostlyclean: do-mostlyclean local-clean
750 distclean: do-distclean local-clean local-distclean
751 maintainer-clean: local-maintainer-clean do-maintainer-clean local-clean 
752 maintainer-clean: local-distclean
753 realclean: maintainer-clean
754
755 # Check target.
756
757 .PHONY: check
758 check: $(CHECK_MODULES) \
759         $(CHECK_TARGET_MODULES) \
760         $(CHECK_X11_MODULES) \
761         check-gcc
762
763 # Installation targets.
764
765 .PHONY: install uninstall source-vault binary-vault vault-install
766 install: $(INSTALL_TARGET) 
767
768 uninstall:
769         @echo "the uninstall target is not supported in this tree"
770
771 source-vault:
772         $(MAKE) -f ./release/Build-A-Release \
773                 host=$(host_alias) source-vault
774
775 binary-vault:
776         $(MAKE) -f ./release/Build-A-Release \
777                 host=$(host_alias) target=$(target_alias)
778
779 vault-install:
780         @if [ -f ./release/vault-install ] ; then \
781           ./release/vault-install $(host_alias) $(target_alias) ; \
782         else \
783           true ; \
784         fi
785
786 .PHONY: install.all
787 install.all: install-no-fixedincludes
788         @if [ -f ./gcc/Makefile ] ; then \
789                 r=`pwd` ; export r ; \
790                 $(SET_LIB_PATH) \
791                 (cd ./gcc; \
792                 $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
793         else \
794                 true ; \
795         fi
796
797 # install-no-fixedincludes is used because Cygnus can not distribute
798 # the fixed header files.
799 .PHONY: install-no-fixedincludes
800 install-no-fixedincludes: \
801         install-dirs \
802         $(INSTALL_MODULES) \
803         $(INSTALL_TARGET_MODULES) \
804         $(INSTALL_X11_MODULES) \
805         gcc-no-fixedincludes 
806
807 # Install the gcc headers files, but not the fixed include files,
808 # which Cygnus is not allowed to distribute.  This rule is very
809 # dependent on the workings of the gcc Makefile.in.
810 .PHONY: gcc-no-fixedincludes
811 gcc-no-fixedincludes:
812         @if [ -f ./gcc/Makefile ]; then \
813           rm -rf gcc/tmp-include; \
814           mv gcc/include gcc/tmp-include 2>/dev/null; \
815           mkdir gcc/include; \
816           cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \
817           touch gcc/stmp-fixinc gcc/include/fixed; \
818           rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \
819           r=`pwd`; export r; \
820           srcroot=`cd $(srcdir); pwd` ; export srcroot; \
821           $(SET_LIB_PATH) \
822           (cd ./gcc; \
823            $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
824           rm -rf gcc/include; \
825           mv gcc/tmp-include gcc/include 2>/dev/null; \
826         else true; fi
827
828 # This rule is used to build the modules which use FLAGS_TO_PASS.  To
829 # build a target all-X means to cd to X and make all.
830 #
831 # all-gui, and all-libproc are handled specially because
832 # they are still experimental, and if they fail to build, that
833 # shouldn't stop "make all".
834 .PHONY: $(ALL_MODULES) all-gui all-libproc
835 $(ALL_MODULES) all-gui all-libproc:
836         @dir=`echo $@ | sed -e 's/all-//'`; \
837         if [ -f ./$${dir}/Makefile ] ; then \
838           r=`pwd`; export r; \
839           srcroot=`cd $(srcdir); pwd`; export srcroot; \
840           $(SET_LIB_PATH) \
841           (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
842         else \
843           true; \
844         fi
845
846 # These rules are used to check the modules which use FLAGS_TO_PASS.
847 # To build a target check-X means to cd to X and make check.  Some
848 # modules are only tested in a native toolchain.
849
850 .PHONY: $(CHECK_MODULES) $(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
851 $(NATIVE_CHECK_MODULES):
852         @if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
853           dir=`echo $@ | sed -e 's/check-//'`; \
854           if [ -f ./$${dir}/Makefile ] ; then \
855             r=`pwd`; export r; \
856             srcroot=`cd $(srcdir); pwd`; export srcroot; \
857             $(SET_LIB_PATH) \
858             (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
859           else \
860             true; \
861           fi; \
862         fi
863
864 $(CROSS_CHECK_MODULES):
865         @dir=`echo $@ | sed -e 's/check-//'`; \
866         if [ -f ./$${dir}/Makefile ] ; then \
867           r=`pwd`; export r; \
868           srcroot=`cd $(srcdir); pwd`; export srcroot; \
869           $(SET_LIB_PATH) \
870           (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
871         else \
872           true; \
873         fi
874
875 # This rule is used to install the modules which use FLAGS_TO_PASS.
876 # To build a target install-X means to cd to X and make install.
877 .PHONY: $(INSTALL_MODULES)
878 $(INSTALL_MODULES): install-dirs
879         @dir=`echo $@ | sed -e 's/install-//'`; \
880         if [ -f ./$${dir}/Makefile ] ; then \
881           r=`pwd`; export r; \
882           srcroot=`cd $(srcdir); pwd`; export srcroot; \
883           $(SET_LIB_PATH) \
884           (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
885         else \
886           true; \
887         fi
888
889 # This rule is used to configure the modules which are built with the
890 # target tools.
891 .PHONY: $(CONFIGURE_TARGET_MODULES)
892 $(CONFIGURE_TARGET_MODULES):
893         @dir=`echo $@ | sed -e 's/configure-target-//'`; \
894         if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
895           true; \
896         elif echo " $(TARGET_CONFIGDIRS) " | grep " $${dir} " >/dev/null 2>&1; then \
897           if [ -d $(srcdir)/$${dir} ]; then \
898             [ -d $(TARGET_SUBDIR)/$${dir} ] || mkdir $(TARGET_SUBDIR)/$${dir};\
899             r=`pwd`; export r; \
900             srcroot=`cd $(srcdir); pwd`; export srcroot; \
901             $(SET_LIB_PATH) \
902             AR="$(AR_FOR_TARGET)"; export AR; \
903             AS="$(AS_FOR_TARGET)"; export AS; \
904             CC="$(CC_FOR_TARGET)"; export CC; \
905             CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
906             CXX="$(CXX_FOR_TARGET)"; export CXX; \
907             CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
908             DLLTOOL="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL; \
909             LD="$(LD_FOR_TARGET)"; export LD; \
910             NM="$(NM_FOR_TARGET)"; export NM; \
911             RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \
912             echo Configuring in $(TARGET_SUBDIR)/$${dir}; \
913             cd $(TARGET_SUBDIR)/$${dir}; \
914             case $(srcdir) in \
915             /*) \
916               topdir=$(srcdir) ;; \
917             *) \
918               case "$(TARGET_SUBDIR)" in \
919               .) topdir="../$(srcdir)" ;; \
920               *) topdir="../../$(srcdir)" ;; \
921               esac ;; \
922             esac; \
923             if [ "$(srcdir)" = "." ] ; then \
924               if [ "$(TARGET_SUBDIR)" != "." ] ; then \
925                 if $(SHELL) $${srcroot}/symlink-tree $${topdir}/$${dir} "Makefile" ; then \
926                   true; \
927                 else \
928                   exit 1; \
929                 fi; \
930               else \
931                 true; \
932               fi; \
933               srcdiroption="--srcdir=."; \
934               libsrcdir="."; \
935             else \
936               srcdiroption="--srcdir=$${topdir}/$${dir}"; \
937               libsrcdir="$${srcroot}/$${dir}"; \
938             fi; \
939             if [ -f $${libsrcdir}/configure ] ; then \
940               $(SHELL) $${libsrcdir}/configure \
941                 $(CONFIG_ARGUMENTS) $${srcdiroption} \
942                 --with-target-subdir="$(TARGET_SUBDIR)"; \
943             else \
944               $(SHELL) $${srcroot}/configure \
945                 $(CONFIG_ARGUMENTS) $${srcdiroption} \
946                 --with-target-subdir="$(TARGET_SUBDIR)"; \
947             fi; \
948           else \
949             true; \
950           fi; \
951         else \
952           true; \
953         fi
954
955 # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
956 # To build a target all-X means to cd to X and make all.
957 .PHONY: $(ALL_TARGET_MODULES)
958 $(ALL_TARGET_MODULES):
959         @dir=`echo $@ | sed -e 's/all-target-//'`; \
960         if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
961           r=`pwd`; export r; \
962           srcroot=`cd $(srcdir); pwd`; export srcroot; \
963           $(SET_LIB_PATH) \
964           (cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) all); \
965         else \
966           true; \
967         fi
968
969 # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
970 # To build a target install-X means to cd to X and make install.
971 .PHONY: $(CHECK_TARGET_MODULES)
972 $(CHECK_TARGET_MODULES):
973         @dir=`echo $@ | sed -e 's/check-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) check);\
979         else \
980           true; \
981         fi
982
983 # This rule is used to install the modules which use
984 # TARGET_FLAGS_TO_PASS.  To build a target install-X means to cd to X
985 # and make install.
986 .PHONY: $(INSTALL_TARGET_MODULES)
987 $(INSTALL_TARGET_MODULES): install-dirs
988         @dir=`echo $@ | sed -e 's/install-target-//'`; \
989         if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
990           r=`pwd`; export r; \
991           srcroot=`cd $(srcdir); pwd`; export srcroot; \
992           $(SET_LIB_PATH) \
993           (cd $(TARGET_SUBDIR)/$${dir}; \
994             $(MAKE) $(TARGET_FLAGS_TO_PASS) install); \
995         else \
996           true; \
997         fi
998
999 # This rule is used to build the modules which use X11_FLAGS_TO_PASS.
1000 # To build a target all-X means to cd to X and make all.
1001 .PHONY: $(ALL_X11_MODULES)
1002 $(ALL_X11_MODULES):
1003         @dir=`echo $@ | sed -e 's/all-//'`; \
1004         if [ -f ./$${dir}/Makefile ] ; then \
1005           r=`pwd`; export r; \
1006           srcroot=`cd $(srcdir); pwd`; export srcroot; \
1007           $(SET_LIB_PATH) \
1008           (cd $${dir}; \
1009            $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \
1010         else \
1011           true; \
1012         fi
1013
1014 # This rule is used to check the modules which use X11_FLAGS_TO_PASS.
1015 # To build a target check-X means to cd to X and make all.
1016 .PHONY: $(CHECK_X11_MODULES)
1017 $(CHECK_X11_MODULES):
1018         @dir=`echo $@ | sed -e 's/check-//'`; \
1019         if [ -f ./$${dir}/Makefile ] ; then \
1020           r=`pwd`; export r; \
1021           srcroot=`cd $(srcdir); pwd`; export srcroot; \
1022           $(SET_LIB_PATH) \
1023           (cd $${dir}; \
1024            $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \
1025         else \
1026           true; \
1027         fi
1028
1029 # This rule is used to install the modules which use X11_FLAGS_TO_PASS.
1030 # To build a target install-X means to cd to X and make install.
1031 .PHONY: $(INSTALL_X11_MODULES)
1032 $(INSTALL_X11_MODULES):
1033         @dir=`echo $@ | sed -e 's/install-//'`; \
1034         if [ -f ./$${dir}/Makefile ] ; then \
1035           r=`pwd`; export r; \
1036           srcroot=`cd $(srcdir); pwd`; export srcroot; \
1037           $(SET_LIB_PATH) \
1038           (cd $${dir}; \
1039            $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \
1040         else \
1041           true; \
1042         fi
1043
1044 # gcc is the only module which uses GCC_FLAGS_TO_PASS.
1045 .PHONY: all-gcc
1046 all-gcc:
1047         @if [ -f ./gcc/Makefile ] ; then \
1048           r=`pwd`; export r; \
1049           srcroot=`cd $(srcdir); pwd`; export srcroot; \
1050           $(SET_LIB_PATH) \
1051           (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \
1052         else \
1053           true; \
1054         fi
1055
1056 .PHONY: all-bootstrap
1057 all-bootstrap:
1058         @if [ -f ./gcc/Makefile ] ; then \
1059           r=`pwd`; export r; \
1060           srcroot=`cd $(srcdir); pwd`; export srcroot; \
1061           $(SET_LIB_PATH) \
1062           (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) bootstrap); \
1063         else \
1064           true; \
1065         fi
1066
1067 .PHONY: check-gcc
1068 check-gcc:
1069         @if [ -f ./gcc/Makefile ] ; then \
1070           r=`pwd`; export r; \
1071           srcroot=`cd $(srcdir); pwd`; export srcroot; \
1072           $(SET_LIB_PATH) \
1073           (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \
1074         else \
1075           true; \
1076         fi
1077
1078 .PHONY: install-gcc
1079 install-gcc:
1080         @if [ -f ./gcc/Makefile ] ; then \
1081           r=`pwd`; export r; \
1082           srcroot=`cd $(srcdir); pwd`; export srcroot; \
1083           $(SET_LIB_PATH) \
1084           (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
1085         else \
1086           true; \
1087         fi
1088
1089
1090 # EXPERIMENTAL STUFF
1091 # This rule is used to install the modules which use FLAGS_TO_PASS.
1092 # To build a target install-X means to cd to X and make install.
1093 .PHONY: install-dosrel
1094 install-dosrel: install-dirs info
1095         @dir=`echo $@ | sed -e 's/install-//'`; \
1096         if [ -f ./$${dir}/Makefile ] ; then \
1097           r=`pwd`; export r; \
1098           srcroot=`cd $(srcdir); pwd`; export srcroot; \
1099           $(SET_LIB_PATH) \
1100           (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
1101         else \
1102           true; \
1103         fi
1104
1105 install-dosrel-fake:
1106
1107
1108 # This is a list of inter-dependencies among modules.
1109 all-autoconf: all-m4
1110 all-bfd:
1111 all-binutils: all-libiberty all-opcodes all-bfd all-flex all-byacc
1112 all-byacc:
1113 all-cvs:
1114 all-dejagnu: all-tcl all-expect all-tk
1115 all-diff: all-libiberty
1116 all-emacs:
1117 all-emacs19: all-byacc
1118 all-etc:
1119 configure-target-examples: $(ALL_GCC)
1120 all-target-examples: configure-target-examples
1121 all-expect: all-tcl all-tk
1122 all-fileutils: all-libiberty
1123 all-find:
1124 all-flex: all-libiberty all-byacc
1125 all-gas: all-libiberty all-opcodes all-bfd
1126 all-gash: all-tcl
1127 all-gawk:
1128 ALL_GCC = all-gcc
1129 all-gcc: all-libiberty all-byacc all-binutils all-gas all-ld
1130 all-bootstrap: all-libiberty all-byacc all-binutils all-gas all-ld
1131 GDB_TK = all-tk all-tcl
1132 all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-byacc all-sim $(gdbnlmrequirements) $(GDB_TK)
1133 all-gprof: all-libiberty all-bfd all-opcodes
1134 all-grep: all-libiberty
1135 all-grez: all-libiberty all-bfd all-opcodes
1136 all-gui: all-gdb all-libproc all-target-librx
1137 all-gzip: all-libiberty
1138 all-hello: all-libiberty
1139 all-indent:
1140 all-ispell: all-emacs19
1141 all-ld: all-libiberty all-bfd all-opcodes all-byacc all-flex
1142 configure-target-libg++: $(ALL_GCC) configure-target-librx
1143 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++
1144 configure-target-libgloss: $(ALL_GCC)
1145 all-target-libgloss: configure-target-libgloss configure-target-newlib
1146 configure-target-libio: $(ALL_GCC)
1147 all-target-libio: configure-target-libio all-gas all-ld all-gcc all-target-libiberty all-target-newlib
1148 all-libiberty:
1149 configure-target-librx: $(ALL_GCC) configure-target-newlib
1150 all-target-librx: configure-target-librx
1151 configure-target-libstdc++: $(ALL_GCC)
1152 all-target-libstdc++: configure-target-libstdc++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio
1153 all-m4: all-libiberty
1154 all-make: all-libiberty
1155 all-mmalloc:
1156 configure-target-newlib: $(ALL_GCC)
1157 all-target-newlib: configure-target-newlib all-binutils all-gas all-gcc
1158 all-opcodes: all-bfd all-libiberty
1159 all-patch: all-libiberty
1160 all-prms: all-libiberty
1161 all-rcs:
1162 all-readline:
1163 all-recode: all-libiberty
1164 all-sed: all-libiberty
1165 all-send-pr: all-prms
1166 all-shellutils:
1167 all-sim: all-libiberty all-bfd all-opcodes
1168 all-tar: all-libiberty
1169 all-tcl:
1170 all-tclX: all-tcl all-tk
1171 all-tk: all-tcl
1172 all-texinfo: all-libiberty
1173 all-textutils:
1174 all-tgas: all-libiberty all-bfd all-opcodes
1175 all-time:
1176 all-wdiff:
1177 all-target-winsup: all-target-newlib all-target-libiberty configure-target-winsup 
1178 configure-target-winsup: configure-target-newlib
1179 all-uudecode: all-libiberty
1180 configure-target-libiberty: $(ALL_GCC)
1181 all-target-libiberty: configure-target-libiberty all-gcc all-ld all-target-newlib
1182
1183 ### other supporting targets
1184
1185 MAKEDIRS= \
1186         $(prefix) \
1187         $(exec_prefix) \
1188         $(tooldir)
1189
1190 .PHONY: install-dirs
1191 install-dirs:
1192         @for i in $(MAKEDIRS) ; do \
1193                 echo Making $$i... ; \
1194                 parent=`echo $$i | sed -e 's@/[^/]*$$@@' | sed -e 's@^$$@/@'`; \
1195                 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi ; \
1196                 if [ ! -d $$i ] ; then \
1197                         if mkdir $$i ; then \
1198                                 true ; \
1199                         else \
1200                                 exit 1 ; \
1201                         fi ; \
1202                 else \
1203                         true ; \
1204                 fi ; \
1205         done
1206
1207
1208 dir.info: do-install-info
1209         if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \
1210           $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \
1211           mv -f dir.info.new dir.info ; \
1212         else true ; \
1213         fi
1214
1215 dist:
1216         @echo "Building a full distribution of this tree isn't done"
1217         @echo "via 'make dist'.  Check out the etc/ subdirectory" 
1218
1219 etags tags: TAGS
1220
1221 # Right now this just builds TAGS in each subdirectory.  emacs19 has the
1222 # ability to use several tags files at once, so there is probably no need
1223 # to combine them into one big TAGS file (like CVS 1.3 does).  We could
1224 # (if we felt like it) have this Makefile write a piece of elisp which
1225 # the user could load to tell emacs19 where all the TAGS files we just
1226 # built are.
1227 TAGS: do-TAGS
1228
1229 # with the gnu make, this is done automatically.
1230
1231 Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag)
1232         $(SHELL) ./config.status
1233
1234 #
1235 # Support for building net releases
1236
1237 # Files in devo used in any net release.
1238 # ChangeLog omitted because it may refer to files which are not in this
1239 # distribution (perhaps it would be better to include it anyway).
1240 DEVO_SUPPORT= README Makefile.in configure configure.in \
1241         config.guess config.sub config move-if-change \
1242         mpw-README mpw-build.in mpw-config.in mpw-configure \
1243         COPYING COPYING.LIB install.sh config-ml.in symlink-tree
1244
1245 # Files in devo/etc used in any net release.
1246 # ChangeLog omitted because it may refer to files which are not in this
1247 # distribution (perhaps it would be better to include it anyway).
1248 ETC_SUPPORT= Makefile.in cfg-paper.texi configure.in configure.man \
1249         configure.texi standards.texi make-stds.texi \
1250         configure.info* standards.info* cfg-paper.info*
1251
1252 # When you use `make setup-dirs' or `make taz' you should always redefine
1253 # this macro.
1254 SUPPORT_FILES = list-of-support-files-for-tool-in-question
1255 # Files where "byacc" (Cygnus version) should be changed to "bison -y" (FSF).
1256 DISTBISONFILES= binutils/Makefile.in gas/Makefile.in gdb/Makefile.in
1257
1258 .PHONY: taz
1259
1260 taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \
1261   texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1262         # Make sure "diststuff" files get built properly.
1263         for f in $(DISTBISONFILES) ; do \
1264           if [ -r $$f ]; then \
1265             sed '/^BISON *=.*$$/s/.*/BISON = bison -y/' <$$f >tmp ; \
1266             mv -f tmp $$f ; \
1267           else true; fi ; \
1268         done
1269         # Take out texinfo from a few places; make simple BISON=bison line.
1270         sed -e '/^all\.normal: /s/\all-texinfo //' \
1271             -e '/^      install-texinfo /d' \
1272             -e '/^BISON = /,/^$$/d' \
1273             -e '/^# BISON:/s/.*/BISON = bison -y/' \
1274         <Makefile.in >tmp
1275         mv -f tmp Makefile.in
1276         #
1277         $(start-sanitize-Sanitize)
1278         @if [ -f .Sanitize ] ; then echo "RUN Sanitize FIRST!" ; false ; fi ;
1279         $(end-sanitize-Sanitize)
1280         ./configure sun4
1281         [ -z "$(CONFIGURE_TARGET_MODULES)" ] \
1282           || $(MAKE) $(CONFIGURE_TARGET_MODULES) ALL_GCC="" \
1283             CC_FOR_TARGET="$(CC)" CXX_FOR_TARGET="$(CXX)"
1284         # Make links, and run "make diststuff" or "make info" when needed.
1285         rm -rf proto-toplev ; mkdir proto-toplev
1286         set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
1287         for d in $$dirs ; do \
1288           if [ -d $$d ]; then \
1289             if [ ! -f $$d/Makefile ] ; then true ; \
1290             elif grep '^diststuff:' $$d/Makefile >/dev/null ; then \
1291                 (cd $$d ; $(MAKE) diststuff ) || exit 1 ; \
1292             elif grep '^info:' $$d/Makefile >/dev/null ; then \
1293                 (cd $$d ; $(MAKE) info ) || exit 1 ; \
1294             fi ; \
1295             if [ -d $$d/proto-$$d.dir ]; then \
1296               ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
1297             else \
1298               ln -s ../$$d proto-toplev/$$d ; \
1299             fi ; \
1300           else ln -s ../$$d proto-toplev/$$d ; fi ; \
1301         done
1302         cd etc ; $(MAKE) info
1303         $(MAKE) distclean
1304         #
1305         mkdir proto-toplev/etc
1306         (cd proto-toplev/etc; \
1307          for i in $(ETC_SUPPORT); do \
1308                 ln -s ../../etc/$$i . ; \
1309          done)
1310         #
1311         # Take out texinfo from configurable dirs
1312         rm proto-toplev/configure.in
1313         sed -e '/^host_tools=/s/texinfo //' \
1314             <configure.in >proto-toplev/configure.in
1315         #
1316         mkdir proto-toplev/texinfo
1317         ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
1318         ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/
1319         ln -s ../../texinfo/lgpl.texinfo proto-toplev/texinfo/
1320         ln -s ../../texinfo/tex3patch   proto-toplev/texinfo/
1321         chmod og=u `find . -print`
1322         (VER=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \
1323                 echo "==> Making $(TOOL)-$$VER.tar.gz"; \
1324                 rm -f $(TOOL)-$$VER; ln -s proto-toplev $(TOOL)-$$VER; \
1325                 tar cfh - $(TOOL)-$$VER \
1326                 | $(GZIPPROG) -v -9 >$(TOOL)-$$VER.tar.gz )
1327
1328 TEXINFO_SUPPORT= texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1329 DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT)
1330
1331 .PHONY: gas.tar.gz
1332 GAS_SUPPORT_DIRS= bfd include libiberty opcodes
1333 gas.tar.gz: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas
1334         $(MAKE) -f Makefile.in taz TOOL=gas \
1335                 SUPPORT_FILES="$(GAS_SUPPORT_DIRS)"
1336
1337 # The FSF "binutils" release includes gprof and ld.
1338 .PHONY: binutils.tar.gz
1339 BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof
1340 binutils.tar.gz: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils
1341         $(MAKE) -f Makefile.in taz TOOL=binutils \
1342                 SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS) makeall.bat configure.bat"
1343
1344 .PHONY: gas+binutils.tar.gz
1345 GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof
1346 gas+binutils.tar.gz: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas
1347         $(MAKE) -f Makefile.in taz TOOL=gas \
1348                 SUPPORT_FILES="$(GASB_SUPPORT_DIRS) makeall.bat configure.bat"
1349
1350 .PHONY: libg++.tar.gz
1351 LIBGXX_SUPPORT_DIRS=include libstdc++ libio librx libiberty
1352 libg++.tar.gz: $(DIST_SUPPORT) libg++
1353         $(MAKE) -f Makefile.in taz TOOL=libg++ \
1354                 SUPPORT_FILES="$(LIBGXX_SUPPORT_DIRS)"
1355
1356 GNATS_SUPPORT_DIRS=include libiberty send-pr
1357 gnats.tar.gz: $(DIST_SUPPORT) $(GNATS_SUPPORT_DIRS) gnats
1358         $(MAKE) -f  Makefile.in taz TOOL=gnats \
1359                 SUPPORT_FILES="$(GNATS_SUPPORT_DIRS)"
1360
1361 .PHONY: gdb.tar.gz
1362 GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline sim utils
1363 GDBTK_SUPPORT_DIRS= `if [ -d tcl -a -d tk ] ; then echo tcl tk ; fi`
1364 gdb.tar.gz: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb
1365         $(MAKE) -f Makefile.in taz TOOL=gdb \
1366                 SUPPORT_FILES="$(GDB_SUPPORT_DIRS) $(GDBTK_SUPPORT_DIRS)"
1367
1368 .PHONY: newlib.tar.gz
1369 NEWLIB_SUPPORT_DIRS=libgloss
1370 # taz configures for the sun4 target which won't configure newlib.
1371 # We need newlib configured so that the .info files are made.
1372 # Unfortunately, it is not enough to just configure newlib separately:
1373 # taz will build the .info files but since SUBDIRS won't contain newlib,
1374 # distclean won't be run (leaving Makefile, config.status, and the tmp files
1375 # used in building the .info files, eg: *.def, *.ref).
1376 # The problem isn't solvable however without a lot of extra work because
1377 # target libraries are built in subdir $(target_alias) which gets nuked during
1378 # the make distclean.  For now punt on the issue of shipping newlib info files
1379 # with newlib net releases and wait for a day when some native target (sun4?)
1380 # supports newlib (if only minimally).
1381 newlib.tar.gz: $(DIST_SUPPORT) $(NEWLIB_SUPPORT_DIRS) newlib
1382         $(MAKE) -f Makefile.in taz TOOL=newlib \
1383                 SUPPORT_FILES="$(NEWLIB_SUPPORT_DIRS)" \
1384                 DEVO_SUPPORT="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib
1385
1386 .NOEXPORT:
1387 MAKEOVERRIDES=
1388
1389 # start-sanitize-chill
1390 ## This is ugly, but I don't want GNU make to put these variables in
1391 ## the environment.  Older makes will see this as a set of targets
1392 ## with no dependencies and no actions.
1393 unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
1394 # end-sanitize-chill
1395
1396 # end of Makefile.in