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