Change the configuration a little bit.
[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., 675 Mass Ave, Cambridge, MA 02139, 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
46 SHELL = /bin/sh
47
48 INSTALL = cp
49 INSTALL_PROGRAM = $(INSTALL)
50 INSTALL_DATA = $(INSTALL)
51
52 AS = as
53 AR = ar
54 AR_FLAGS = rc
55 CC = cc
56 CFLAGS = -g
57 # start-sanitize-chill
58 CHILLFLAGS = $(CFLAGS)
59 CHILL_LIB = -lchill
60 # end-sanitize-chill
61 CXX = gcc
62 CXXFLAGS = -g -O
63 RANLIB = ranlib
64 NM = nm
65 MUNCH_NM = $(NM)
66 GZIP = gzip
67 COMPRESS = compress
68
69 # BISON: This line sed'ed to BISON = bison -y for FSF releases, don't remove.
70 BISON = `if [ -f $${rootme}/byacc/byacc ] ; \
71             then echo $${rootme}/byacc/byacc ; \
72             else echo byacc ; \
73         fi`
74
75 LEX = `if [ -f $${rootme}/flex/flex ] ; \
76         then echo $${rootme}/flex/flex ; \
77         else echo flex ; fi`
78
79 MAKEINFO = `if [ -f $${rootme}/texinfo/makeinfo/makeinfo ] ; \
80         then echo $${rootme}/texinfo/makeinfo/makeinfo ; \
81         else echo makeinfo ; fi`
82
83 EXPECT = `if [ -f $${rootme}/expect/expect ] ; \
84         then echo $${rootme}/expect/expect ; \
85         else echo expect ; fi`
86
87 RUNTEST = `if [ -f $${srcroot}/dejagnu/runtest ] ; \
88         then echo $${srcroot}/dejagnu/runtest ; \
89         else echo runtest ; fi`
90
91
92 # libraries that may need to be augmented on a system-by-system basis
93 X11_LIB = -lX11
94
95 # compilers to use to create programs which must be run in the build
96 # environment.
97 CC_FOR_BUILD = $(CC)
98 CXX_FOR_BUILD = $(CXX)
99
100 SUBDIRS = "this is set via configure, don't edit this"
101 OTHERS = 
102
103 ALL = all.normal
104 INSTALL_TARGET = install.all
105
106 CC_FOR_TARGET = ` \
107   if [ -f $${rootme}/gcc/Makefile ] ; then \
108     echo $${rootme}/gcc/xgcc -B$${rootme}/gcc/; \
109   else \
110     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
111       echo $(CC); \
112     else \
113       t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
114     fi; \
115   fi`
116
117 # start-sanitize-chill
118 CHILL_FOR_TARGET = ` \
119   if [ -f $${rootme}/gcc/Makefile ] ; then \
120     echo $${rootme}/gcc/xgcc -B$${rootme}/gcc/ -L$${rootme}/chillrt/; \
121   else \
122     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
123       echo $(CC); \
124     else \
125       t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
126     fi; \
127   fi`
128
129 # end-sanitize-chill
130
131 CXX_FOR_TARGET = ` \
132   if [ -f $${rootme}/gcc/Makefile ] ; then \
133     echo $${rootme}/gcc/xgcc -B$${rootme}/gcc/; \
134   else \
135     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
136       echo $(CXX); \
137     else \
138       t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
139     fi; \
140   fi`
141
142 AS_FOR_TARGET = ` \
143   if [ -f $${rootme}/gas/Makefile ] ; then \
144     echo $${rootme}/gas/as.new ; \
145   else \
146     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
147       echo $(AS); \
148     else \
149        t='$(program_transform_name)'; echo as | sed -e '' $$t ; \
150     fi; \
151   fi`
152
153 AR_FOR_TARGET = ` \
154   if [ -f $${rootme}/binutils/Makefile ] ; then \
155     echo $${rootme}/binutils/ar ; \
156   else \
157     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
158       echo $(AR); \
159     else \
160        t='$(program_transform_name)'; echo ar | sed -e '' $$t ; \
161     fi; \
162   fi`
163
164 RANLIB_FOR_TARGET = ` \
165   if [ -f $${rootme}/binutils/Makefile ] ; then \
166     echo $${rootme}/binutils/ranlib ; \
167   else \
168     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
169       echo $(RANLIB); \
170     else \
171        t='$(program_transform_name)'; echo ranlib | sed -e '' $$t ; \
172     fi; \
173   fi`
174
175 NM_FOR_TARGET = ` \
176   if [ -f $${rootme}/binutils/Makefile ] ; then \
177     echo $${rootme}/binutils/nm ; \
178   else \
179     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
180       echo $(NM); \
181     else \
182        t='$(program_transform_name)'; echo nm | sed -e '' $$t ; \
183     fi; \
184   fi`
185
186 # FIXME: This is badly named.
187 XTRAFLAGS = ` \
188   if [ -f $${rootme}/gcc/Makefile ] ; then \
189     if [ -f $${rootme}/newlib/Makefile ] ; then \
190       echo -I$${rootme}/newlib/targ-include -I$${srcroot}/newlib/libc/include -I$${rootme}/gcc/include -nostdinc ; \
191     else \
192       echo -I$${rootme}/gcc/include ; \
193     fi ; \
194   else \
195      echo ; \
196   fi`
197
198 PRMS = all-prms
199
200 #### host and target specific makefile fragments come in here.
201 ###
202
203 # Flags to pass down to all sub-makes.
204 # Please keep these in alphabetical order.
205 BASE_FLAGS_TO_PASS = \
206         "AR_FLAGS=$(AR_FLAGS)" \
207         "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
208         "AS_FOR_TARGET=$(AS_FOR_TARGET)" \
209         "BISON=$(BISON)" \
210         "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
211         "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
212         "CFLAGS=$(CFLAGS)" \
213         $(start-sanitize-chill)\
214         "CHILLFLAGS=$(CHILLFLAGS)" \
215         "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
216         "CHILL_LIB=$(CHILL_LIB)" \
217         $(end-sanitize-chill)\
218         "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
219         "CXXFLAGS=$(CXXFLAGS)" \
220         "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
221         'GCC_FOR_TARGET=$$(CC_FOR_TARGET)' \
222         "INSTALL=$(INSTALL)" \
223         "INSTALL_DATA=$(INSTALL_DATA)" \
224         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
225         "LDFLAGS=$(LDFLAGS)" \
226         "LEX=$(LEX)" \
227         "LOADLIBES=$(LOADLIBES)" \
228         "MAKEINFO=$(MAKEINFO)" \
229         "MUNCH_NM=$(MUNCH_NM)" \
230         "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
231         "PRMS=$(PRMS)" \
232         "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
233         "EXPECT=$(EXPECT)" \
234         "RUNTEST=$(RUNTEST)" \
235         "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
236         "XTRAFLAGS_FOR_TARGET=$(XTRAFLAGS)" \
237         "exec_prefix=$(exec_prefix)" \
238         "prefix=$(prefix)" \
239         "tooldir=$(tooldir)" 
240
241 # Flags to pass down to most sub-makes, in which we're building with
242 # the host environment.
243 # If any variables are added here, they must be added to do-*, below.
244 EXTRA_HOST_FLAGS = \
245         'AR=$(AR)' \
246         'AS=$(AS)' \
247         'CC=$(CC)' \
248         'CXX=$(CXX)' \
249         'NM=$(NM)' \
250         'RANLIB=$(RANLIB)' \
251         'XTRAFLAGS='
252
253 FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)
254
255 # Flags that are concerned with the location of the X11 include files
256 # and library files
257 X11_FLAGS_TO_PASS = \
258         "X11_INCLUDE_FLAGS=$(X11_INCLUDE_FLAGS)" \
259         "X11_LIB_FLAGS=$(X11_LIB_FLAGS)" \
260         "X11_LIB=$(X11_LIB)"
261
262 # Flags to pass down to makes which are built with the target environment.
263 # The double $ decreases the length of the command line; the variables
264 # are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them.
265 # If any variables are added here, they must be added to do-*, below.
266 EXTRA_TARGET_FLAGS = \
267         'AR=$$(AR_FOR_TARGET)' \
268         'AS=$$(AS_FOR_TARGET)' \
269         'CC=$$(CC_FOR_TARGET)' \
270         'CXX=$$(CXX_FOR_TARGET)' \
271         'NM=$$(NM_FOR_TARGET)' \
272         'RANLIB=$$(RANLIB_FOR_TARGET)' \
273         'XTRAFLAGS=$$(XTRAFLAGS_FOR_TARGET)'
274
275 TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)
276
277 # Flags to pass down to gcc.  gcc builds a library, libgcc.a, so it
278 # unfortunately needs the native compiler and the target ar and
279 # ranlib.
280 # If any variables are added here, they must be added to do-*, below.
281 # The HOST_* variables are a special case, which are used for the gcc
282 # cross-building scheme.
283 HOST_CC = $(CC_FOR_BUILD)
284 HOST_PREFIX = 
285 HOST_PREFIX_1 = loser-
286 EXTRA_GCC_FLAGS = \
287         'AR=$$(AR_FOR_TARGET)' \
288         'AS=$(AS)' \
289         'CC=$(CC)' \
290         'CXX=$(CXX)' \
291         'HOST_CC=$(CC_FOR_BUILD)' \
292         'HOST_PREFIX=$(HOST_PREFIX)' \
293         'HOST_PREFIX_1=$(HOST_PREFIX_1)' \
294         'NM=$(NM)' \
295         'RANLIB=$$(RANLIB_FOR_TARGET)' \
296         'XTRAFLAGS='
297
298 GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS)
299
300 # This is a list of the targets for all of the modules which are compiled
301 # using $(FLAGS_TO_PASS).
302 ALL_MODULES = \
303         all-autoconf \
304         all-bfd \
305         all-binutils \
306         all-byacc \
307         all-cvs \
308         all-dejagnu \
309         all-diff \
310         all-etc \
311         all-fileutils \
312         all-find \
313         all-flex \
314         all-gas \
315         all-gawk \
316         all-gdb \
317         all-gprof \
318         all-grep \
319         all-gzip \
320         all-hello \
321         all-indent \
322         all-ispell \
323         all-ld \
324         all-libiberty \
325         all-m4 \
326         all-make \
327         all-mmalloc \
328         all-opcodes \
329         all-patch \
330         all-prms \
331         all-rcs \
332         all-readline \
333         all-recode \
334         all-sed \
335         all-send-pr \
336         all-shellutils \
337         all-sim \
338         all-tar \
339         all-tcl \
340         all-texinfo \
341         all-textutils \
342         all-tgas \
343         all-time \
344         all-uudecode \
345         all-wdiff
346
347 # This is a list of the check targets for all of the modules which are
348 # compiled using $(FLAGS_TO_PASS).
349 CHECK_MODULES = \
350         check-autoconf \
351         check-bfd \
352         check-binutils \
353         check-byacc \
354         check-cvs \
355         check-dejagnu \
356         check-diff \
357         check-etc \
358         check-fileutils \
359         check-find \
360         check-flex \
361         check-gas \
362         check-gawk \
363         check-gdb \
364         check-gprof \
365         check-grep \
366         check-gzip \
367         check-hello \
368         check-indent \
369         check-ispell \
370         check-ld \
371         check-libiberty \
372         check-m4 \
373         check-make \
374         check-mmcheckoc \
375         check-opcodes \
376         check-patch \
377         check-prms \
378         check-rcs \
379         check-readline \
380         check-recode \
381         check-sed \
382         check-send-pr \
383         check-shellutils \
384         check-sim \
385         check-tar \
386         check-tcl \
387         check-texinfo \
388         check-textutils \
389         check-tgas \
390         check-time \
391         check-uudecode \
392         check-wdiff
393
394 # This is a list of the install targets for all of the modules which are
395 # compiled using $(FLAGS_TO_PASS).
396 INSTALL_MODULES = \
397         install-autoconf \
398         install-bfd \
399         install-binutils \
400         install-byacc \
401         install-cvs \
402         install-dejagnu \
403         install-diff \
404         install-etc \
405         install-fileutils \
406         install-find \
407         install-flex \
408         install-gas \
409         install-gawk \
410         install-gdb \
411         install-glob \
412         install-gprof \
413         install-grep \
414         install-gzip \
415         install-hello \
416         install-indent \
417         install-ispell \
418         install-ld \
419         install-libiberty \
420         install-m4 \
421         install-make \
422         install-mmalloc \
423         install-opcodes \
424         install-patch \
425         install-prms \
426         install-rcs \
427         install-readline \
428         install-recode \
429         install-sed \
430         install-send-pr \
431         install-shellutils \
432         install-sim \
433         install-tar \
434         install-tcl \
435         install-texinfo \
436         install-textutils \
437         install-tgas \
438         install-time \
439         install-uudecode \
440         install-wdiff
441
442 # This is a list of the targets for all of the modules which are compiled
443 # using $(X11_FLAGS_TO_PASS).
444 ALL_X11_MODULES = \
445         all-emacs \
446         all-expect \
447         all-tclX \
448         all-tk
449
450 # This is a list of the check targets for all of the modules which are
451 # compiled using $(X11_FLAGS_TO_PASS).
452 CHECK_X11_MODULES = \
453         check-emacs \
454         check-expect \
455         check-tclX \
456         check-tk
457
458 # This is a list of the install targets for all the modules which are
459 # compiled using $(X11_FLAGS_TO_PASS).
460 INSTALL_X11_MODULES = \
461         install-emacs \
462         install-expect \
463         install-tclX \
464         install-tk
465
466 # This is a list of the targets for all of the modules which are compiled
467 # using $(TARGET_FLAGS_TO_PASS).
468 ALL_TARGET_MODULES = \
469         $(start-sanitize-chill) \
470         all-chillrt \
471         $(end-sanitize-chill) \
472         all-libg++ \
473         all-newlib \
474         all-xiberty
475
476 # This is a list of the check targets for all of the modules which are
477 # compiled using $(TARGET_FLAGS_TO_PASS).
478 CHECK_TARGET_MODULES = \
479         $(start-sanitize-chill) \
480         check-chillrt \
481         $(end-sanitize-chill) \
482         check-libg++ \
483         check-newlib \
484         check-xiberty
485
486 # This is a list of the install targets for all of the modules which are
487 # compiled using $(TARGET_FLAGS_TO_PASS).
488 INSTALL_TARGET_MODULES = \
489         $(start-sanitize-chill) \
490         install-chillrt \
491         $(end-sanitize-chill) \
492         install-libg++ \
493         install-newlib \
494         install-xiberty
495
496 # This is a shell case of all modules which are compiled using
497 # $(TARGET_FLAGS_TO_PASS), used in the do-X rule.
498 TARGET_LIBS = libg++ | newlib | xiberty
499 # start-sanitize-chill
500 TARGET_LIBS = chillrt | libg++ | newlib | xiberty
501 # end-sanitize-chill
502
503 # The first rule in the file had better be this one.  Don't put any above it.
504 all: $(ALL)
505 .PHONY: all
506
507 # The target built for a native build.
508 .PHONY: all.normal
509 all.normal: \
510         $(ALL_MODULES) \
511         $(ALL_TARGET_MODULES) \
512         $(ALL_X11_MODULES) \
513         all-gcc
514
515 # The target built for a cross build.
516 .PHONY: all.cross
517 all.cross: \
518         all-bfd \
519         all-binutils \
520         all-byacc \
521         all-dejagnu \
522         all-flex \
523         all-gas \
524         all-gcc \
525         all-gdb \
526         all-ld \
527         all-libiberty \
528         all-mmalloc \
529         all-opcodes \
530         all-readline \
531         all-sim \
532         $(ALL_TARGET_MODULES)
533
534 # Do a target for all the subdirectories.  A ``make do-X'' will do a
535 # ``make X'' in all subdirectories (because, in general, there is a
536 # dependency (below) of X upon do-X, a ``make X'' will also do this,
537 # but it may do additional work as well).
538 # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
539 # because it is so large that it can easily overflow the command line
540 # length limit on some systems.
541 DO_X = \
542         do-clean \
543         do-distclean \
544         do-dvi \
545         do-info \
546         do-install-info \
547         do-installcheck \
548         do-mostlyclean \
549         do-realclean
550 .PHONY: $(DO_X)
551 $(DO_X):
552         @target=`echo $@ | sed -e 's/^do-//'`; \
553         rootme=`pwd`; export rootme; \
554         srcroot=`cd $(srcdir); pwd`; export srcroot; \
555         for i in $(SUBDIRS); do \
556           if [ -f ./$$i/Makefile ]; then \
557             case $$i in \
558             $(TARGET_LIBS) ) \
559               for flag in $(EXTRA_TARGET_FLAGS); do \
560                 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
561               done; \
562               ;; \
563             gcc) \
564               for flag in $(EXTRA_GCC_FLAGS); do \
565                 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
566               done; \
567               ;; \
568             *) \
569               for flag in $(EXTRA_HOST_FLAGS); do \
570                 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
571               done; \
572               ;; \
573             esac ; \
574             export AR AS CC CXX NM RANLIB XTRAFLAGS; \
575             if (cd ./$$i; \
576                 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
577                         "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \
578                         "RANLIB=$${RANLIB}" "XTRAFLAGS=$${XTRAFLAGS}" \
579                         $${target}); \
580             then true; else exit 1; fi; \
581           else true; fi; \
582         done
583
584 # Here are the targets which correspond to the do-X targets.
585
586 .PHONY: info installcheck dvi install-info
587 .PHONY: clean distclean mostlyclean realclean local-clean local-distclean
588 info: do-info
589 installcheck: do-installcheck
590 dvi: do-dvi
591
592 install-info: install-info-dirs do-install-info dir.info
593         if [ -f dir.info ] ; then \
594           $(INSTALL_DATA) dir.info $(infodir)/dir.info ; \
595         else true ; fi
596
597 do-install-info: install-info-dirs
598
599 local-clean:
600         -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E
601
602 local-distclean:
603         -rm -f Makefile config.status
604
605 clean: do-clean local-clean
606 mostlyclean: do-mostlyclean local-clean
607 distclean: do-distclean local-clean local-distclean
608 realclean: do-realclean local-clean local-distclean
609
610 # Check target.
611
612 .PHONY: check
613 check: $(CHECK_MODULES) \
614         $(CHECK_TARGET_MODULES) \
615         $(CHECK_X11_MODULES) \
616         check-gcc
617
618 # Installation targets.
619
620 .PHONY: install uninstall
621 install: $(INSTALL_TARGET) 
622
623 uninstall:
624         @echo "the uninstall target is not supported in this tree"
625
626 .PHONY: install.all
627 install.all: install-no-fixedincludes
628         @if [ -f ./gcc/Makefile ] ; then \
629                 rootme=`pwd` ; export rootme ; \
630                 (cd ./gcc; \
631                 $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
632         else \
633                 true ; \
634         fi
635
636 # install-no-fixedincludes is used because Cygnus can not distributed
637 # the fixed header files.
638 .PHONY: install-no-fixedincludes
639 install-no-fixedincludes: \
640         install-dirs \
641         gcc-no-fixedincludes \
642         $(INSTALL_MODULES) \
643         $(INSTALL_TARGET_MODULES) \
644         $(INSTALL_X11_MODULES)
645
646 # Install the gcc headers files, but not the fixed include files,
647 # which Cygnus is not allowed to distribute.  This rule is very
648 # dependent on the workings of the gcc Makefile.in.
649 .PHONY: gcc-no-fixedincludes
650 gcc-no-fixedincludes:
651         @if [ -f ./gcc/Makefile ]; then \
652           rm -rf gcc/tmp-include; \
653           mv gcc/include gcc/tmp-include 2>/dev/null; \
654           mkdir gcc/include; \
655           cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \
656           touch gcc/stmp-fixinc; \
657           rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \
658           rootme=`pwd`; export rootme; \
659           srcroot=`cd $(srcdir); pwd` ; export srcroot; \
660           (cd ./gcc; \
661            $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
662           rm -rf gcc/include; \
663           mv gcc/tmp-include gcc/include 2>/dev/null; \
664         else true; fi
665
666 .PHONY: install.cross
667 install.cross: \
668         install-dirs \
669         install-binutils \
670         install-byacc \
671         install-dejagnu \
672         install-etc \
673         install-flex \
674         install-gas \
675         install-gcc \
676         install-gdb \
677         install-glob \
678         install-ld \
679         install-libiberty \
680         install-mmalloc \
681         install-opcodes \
682         install-readline \
683         $(INSTALL_TARGET_MODULES)
684
685 # This rule is used to build the modules which use FLAGS_TO_PASS.  To
686 # build a target all-X means to cd to X and make all.
687 # all-glob is handled specially because it doesn't actually build.
688 .PHONY: $(ALL_MODULES) all-glob
689 $(ALL_MODULES) all-glob:
690         @dir=`echo $@ | sed -e 's/all-//'`; \
691         if [ -f ./$${dir}/Makefile ] ; then \
692           rootme=`pwd`; export rootme; \
693           srcroot=`cd $(srcdir); pwd`; export srcroot; \
694           (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
695         else \
696           true; \
697         fi
698
699 # This rule is used to check the modules which use FLAGS_TO_PASS.  To
700 # build a target check-X means to cd to X and make all.
701 .PHONY: $(CHECK_MODULES) 
702 $(CHECK_MODULES):
703         @dir=`echo $@ | sed -e 's/check-//'`; \
704         if [ -f ./$${dir}/Makefile ] ; then \
705           rootme=`pwd`; export rootme; \
706           srcroot=`cd $(srcdir); pwd`; export srcroot; \
707           (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
708         else \
709           true; \
710         fi
711
712 # This rule is used to install the modules which use FLAGS_TO_PASS.
713 # To build a target install-X means to cd to X and make install.
714 .PHONY: $(INSTALL_MODULES)
715 $(INSTALL_MODULES): install-dirs
716         @dir=`echo $@ | sed -e 's/install-//'`; \
717         if [ -f ./$${dir}/Makefile ] ; then \
718           rootme=`pwd`; export rootme; \
719           srcroot=`cd $(srcdir); pwd`; export srcroot; \
720           (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
721         else \
722           true; \
723         fi
724
725 # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
726 # To build a target all-X means to cd to X and make all.
727 .PHONY: $(ALL_TARGET_MODULES)
728 $(ALL_TARGET_MODULES):
729         @dir=`echo $@ | sed -e 's/all-//'`; \
730         if [ -f ./$${dir}/Makefile ] ; then \
731           rootme=`pwd`; export rootme; \
732           srcroot=`cd $(srcdir); pwd`; export srcroot; \
733           (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) all); \
734         else \
735           true; \
736         fi
737
738 # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
739 # To build a target install-X means to cd to X and make install.
740 .PHONY: $(CHECK_TARGET_MODULES)
741 $(CHECK_TARGET_MODULES):
742         @dir=`echo $@ | sed -e 's/check-//'`; \
743         if [ -f ./$${dir}/Makefile ] ; then \
744           rootme=`pwd`; export rootme; \
745           srcroot=`cd $(srcdir); pwd`; export srcroot; \
746           (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) check); \
747         else \
748           true; \
749         fi
750
751 # This rule is used to install the modules which use
752 # TARGET_FLAGS_TO_PASS.  To build a target install-X means to cd to X
753 # and make install.
754 .PHONY: $(INSTALL_TARGET_MODULES)
755 $(INSTALL_TARGET_MODULES): install-dirs
756         @dir=`echo $@ | sed -e 's/install-//'`; \
757         if [ -f ./$${dir}/Makefile ] ; then \
758           rootme=`pwd`; export rootme; \
759           srcroot=`cd $(srcdir); pwd`; export srcroot; \
760           (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) install); \
761         else \
762           true; \
763         fi
764
765 # This rule is used to build the modules which use X11_FLAGS_TO_PASS.
766 # To build a target all-X means to cd to X and make all.
767 .PHONY: $(ALL_X11_MODULES)
768 $(ALL_X11_MODULES):
769         @dir=`echo $@ | sed -e 's/all-//'`; \
770         if [ -f ./$${dir}/Makefile ] ; then \
771           rootme=`pwd`; export rootme; \
772           srcroot=`cd $(srcdir); pwd`; export srcroot; \
773           (cd $${dir}; \
774            $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \
775         else \
776           true; \
777         fi
778
779 # This rule is used to check the modules which use X11_FLAGS_TO_PASS.
780 # To build a target check-X means to cd to X and make all.
781 .PHONY: $(CHECK_X11_MODULES)
782 $(CHECK_X11_MODULES):
783         @dir=`echo $@ | sed -e 's/check-//'`; \
784         if [ -f ./$${dir}/Makefile ] ; then \
785           rootme=`pwd`; export rootme; \
786           srcroot=`cd $(srcdir); pwd`; export srcroot; \
787           (cd $${dir}; \
788            $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \
789         else \
790           true; \
791         fi
792
793 # This rule is used to install the modules which use X11_FLAGS_TO_PASS.
794 # To build a target install-X means to cd to X and make install.
795 .PHONY: $(INSTALL_X11_MODULES)
796 $(INSTALL_X11_MODULES):
797         @dir=`echo $@ | sed -e 's/install-//'`; \
798         if [ -f ./$${dir}/Makefile ] ; then \
799           rootme=`pwd`; export rootme; \
800           srcroot=`cd $(srcdir); pwd`; export srcroot; \
801           (cd $${dir}; \
802            $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \
803         else \
804           true; \
805         fi
806
807 # gcc is the only module which uses GCC_FLAGS_TO_PASS.
808 .PHONY: all-gcc
809 all-gcc:
810         @if [ -f ./gcc/Makefile ] ; then \
811           rootme=`pwd`; export rootme; \
812           srcroot=`cd $(srcdir); pwd`; export srcroot; \
813           (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \
814         else \
815           true; \
816         fi
817
818 .PHONY: check-gcc
819 check-gcc:
820         @if [ -f ./gcc/Makefile ] ; then \
821           rootme=`pwd`; export rootme; \
822           srcroot=`cd $(srcdir); pwd`; export srcroot; \
823           (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \
824         else \
825           true; \
826         fi
827
828 .PHONY: install-gcc
829 install-gcc:
830         @if [ -f ./gcc/Makefile ] ; then \
831           rootme=`pwd`; export rootme; \
832           srcroot=`cd $(srcdir); pwd`; export srcroot; \
833           (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
834         else \
835           true; \
836         fi
837
838 # This is a list of inter-dependencies among modules.
839 all-autoconf:
840 all-bfd:
841 all-binutils: all-libiberty all-opcodes all-bfd all-flex
842 all-byacc:
843 # start-sanitize-chill
844 all-chillrt: all-binutils all-gas all-gcc all-newlib
845 # end-sanitize-chill
846 all-cvs:
847 all-dejagnu:
848 all-diff: all-libiberty
849 all-emacs:
850 all-etc:
851 all-expect: all-tcl
852 all-fileutils:
853 all-find:
854 all-flex: all-libiberty all-byacc
855 all-gas: all-libiberty all-opcodes all-bfd
856 all-gawk:
857 all-gcc: all-libiberty all-byacc all-binutils all-gas
858 all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-glob all-byacc all-sim
859 all-glob:
860 all-gprof: all-libiberty all-bfd
861 all-grep:
862 all-gzip: all-libiberty
863 all-hello: all-libiberty
864 all-indent:
865 all-ispell: all-emacs
866 all-ld: all-libiberty all-bfd all-byacc all-flex
867 all-libg++: all-gas all-ld all-gcc all-xiberty all-newlib
868 all-libiberty:
869 all-m4: all-libiberty
870 all-make: all-libiberty
871 all-mmalloc:
872 all-newlib: all-binutils all-gas all-gcc
873 all-opcodes:
874 all-patch:
875 all-prms:
876 all-rcs:
877 all-readline:
878 all-recode: all-libiberty
879 all-sed:
880 all-send-pr:
881 all-shellutils:
882 all-sim: all-libiberty all-bfd
883 all-tar: all-libiberty
884 all-tcl:
885 all-tclX: all-tcl all-tk
886 all-tk: all-tcl
887 all-texinfo: all-libiberty
888 all-textutils:
889 all-tgas: all-libiberty all-bfd
890 all-time:
891 all-wdiff:
892 all-uudecode: all-libiberty
893 all-xiberty: all-gcc all-newlib
894
895 ### other supporting targets
896
897 MAKEDIRS= \
898         $(prefix) \
899         $(exec_prefix) \
900         $(tooldir)
901
902 .PHONY: install-dirs
903 install-dirs:
904         @for i in $(MAKEDIRS) ; do \
905                 echo Making $$i... ; \
906                 parent=`echo $$i|sed -e 's@/[^/]*$$@@'`; \
907                 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi ; \
908                 if [ ! -d $$i ] ; then \
909                         if mkdir $$i ; then \
910                                 true ; \
911                         else \
912                                 exit 1 ; \
913                         fi ; \
914                 else \
915                         true ; \
916                 fi ; \
917         done
918
919 .PHONY: install-info-dirs 
920 install-info-dirs:
921         if [ -d $(prefix) ] ; then true ; else mkdir $(prefix) ; fi
922         -parent=`echo $(infodir)|sed -e 's@/[^/]*$$@@'`; \
923         if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
924         -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
925
926 dir.info: do-install-info
927         if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \
928           $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \
929           mv -f dir.info.new dir.info ; \
930         else true ; \
931         fi
932
933 dist:
934         @echo "Building a full distribution of this tree isn't done"
935         @echo "via 'make dist'.  Check out the etc/ subdirectory" 
936
937 etags tags: TAGS
938
939 TAGS:
940         etags `$(MAKE) ls`
941
942 ls:
943         @echo Makefile
944         @for i in $(SUBDIRS); \
945         do \
946                 (cd $$i; \
947                         pwd=`pwd`; \
948                         wd=`basename $$pwd`; \
949                         for j in `$(MAKE) ls`; \
950                         do \
951                                 echo $$wd/$$j; \
952                         done) \
953         done
954
955 # with the gnu make, this is done automatically.
956
957 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
958         $(SHELL) ./config.status
959
960 #
961 # Build GDB distributions that contain BFD, Include, Libiberty, Readline, etc
962
963 DEVO_SUPPORT= README Makefile.in configure configure.in \
964         config.guess config.sub config move-if-change
965 ETC_SUPPORT= Makefile.in cfg-paper.texi configure.in configure.man \
966         configure.texi
967 GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline glob sim
968 GDB_SUPPORT_FILES= $(GDB_SUPPORT_DIRS)
969
970 .PHONY: setup-dirs-gdb gdb.tar.Z make-gdb.tar.Z
971 setup-dirs-gdb:
972         ./configure sun4
973         $(MAKE) clean
974         ./configure -rm sun4
975         chmod og=u `find etc $(DEVO_SUPPORT) $(GDB_SUPPORT_FILES) -print`
976
977 gdb.tar.Z: setup-dirs-gdb
978         (cd gdb; $(MAKE) -f Makefile.in make-proto-gdb.dir BISON="byacc")
979         (cd gdb; $(MAKE) -f Makefile.in make-proto-testsuite.dir)
980         $(MAKE) $(MFLAGS) -f Makefile.in make-gdb.tar.Z
981
982 make-gdb.tar.Z: $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS) gdb texinfo/texinfo.tex
983         rm -rf proto-toplev; mkdir proto-toplev
984         ln -s ../gdb/proto-gdb.dir proto-toplev/gdb
985         (cd proto-toplev; for i in $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS); do \
986                 ln -s ../$$i . ; \
987         done)
988         mkdir proto-toplev/etc
989         (cd proto-toplev/etc; for i in $(ETC_SUPPORT); do \
990                 ln -s ../../etc/$$i . ; \
991         done)
992         # Put only one copy (four hard links) of COPYING in the tar file.
993         rm                          proto-toplev/bfd/COPYING
994         ln proto-toplev/gdb/COPYING proto-toplev/bfd/COPYING
995         rm                          proto-toplev/include/COPYING
996         ln proto-toplev/gdb/COPYING proto-toplev/include/COPYING
997         rm                          proto-toplev/readline/COPYING
998         ln proto-toplev/gdb/COPYING proto-toplev/readline/COPYING
999
1000         # Take out texinfo and glob from configurable dirs
1001         rm proto-toplev/configure.in
1002         sed -e '/^host_tools=/s/texinfo //' \
1003             -e '/^host_libs=/s/glob //' \
1004             <configure.in >proto-toplev/configure.in
1005
1006         # Take out texinfo from a few places; make simple BISON=bison line.
1007         rm proto-toplev/Makefile.in
1008         sed -e '/^all\.normal: /s/\all-texinfo //' \
1009             -e '/^      install-texinfo /d' \
1010             -e '/^BISON = /,/^$$/d' \
1011             -e '/^# BISON:/s/.*/BISON = bison -y/' \
1012         <Makefile.in >proto-toplev/Makefile.in
1013
1014         mkdir proto-toplev/texinfo
1015         ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
1016         ln -s ../../texinfo/tex3patch   proto-toplev/texinfo/
1017         chmod og=u `find proto-toplev -print`
1018         (VER=`sed <gdb/Makefile.in -n 's/VERSION = //p'`; \
1019                 ln -s proto-toplev gdb-$$VER; \
1020                 echo "==> Making gdb-$$VER.tar.Z"; \
1021                 tar cfh - gdb-$$VER | $(COMPRESS) -v >gdb-$$VER.tar.Z; \
1022                 echo "==> Making gdb-$$VER.tar.z"; \
1023                 tar cfh - gdb-$$VER | $(GZIP) -v -9 >gdb-$$VER.tar.z)
1024
1025         # Make the testsuite archive separately.
1026         ln -s ../../gdb/proto-testsuite.dir/testsuite proto-toplev/gdb/testsuite
1027         # Blow away the Chill test that requires a Chill compiled executable,
1028         # since GNU Chill is not yet publically available.
1029         rm -rf proto-toplev/gdb/testsuite/gdb.t31
1030
1031         # Put a copy of COPYING in the tar file.
1032         ln proto-toplev/gdb/COPYING proto-toplev/gdb/testsuite/COPYING
1033         chmod og=u `find proto-toplev/gdb/testsuite -print`
1034         (VER=`sed <gdb/Makefile.in -n 's/VERSION = //p'`; \
1035                 echo "==> Making gdb-$$VER-testsuite.tar.Z"; \
1036                 tar cfh - gdb-$$VER/configure gdb-$$VER/config.guess \
1037                         gdb-$$VER/config.sub gdb-$$VER/move-if-change \
1038                         gdb-$$VER/gdb/testsuite | \
1039                         $(COMPRESS) -v >gdb-$$VER-testsuite.tar.Z; \
1040                 echo "==> Making gdb-$$VER-testsuite.tar.z"; \
1041                 tar cfh - gdb-$$VER/configure gdb-$$VER/config.guess \
1042                         gdb-$$VER/config.sub gdb-$$VER/move-if-change \
1043                         gdb-$$VER/gdb/testsuite | \
1044                         $(GZIP) -v -9 >gdb-$$VER-testsuite.tar.z)
1045
1046 # When you use `make setup-dirs' or `make taz' you should always redefine
1047 # this macro.
1048 SUPPORT_FILES = list-of-support-files-for-tool-in-question
1049 # Directories that might want `make diststuff' run.
1050 DISTSTUFFDIRS= ld gprof gdb
1051
1052 .PHONY: taz
1053
1054 taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex texinfo/gpl.texinfo
1055         ./configure sun4
1056         $(MAKE) clean
1057         ./configure -rm sun4
1058         chmod og=u `find etc $(DEVO_SUPPORT) $(SUPPORT_FILES) $(TOOL) -print`
1059         # Make links, and run "make diststuff" when needed.
1060         # The `echo' for setting `p' is to convert all whitespace to spaces.
1061         # Then the `case' further below should tell whether $$d is in
1062         # DISTSTUFFDIRS.
1063         rm -rf proto-toplev ; mkdir proto-toplev
1064         set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
1065         p=" `echo $(DISTSTUFFDIRS)` " ; \
1066         for d in $$dirs ; do \
1067           if [ -d $$d ]; then \
1068             case " $$p " in \
1069             *" $$d "*)  \
1070                 echo making diststuff in $$d ; \
1071                 (cd $$d ; $(MAKE) -f Makefile.in diststuff) || exit 1  ;; \
1072             esac ; \
1073             if [ -d $$d/proto-$$d.dir ]; then \
1074               ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
1075             else \
1076               ln -s ../$$d proto-toplev/$$d ; \
1077             fi ; \
1078           else ln -s ../$$d proto-toplev/$$d ; fi ; \
1079         done
1080         #
1081         mkdir proto-toplev/etc
1082         (cd proto-toplev/etc; for i in $(ETC_SUPPORT); do \
1083                 ln -s ../../etc/$$i . ; \
1084         done)
1085         #
1086         # Take out texinfo and glob from configurable dirs
1087         rm proto-toplev/configure.in
1088         sed -e '/^host_tools=/s/texinfo //' \
1089             -e '/^host_libs=/s/glob //' \
1090             <configure.in >proto-toplev/configure.in
1091         #
1092         # Take out texinfo from a few places; make simple BISON=bison line.
1093         rm proto-toplev/Makefile.in
1094         sed -e '/^all\.normal: /s/\all-texinfo //' \
1095             -e '/^      install-texinfo /d' \
1096             -e '/^BISON = /,/^$$/d' \
1097             -e '/^# BISON:/s/.*/BISON = bison -y/' \
1098         <Makefile.in >proto-toplev/Makefile.in
1099         #
1100         mkdir proto-toplev/texinfo
1101         ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
1102         ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/
1103         ln -s ../../texinfo/tex3patch   proto-toplev/texinfo/
1104         chmod og=u `find proto-toplev -print`
1105         (VER=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \
1106                 echo "==> Making $(TOOL)-$$VER.tar.z"; \
1107                 ln -s proto-toplev $(TOOL)-$$VER; \
1108                 tar cfh - $(TOOL)-$$VER \
1109                 | $(GZIP) -v -9 >$(TOOL)-$$VER.tar.z)
1110
1111 TEXINFO_SUPPORT= texinfo/texinfo.tex texinfo/gpl.texinfo
1112 DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT)
1113
1114 .PHONY: gas.tar.z
1115 GAS_SUPPORT_DIRS= bfd include libiberty opcodes
1116 gas.tar.z: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas
1117         $(MAKE) -f Makefile.in taz SUPPORT_FILES="$(GAS_SUPPORT_DIRS)" TOOL=gas
1118
1119 # The FSF "binutils" release includes gprof and ld.
1120 .PHONY: binutils.tar.z
1121 BINUTILS_SUPPORT_DIRS= bfd include libiberty opcodes ld gprof
1122 binutils.tar.z: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils
1123         $(MAKE) -f Makefile.in taz SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS)" TOOL=binutils
1124
1125 .PHONY: gas+binutils.tar.z
1126 GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof
1127 gas+binutils.tar.z: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas
1128         $(MAKE) -f Makefile.in taz SUPPORT_FILES="$(GASB_SUPPORT_DIRS)" TOOL=gas
1129
1130 .NOEXPORT:
1131 MAKEOVERRIDES=
1132
1133 # start-sanitize-chill
1134 ## This is ugly, but I don't want GNU make to put these variables in
1135 ## the environment.  Older makes will see this as a set of targets
1136 ## with no dependencies and no actions.
1137 unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
1138 # end-sanitize-chill
1139
1140 # end of Makefile.in