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