sanitize fr30 parts
[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# cygwin32 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 $(EXTRA_TARGET_HOST_ALL_MODULES)
591
592# This is a list of the check targets for all of the modules which are
593# compiled using $(FLAGS_TO_PASS).
594#
595# The list is in two parts. The first lists those tools which
596# are tested as part of the host's native tool-chain, and not
597# tested in a cross configuration.
598NATIVE_CHECK_MODULES = \
599 check-bison \
600 check-byacc \
601 check-flex
602
603CROSS_CHECK_MODULES = \
604 check-apache \
605 check-ash \
606 check-autoconf \
607 check-automake \
608 check-bash \
609 check-bfd \
610 check-binutils \
611 check-bzip2 \
612 check-cvssrc \
613 check-db \
614 check-dejagnu \
615 check-diff \
616 check-etc \
617 check-fileutils \
618 check-findutils \
619 check-find \
620 $(start-sanitize-cygnus) \
621 check-flexlm \
622 $(end-sanitize-cygnus) \
623 check-gas \
624 check-gawk \
625 check-gettext \
626 check-gnuserv \
627 check-gprof \
628 check-grep \
629 check-gzip \
630 check-hello \
631 $(start-sanitize-ide) \
632 check-ilu \
633 $(end-sanitize-ide) \
634 check-indent \
635 check-inet \
636 check-intl \
637 check-ispell \
638 check-itcl \
639 $(start-sanitize-ide) \
640 check-jstools \
641 $(end-sanitize-ide) \
642 check-ld \
643 check-libgui \
644 check-libiberty \
645 $(start-sanitize-ide) \
646 check-libide \
647 check-libidetcl \
648 $(end-sanitize-ide) \
649 check-libtool \
650 check-m4 \
651 check-make \
652 check-mmcheckoc \
653 check-opcodes \
654 check-patch \
655 check-perl \
656 check-prms \
657 check-rcs \
658 check-readline \
659 check-recode \
660 check-sed \
661 check-send-pr \
662 check-shellutils \
663 $(start-sanitize-cygnus) \
664 check-snavigator \
665 $(end-sanitize-cygnus) \
666 check-sim \
667 check-tar \
668 check-tcl \
669 check-texinfo \
670 check-textutils \
671 check-tgas \
672 check-time \
673 check-uudecode \
674 $(start-sanitize-ide) \
675 check-vmake \
676 $(end-sanitize-ide) \
677 check-wdiff \
678 $(EXTRA_TARGET_HOST_CHECK_MODULES)
679
680CHECK_MODULES=$(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
681
682# This is a list of the install targets for all of the modules which are
683# compiled using $(FLAGS_TO_PASS).
684# We put install-opcodes before install-binutils because the installed
685# binutils might be on PATH, and they might need the shared opcodes
686# library.
687# We put install-tcl before install-itcl because itcl wants to run a
688# program on installation which uses the Tcl libraries.
689INSTALL_MODULES = \
690 install-apache \
691 install-ash \
692 install-autoconf \
693 install-automake \
694 install-bash \
695 install-bfd \
696 install-bzip2 \
697 install-opcodes \
698 install-binutils \
699 install-bison \
700 install-byacc \
701 install-cvssrc \
702 install-db \
703 install-dejagnu \
704 install-diff \
705 install-dosutils \
706 install-etc \
707 install-fileutils \
708 install-findutils \
709 install-find \
710 install-flex \
711 $(start-sanitize-cygnus) \
712 install-flexlm \
713 $(end-sanitize-cygnus) \
714 install-gas \
715 install-gawk \
716 install-gettext \
717 install-gnuserv \
718 install-gprof \
719 install-grep \
720 install-grez \
721 install-gzip \
722 install-hello \
723 $(start-sanitize-ide) \
724 install-ilu \
725 $(end-sanitize-ide) \
726 install-indent \
727 install-inet \
728 install-intl \
729 install-ispell \
730 install-tcl \
731 install-tcl8.1 \
732 install-itcl \
733 $(start-sanitize-ide) \
734 install-jstools \
735 $(end-sanitize-ide) \
736 install-ld \
737 install-libgui \
738 install-libiberty \
739 $(start-sanitize-ide) \
740 install-libide \
741 install-libidetcl \
742 $(end-sanitize-ide) \
743 install-libtool \
744 install-m4 \
745 install-make \
746 install-mmalloc \
747 install-patch \
748 install-perl \
749 install-prms \
750 install-rcs \
751 install-readline \
752 install-recode \
753 install-sed \
754 install-send-pr \
755 install-shellutils \
756 install-sim \
757 $(start-sanitize-cygnus) \
758 install-snavigator \
759 $(end-sanitize-cygnus) \
760 install-tar \
761 install-texinfo \
762 install-textutils \
763 install-tgas \
764 install-time \
765 install-uudecode \
766 $(start-sanitize-ide) \
767 install-vmake \
768 $(end-sanitize-ide) \
769 install-wdiff \
770 $(EXTRA_TARGET_HOST_INSTALL_MODULES)
771
772# This is a list of the targets for all of the modules which are compiled
773# using $(X11_FLAGS_TO_PASS).
774ALL_X11_MODULES = \
775 all-emacs \
776 all-emacs19 \
777 all-gdb \
778 all-expect \
779 all-gash \
780 all-guile \
781 all-tclX \
782 all-tk \
783 all-tk8.1 \
784 all-tix
785
786# This is a list of the check targets for all of the modules which are
787# compiled using $(X11_FLAGS_TO_PASS).
788CHECK_X11_MODULES = \
789 check-emacs \
790 check-gdb \
791 check-guile \
792 check-expect \
793 check-gash \
794 check-tclX \
795 check-tk \
796 check-tix
797
798# This is a list of the install targets for all the modules which are
799# compiled using $(X11_FLAGS_TO_PASS).
800INSTALL_X11_MODULES = \
801 install-emacs \
802 install-emacs19 \
803 install-gdb \
804 install-guile \
805 install-expect \
806 install-gash \
807 install-tclX \
808 install-tk \
809 install-tk8.1 \
810 install-tix
811
812# This is a list of the targets for all of the modules which are compiled
813# using $(TARGET_FLAGS_TO_PASS).
814ALL_TARGET_MODULES = \
815 all-target-libio \
816 all-target-libstdc++ \
817 all-target-librx \
818 all-target-libg++ \
819 all-target-newlib \
820 all-target-winsup \
821 $(start-sanitize-dsp) \
822 all-target-libdsp \
823 $(end-sanitize-dsp) \
824 all-target-libgloss \
825 all-target-libiberty \
826 all-target-gperf \
827 all-target-examples \
828 all-target-libstub \
829 $(start-sanitize-java) \
830 all-target-libjava \
831 all-target-boehm-gc \
832 all-target-qthreads \
833 $(end-sanitize-java) \
834 all-target-cygmon
835
836# This is a list of the configure targets for all of the modules which
837# are compiled using the target tools.
838CONFIGURE_TARGET_MODULES = \
839 $(start-sanitize-dsp) \
840 configure-target-libdsp \
841 $(end-sanitize-dsp) \
842 configure-target-libio \
843 configure-target-libstdc++ \
844 configure-target-librx \
845 configure-target-libg++ \
846 configure-target-newlib \
847 configure-target-winsup \
848 configure-target-libgloss \
849 configure-target-libiberty \
850 configure-target-gperf \
851 configure-target-examples \
852 configure-target-libstub \
853 $(start-sanitize-java) \
854 configure-target-libjava \
855 configure-target-boehm-gc \
856 configure-target-qthreads \
857 $(end-sanitize-java) \
858 configure-target-cygmon
859
860# This is a list of the check targets for all of the modules which are
861# compiled using $(TARGET_FLAGS_TO_PASS).
862CHECK_TARGET_MODULES = \
863 $(start-sanitize-dsp) \
864 check-target-libdsp \
865 $(end-sanitize-dsp) \
866 check-target-libio \
867 check-target-libstdc++ \
868 check-target-libg++ \
869 check-target-newlib \
870 check-target-winsup \
871 check-target-libiberty \
872 $(start-sanitize-java) \
873 check-target-libjava \
874 check-target-boehm-gc \
875 check-target-qthreads \
876 $(end-sanitize-java) \
877 check-target-gperf
878
879# This is a list of the install targets for all of the modules which are
880# compiled using $(TARGET_FLAGS_TO_PASS).
881INSTALL_TARGET_MODULES = \
882 $(start-sanitize-dsp) \
883 install-target-libdsp \
884 $(end-sanitize-dsp) \
885 install-target-libio \
886 install-target-libstdc++ \
887 install-target-libg++ \
888 install-target-newlib \
889 install-target-winsup \
890 install-target-libgloss \
891 install-target-libiberty \
892 $(start-sanitize-java) \
893 install-target-libjava \
894 install-target-boehm-gc \
895 install-target-qthreads \
896 $(end-sanitize-java) \
897 install-target-gperf
898
899# This is a list of the targets for which we can do a clean-{target}.
900CLEAN_MODULES = \
901 clean-apache \
902 clean-ash \
903 clean-autoconf \
904 clean-automake \
905 clean-bash \
906 clean-bfd \
907 clean-binutils \
908 clean-bison \
909 clean-byacc \
910 clean-bzip2 \
911 $(start-sanitize-cygnus) \
912 clean-cgen \
913 $(end-sanitize-cygnus) \
914 clean-cvssrc \
915 clean-db \
916 clean-dejagnu \
917 clean-diff \
918 clean-dosutils \
919 clean-etc \
920 clean-fileutils \
921 clean-findutils \
922 clean-find \
923 clean-flex \
924 $(start-sanitize-cygnus) \
925 clean-flexlm \
926 $(end-sanitize-cygnus) \
927 clean-gas \
928 clean-gawk \
929 clean-gettext \
930 clean-gnuserv \
931 clean-gprof \
932 clean-grep \
933 clean-grez \
934 clean-gzip \
935 clean-hello \
936 $(start-sanitize-ide) \
937 clean-ilu \
938 $(end-sanitize-ide) \
939 clean-indent \
940 clean-inet \
941 clean-intl \
942 clean-ispell \
943 clean-itcl \
944 $(start-sanitize-ide) \
945 clean-jstools \
946 $(end-sanitize-ide) \
947 clean-ld \
948 clean-libgui \
949 clean-libiberty \
950 $(start-sanitize-ide) \
951 clean-libide \
952 clean-libidetcl \
953 $(end-sanitize-ide) \
954 clean-libtool \
955 clean-m4 \
956 clean-make \
957 clean-mmalloc \
958 clean-opcodes \
959 clean-patch \
960 clean-perl \
961 clean-prms \
962 clean-rcs \
963 clean-readline \
964 clean-release \
965 clean-recode \
966 clean-sed \
967 clean-send-pr \
968 clean-shellutils \
969 clean-sim \
970 $(start-sanitize-cygnus) \
971 clean-snavigator \
972 $(end-sanitize-cygnus) \
973 clean-tar \
974 clean-tcl \
975 clean-texinfo \
976 clean-textutils \
977 clean-tgas \
978 clean-time \
979 clean-uudecode \
980 $(start-sanitize-ide) \
981 clean-vmake \
982 $(end-sanitize-ide) \
983 clean-wdiff
984
985# All of the target modules that can be cleaned
986CLEAN_TARGET_MODULES = \
987 $(start-sanitize-dsp) \
988 clean-target-libdsp \
989 $(end-sanitize-dsp) \
990 clean-target-libio \
991 clean-target-libstdc++ \
992 clean-target-librx \
993 clean-target-libg++ \
994 clean-target-newlib \
995 clean-target-winsup \
996 clean-target-libgloss \
997 clean-target-libiberty \
998 clean-target-gperf \
999 clean-target-examples \
1000 clean-target-libstub \
1001 $(start-sanitize-java) \
1002 clean-target-libjava \
1003 clean-target-boehm-gc \
1004 clean-target-qthreads \
1005 $(end-sanitize-java) \
1006 clean-target-cygmon
1007
1008# All of the x11 modules that can be cleaned
1009CLEAN_X11_MODULES = \
1010 clean-emacs \
1011 clean-emacs19 \
1012 clean-gdb \
1013 clean-expect \
1014 clean-gash \
1015 clean-guile \
1016 clean-tclX \
1017 clean-tk \
1018 clean-tix
1019
1020# The target built for a native build.
1021.PHONY: all.normal
1022all.normal: \
1023 $(ALL_MODULES) \
1024 $(ALL_X11_MODULES) \
1025 $(ALL_TARGET_MODULES) \
1026 all-gcc
1027
1028# Do a target for all the subdirectories. A ``make do-X'' will do a
1029# ``make X'' in all subdirectories (because, in general, there is a
1030# dependency (below) of X upon do-X, a ``make X'' will also do this,
1031# but it may do additional work as well).
1032# This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
1033# because it is so large that it can easily overflow the command line
1034# length limit on some systems.
1035DO_X = \
1036 do-clean \
1037 do-distclean \
1038 do-dvi \
1039 do-info \
1040 do-install-info \
1041 do-installcheck \
1042 do-mostlyclean \
1043 do-maintainer-clean \
1044 do-TAGS
1045.PHONY: $(DO_X)
1046$(DO_X):
1047 @target=`echo $@ | sed -e 's/^do-//'`; \
1048 r=`pwd`; export r; \
1049 s=`cd $(srcdir); pwd`; export s; \
1050 $(SET_LIB_PATH) \
1051 for i in $(SUBDIRS) -dummy-; do \
1052 if [ -f ./$$i/Makefile ]; then \
1053 case $$i in \
1054 gcc) \
1055 for flag in $(EXTRA_GCC_FLAGS); do \
1056 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
1057 done; \
1058 ;; \
1059 *) \
1060 for flag in $(EXTRA_HOST_FLAGS); do \
1061 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
1062 done; \
1063 ;; \
1064 esac ; \
1065 export AR AS CC CXX LD NM RANLIB DLLTOOL WINDRES; \
1066 if (cd ./$$i; \
1067 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
1068 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
1069 "RANLIB=$${RANLIB}" \
1070 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
1071 $${target}); \
1072 then true; else exit 1; fi; \
1073 else true; fi; \
1074 done
1075 @target=`echo $@ | sed -e 's/^do-//'`; \
1076 r=`pwd`; export r; \
1077 s=`cd $(srcdir); pwd`; export s; \
1078 $(SET_LIB_PATH) \
1079 for i in $(TARGET_CONFIGDIRS) -dummy-; do \
1080 if [ -f $(TARGET_SUBDIR)/$$i/Makefile ]; then \
1081 for flag in $(EXTRA_TARGET_FLAGS); do \
1082 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
1083 done; \
1084 export AR AS CC CXX LD NM RANLIB DLLTOOL WINDRES; \
1085 if (cd $(TARGET_SUBDIR)/$$i; \
1086 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
1087 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
1088 "RANLIB=$${RANLIB}" \
1089 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
1090 $${target}); \
1091 then true; else exit 1; fi; \
1092 else true; fi; \
1093 done
1094
1095# Here are the targets which correspond to the do-X targets.
1096
1097.PHONY: info installcheck dvi install-info
1098.PHONY: clean distclean mostlyclean maintainer-clean realclean
1099.PHONY: local-clean local-distclean local-maintainer-clean
1100info: do-info
1101installcheck: do-installcheck
1102dvi: do-dvi
1103
1104# Make sure makeinfo is built before we do a `make info'.
1105do-info: all-texinfo
1106
1107install-info: do-install-info dir.info
1108 s=`cd $(srcdir); pwd`; export s; \
1109 if [ -f dir.info ] ; then \
1110 $(INSTALL_DATA) dir.info $(infodir)/dir.info ; \
1111 else true ; fi
1112
1113local-clean:
1114 -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E *.log
1115
1116local-distclean:
1117 -rm -f Makefile config.status config.cache mh-frag mt-frag
1118 -if [ "$(TARGET_SUBDIR)" != "." ]; then \
1119 rm -rf $(TARGET_SUBDIR); \
1120 else true; fi
1121
1122local-maintainer-clean:
1123 @echo "This command is intended for maintainers to use;"
1124 @echo "it deletes files that may require special tools to rebuild."
1125
1126clean: do-clean local-clean
1127mostlyclean: do-mostlyclean local-clean
1128distclean: do-distclean local-clean local-distclean
1129maintainer-clean: local-maintainer-clean do-maintainer-clean local-clean
1130maintainer-clean: local-distclean
1131realclean: maintainer-clean
1132
1133# This rule is used to clean specific modules.
1134.PHONY: $(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc
1135$(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc:
1136 @dir=`echo $@ | sed -e 's/clean-//'`; \
1137 if [ -f ./$${dir}/Makefile ] ; then \
1138 r=`pwd`; export r; \
1139 s=`cd $(srcdir); pwd`; export s; \
1140 $(SET_LIB_PATH) \
1141 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) clean); \
1142 else \
1143 true; \
1144 fi
1145
1146.PHONY: $(CLEAN_TARGET_MODULES)
1147$(CLEAN_TARGET_MODULES):
1148 @dir=`echo $@ | sed -e 's/clean-target-//'`; \
1149 rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
1150 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1151 r=`pwd`; export r; \
1152 s=`cd $(srcdir); pwd`; export s; \
1153 $(SET_LIB_PATH) \
1154 (cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) clean); \
1155 else \
1156 true; \
1157 fi
1158
1159clean-target: $(CLEAN_TARGET_MODULES)
1160
1161# Check target.
1162
1163.PHONY: check
1164check: $(CHECK_MODULES) \
1165 $(CHECK_TARGET_MODULES) \
1166 $(CHECK_X11_MODULES) \
1167 check-gcc
1168
1169# Automated reporting of test results.
1170
1171warning.log: build.log
1172 $(srcdir)/contrib/warn_summary build.log > $@
1173
1174mail-report.log:
1175 if test x'$(BOOT_CFLAGS)' != x''; then \
1176 BOOT_CFLAGS='$(BOOT_CFLAGS)'; export BOOT_CFLAGS; \
1177 fi; \
1178 $(srcdir)/contrib/test_summary -t >$@
1179 chmod +x $@
1180 echo If you really want to send e-mail, run ./$@ now
1181
1182mail-report-with-warnings.log: warning.log
1183 if test x'$(BOOT_CFLAGS)' != x''; then \
1184 BOOT_CFLAGS='$(BOOT_CFLAGS)'; export BOOT_CFLAGS; \
1185 fi; \
1186 $(srcdir)/contrib/test_summary -t -i warning.log >$@
1187 chmod +x $@
1188 echo If you really want to send e-mail, run ./$@ now
1189
1190# Installation targets.
1191
1192.PHONY: install install-cross uninstall source-vault binary-vault vault-install
1193install: $(INSTALL_TARGET)
1194install-cross: $(INSTALL_TARGET_CROSS)
1195
1196uninstall:
1197 @echo "the uninstall target is not supported in this tree"
1198
1199source-vault:
1200 $(MAKE) -f ./release/Build-A-Release \
1201 host=$(host_alias) source-vault
1202
1203binary-vault:
1204 $(MAKE) -f ./release/Build-A-Release \
1205 host=$(host_alias) target=$(target_alias)
1206
1207vault-install:
1208 @if [ -f ./release/vault-install ] ; then \
1209 ./release/vault-install $(host_alias) $(target_alias) ; \
1210 else \
1211 true ; \
1212 fi
1213
1214.PHONY: install.all
1215install.all: install-no-fixedincludes
1216 @if [ -f ./gcc/Makefile ] ; then \
1217 r=`pwd` ; export r ; \
1218 $(SET_LIB_PATH) \
1219 (cd ./gcc; \
1220 $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
1221 else \
1222 true ; \
1223 fi
1224
1225# inet-install is used because the I*Net wants DejaGNU installed but
1226# not built. Similarly, gzip is built but not installed.
1227inet-install:
1228 $(MAKE) INSTALL_MODULES="`echo $(INSTALL_MODULES) | sed -e 's/install-dejagnu//' -e 's/install-gzip//'`" install
1229
1230# install-no-fixedincludes is used because Cygnus can not distribute
1231# the fixed header files.
1232.PHONY: install-no-fixedincludes
1233install-no-fixedincludes: \
1234 installdirs \
1235 $(INSTALL_MODULES) \
1236 $(INSTALL_TARGET_MODULES) \
1237 $(INSTALL_X11_MODULES) \
1238 gcc-no-fixedincludes
1239
1240# Install the gcc headers files, but not the fixed include files,
1241# which Cygnus is not allowed to distribute. This rule is very
1242# dependent on the workings of the gcc Makefile.in.
1243.PHONY: gcc-no-fixedincludes
1244gcc-no-fixedincludes:
1245 @if [ -f ./gcc/Makefile ]; then \
1246 rm -rf gcc/tmp-include; \
1247 mv gcc/include gcc/tmp-include 2>/dev/null; \
1248 mkdir gcc/include; \
1249 cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \
1250 touch gcc/stmp-fixinc gcc/include/fixed; \
1251 rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \
1252 r=`pwd`; export r; \
1253 s=`cd $(srcdir); pwd` ; export s; \
1254 $(SET_LIB_PATH) \
1255 (cd ./gcc; \
1256 $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
1257 rm -rf gcc/include; \
1258 mv gcc/tmp-include gcc/include 2>/dev/null; \
1259 else true; fi
1260
1261# start-sanitize-ide
1262# Install Foundry. Avoid installing a bunch of stuff we don't need.
1263install-foundry:
1264 mods="$(INSTALL_MODULES)"; \
1265 x11_mods="$(INSTALL_X11_MODULES)"; \
1266 for d in install-tcl install-tk install-itcl install-tix install-ilu; do \
1267 mods="`echo $${mods} | sed -e "s/$$d//"`"; \
1268 x11_mods="`echo $${x11_mods} | sed -e "s/$$d//"`"; \
1269 done; \
1270 $(MAKE) INSTALL_MODULES="$${mods}" INSTALL_X11_MODULES="$${x11_mods}" install
1271 for d in tcl tk itcl tix ilu; do \
1272 if [ -f $$d/Makefile ]; then \
1273 r=`pwd`; export r; \
1274 s=`cd $(srcdir); pwd`; export s; \
1275 $(SET_LIB_PATH) \
1276 (cd $$d; $(MAKE) $(FLAGS_TO_PASS) install-minimal); \
1277 else \
1278 true; \
1279 fi; \
1280 date '+%D %r' > builddate \
1281 $(INSTALL_DATA) builddate $(datadir)/builddate ; \
1282 done
1283# end-sanitize-ide
1284
1285# This rule is used to build the modules which use FLAGS_TO_PASS. To
1286# build a target all-X means to cd to X and make all.
1287#
1288# all-gui, and all-libproc are handled specially because
1289# they are still experimental, and if they fail to build, that
1290# shouldn't stop "make all".
1291.PHONY: $(ALL_MODULES) all-gui all-libproc
1292$(ALL_MODULES) all-gui all-libproc:
1293 @dir=`echo $@ | sed -e 's/all-//'`; \
1294 if [ -f ./$${dir}/Makefile ] ; then \
1295 r=`pwd`; export r; \
1296 s=`cd $(srcdir); pwd`; export s; \
1297 $(SET_LIB_PATH) \
1298 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
1299 else \
1300 true; \
1301 fi
1302
1303# These rules are used to check the modules which use FLAGS_TO_PASS.
1304# To build a target check-X means to cd to X and make check. Some
1305# modules are only tested in a native toolchain.
1306
1307.PHONY: $(CHECK_MODULES) $(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
1308$(NATIVE_CHECK_MODULES):
1309 @if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
1310 dir=`echo $@ | sed -e 's/check-//'`; \
1311 if [ -f ./$${dir}/Makefile ] ; then \
1312 r=`pwd`; export r; \
1313 s=`cd $(srcdir); pwd`; export s; \
1314 $(SET_LIB_PATH) \
1315 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
1316 else \
1317 true; \
1318 fi; \
1319 fi
1320
1321$(CROSS_CHECK_MODULES):
1322 @dir=`echo $@ | sed -e 's/check-//'`; \
1323 if [ -f ./$${dir}/Makefile ] ; then \
1324 r=`pwd`; export r; \
1325 s=`cd $(srcdir); pwd`; export s; \
1326 $(SET_LIB_PATH) \
1327 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
1328 else \
1329 true; \
1330 fi
1331
1332# This rule is used to install the modules which use FLAGS_TO_PASS.
1333# To build a target install-X means to cd to X and make install.
1334.PHONY: $(INSTALL_MODULES)
1335$(INSTALL_MODULES): installdirs
1336 @dir=`echo $@ | sed -e 's/install-//'`; \
1337 if [ -f ./$${dir}/Makefile ] ; then \
1338 r=`pwd`; export r; \
1339 s=`cd $(srcdir); pwd`; export s; \
1340 $(SET_LIB_PATH) \
1341 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
1342 else \
1343 true; \
1344 fi
1345
1346# This rule is used to configure the modules which are built with the
1347# target tools.
1348.PHONY: $(CONFIGURE_TARGET_MODULES)
1349$(CONFIGURE_TARGET_MODULES):
1350 @dir=`echo $@ | sed -e 's/configure-target-//'`; \
1351 if [ -d $(TARGET_SUBDIR)/$${dir} ]; then \
1352 r=`pwd`; export r; \
1353 $(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/$${dir}/tmpmulti.out 2> /dev/null; \
1354 if [ -s $(TARGET_SUBDIR)/$${dir}/tmpmulti.out ]; then \
1355 if [ -f $(TARGET_SUBDIR)/$${dir}/multilib.out ]; then \
1356 if cmp $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out > /dev/null; then \
1357 rm -f $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
1358 else \
1359 echo "Multilibs changed for $${dir}, reconfiguring"; \
1360 rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/Makefile; \
1361 mv $(TARGET_SUBDIR)/$${dir}/tmpmulti.out $(TARGET_SUBDIR)/$${dir}/multilib.out; \
1362 fi; \
1363 else \
1364 mv $(TARGET_SUBDIR)/$${dir}/tmpmulti.out $(TARGET_SUBDIR)/$${dir}/multilib.out; \
1365 fi; \
1366 fi; \
1367 fi; exit 0 # break command into two pieces
1368 @dir=`echo $@ | sed -e 's/configure-target-//'`; \
1369 if [ ! -d $(TARGET_SUBDIR) ]; then \
1370 true; \
1371 elif [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1372 true; \
1373 elif echo " $(TARGET_CONFIGDIRS) " | grep " $${dir} " >/dev/null 2>&1; then \
1374 if [ -d $(srcdir)/$${dir} ]; then \
1375 [ -d $(TARGET_SUBDIR)/$${dir} ] || mkdir $(TARGET_SUBDIR)/$${dir};\
1376 r=`pwd`; export r; \
1377 s=`cd $(srcdir); pwd`; export s; \
1378 $(SET_LIB_PATH) \
1379 AR="$(AR_FOR_TARGET)"; export AR; \
1380 AS="$(AS_FOR_TARGET)"; export AS; \
1381 CC="$(CC_FOR_TARGET)"; export CC; \
1382 CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
1383 CXX="$(CXX_FOR_TARGET)"; export CXX; \
1384 CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
1385 DLLTOOL="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL; \
1386 LD="$(LD_FOR_TARGET)"; export LD; \
1387 LDFLAGS="$(LDFLAGS_FOR_TARGET)"; export LDFLAGS; \
1388 NM="$(NM_FOR_TARGET)"; export NM; \
1389 RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \
1390 WINDRES="$(WINDRES_FOR_TARGET)"; export WINDRES; \
1391 echo Configuring in $(TARGET_SUBDIR)/$${dir}; \
1392 cd $(TARGET_SUBDIR)/$${dir}; \
1393 case $(srcdir) in \
1394 /*) \
1395 topdir=$(srcdir) ;; \
1396 *) \
1397 case "$(TARGET_SUBDIR)" in \
1398 .) topdir="../$(srcdir)" ;; \
1399 *) topdir="../../$(srcdir)" ;; \
1400 esac ;; \
1401 esac; \
1402 if [ "$(srcdir)" = "." ] ; then \
1403 if [ "$(TARGET_SUBDIR)" != "." ] ; then \
1404 if $(SHELL) $$s/symlink-tree $${topdir}/$${dir} "no-such-file" ; then \
1405 if [ -f Makefile ]; then \
1406 if $(MAKE) distclean; then \
1407 true; \
1408 else \
1409 exit 1; \
1410 fi; \
1411 else \
1412 true; \
1413 fi; \
1414 else \
1415 exit 1; \
1416 fi; \
1417 else \
1418 true; \
1419 fi; \
1420 srcdiroption="--srcdir=."; \
1421 libsrcdir="."; \
1422 else \
1423 srcdiroption="--srcdir=$${topdir}/$${dir}"; \
1424 libsrcdir="$$s/$${dir}"; \
1425 fi; \
1426 if [ -f $${libsrcdir}/configure ] ; then \
1427 rm -f no-such-file; \
1428 CONFIG_SITE=no-such-file $(SHELL) $${libsrcdir}/configure \
1429 $(CONFIG_ARGUMENTS) $${srcdiroption} \
1430 --with-target-subdir="$(TARGET_SUBDIR)"; \
1431 else \
1432 rm -f no-such-file; \
1433 CONFIG_SITE=no-such-file $(SHELL) $$s/configure \
1434 $(CONFIG_ARGUMENTS) $${srcdiroption} \
1435 --with-target-subdir="$(TARGET_SUBDIR)"; \
1436 fi; \
1437 else \
1438 true; \
1439 fi; \
1440 else \
1441 true; \
1442 fi
1443
1444# This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
1445# To build a target all-X means to cd to X and make all.
1446.PHONY: $(ALL_TARGET_MODULES)
1447$(ALL_TARGET_MODULES):
1448 @dir=`echo $@ | sed -e 's/all-target-//'`; \
1449 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1450 r=`pwd`; export r; \
1451 s=`cd $(srcdir); pwd`; export s; \
1452 $(SET_LIB_PATH) \
1453 (cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) all); \
1454 else \
1455 true; \
1456 fi
1457
1458# This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
1459# To build a target install-X means to cd to X and make install.
1460.PHONY: $(CHECK_TARGET_MODULES)
1461$(CHECK_TARGET_MODULES):
1462 @dir=`echo $@ | sed -e 's/check-target-//'`; \
1463 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1464 r=`pwd`; export r; \
1465 s=`cd $(srcdir); pwd`; export s; \
1466 $(SET_LIB_PATH) \
1467 (cd $(TARGET_SUBDIR)/$${dir};$(MAKE) $(TARGET_FLAGS_TO_PASS) check);\
1468 else \
1469 true; \
1470 fi
1471
1472# This rule is used to install the modules which use
1473# TARGET_FLAGS_TO_PASS. To build a target install-X means to cd to X
1474# and make install.
1475.PHONY: $(INSTALL_TARGET_MODULES)
1476$(INSTALL_TARGET_MODULES): installdirs
1477 @dir=`echo $@ | sed -e 's/install-target-//'`; \
1478 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1479 r=`pwd`; export r; \
1480 s=`cd $(srcdir); pwd`; export s; \
1481 $(SET_LIB_PATH) \
1482 (cd $(TARGET_SUBDIR)/$${dir}; \
1483 $(MAKE) $(TARGET_FLAGS_TO_PASS) install); \
1484 else \
1485 true; \
1486 fi
1487
1488# This rule is used to build the modules which use X11_FLAGS_TO_PASS.
1489# To build a target all-X means to cd to X and make all.
1490.PHONY: $(ALL_X11_MODULES)
1491$(ALL_X11_MODULES):
1492 @dir=`echo $@ | sed -e 's/all-//'`; \
1493 if [ -f ./$${dir}/Makefile ] ; then \
1494 r=`pwd`; export r; \
1495 s=`cd $(srcdir); pwd`; export s; \
1496 $(SET_LIB_PATH) \
1497 (cd $${dir}; \
1498 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \
1499 else \
1500 true; \
1501 fi
1502
1503# This rule is used to check the modules which use X11_FLAGS_TO_PASS.
1504# To build a target check-X means to cd to X and make all.
1505.PHONY: $(CHECK_X11_MODULES)
1506$(CHECK_X11_MODULES):
1507 @dir=`echo $@ | sed -e 's/check-//'`; \
1508 if [ -f ./$${dir}/Makefile ] ; then \
1509 r=`pwd`; export r; \
1510 s=`cd $(srcdir); pwd`; export s; \
1511 $(SET_LIB_PATH) \
1512 (cd $${dir}; \
1513 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \
1514 else \
1515 true; \
1516 fi
1517
1518# This rule is used to install the modules which use X11_FLAGS_TO_PASS.
1519# To build a target install-X means to cd to X and make install.
1520.PHONY: $(INSTALL_X11_MODULES)
1521$(INSTALL_X11_MODULES): installdirs
1522 @dir=`echo $@ | sed -e 's/install-//'`; \
1523 if [ -f ./$${dir}/Makefile ] ; then \
1524 r=`pwd`; export r; \
1525 s=`cd $(srcdir); pwd`; export s; \
1526 $(SET_LIB_PATH) \
1527 (cd $${dir}; \
1528 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \
1529 else \
1530 true; \
1531 fi
1532
1533# gcc is the only module which uses GCC_FLAGS_TO_PASS.
1534.PHONY: all-gcc
1535all-gcc:
1536 @if [ -f ./gcc/Makefile ] ; then \
1537 r=`pwd`; export r; \
1538 s=`cd $(srcdir); pwd`; export s; \
1539 $(SET_LIB_PATH) \
1540 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \
1541 else \
1542 true; \
1543 fi
1544
1545# Building GCC uses some tools for rebuilding "source" files
1546# like texinfo, bison/byacc, etc. So we must depend on those.
1547#
1548# While building GCC, it may be necessary to run various target
1549# programs like the assembler, linker, etc. So we depend on
1550# those too.
1551#
1552# In theory, on an SMP all those dependencies can be resolved
1553# in parallel.
1554#
1555.PHONY: bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean
1556bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
1557 @r=`pwd`; export r; \
1558 s=`cd $(srcdir); pwd`; export s; \
1559 $(SET_LIB_PATH) \
1560 echo "Bootstrapping the compiler"; \
1561 cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) $@
1562 @r=`pwd`; export r; \
1563 s=`cd $(srcdir); pwd`; export s; \
1564 case "$@" in \
1565 *bootstrap4-lean ) \
1566 msg="Comparing stage3 and stage4 of the compiler"; \
1567 compare=compare3-lean ;; \
1568 *bootstrap4 ) msg="Comparing stage3 and stage4 of the compiler"; \
1569 compare=compare3 ;; \
1570 *-lean ) msg="Comparing stage2 and stage3 of the compiler"; \
1571 compare=compare-lean ;; \
1572 * ) msg="Comparing stage2 and stage3 of the compiler"; \
1573 compare=compare ;; \
1574 esac; \
1575 $(SET_LIB_PATH) \
1576 echo "$$msg"; \
1577 cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) $$compare
1578 @r=`pwd`; export r; \
1579 s=`cd $(srcdir); pwd` ; export s; \
1580 $(SET_LIB_PATH) \
1581 echo "Building runtime libraries"; \
1582 $(MAKE) $(BASE_FLAGS_TO_PASS) all
1583
1584.PHONY: cross
1585cross: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
1586 @r=`pwd`; export r; \
1587 s=`cd $(srcdir); pwd`; export s; \
1588 $(SET_LIB_PATH) \
1589 echo "Building the C and C++ compiler"; \
1590 cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++"
1591 @r=`pwd`; export r; \
1592 s=`cd $(srcdir); pwd` ; export s; \
1593 $(SET_LIB_PATH) \
1594 echo "Building runtime libraries"; \
1595 $(MAKE) $(BASE_FLAGS_TO_PASS) all LANGUAGES="c c++"
1596
1597.PHONY: check-gcc
1598check-gcc:
1599 @if [ -f ./gcc/Makefile ] ; then \
1600 r=`pwd`; export r; \
1601 s=`cd $(srcdir); pwd`; export s; \
1602 $(SET_LIB_PATH) \
1603 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \
1604 else \
1605 true; \
1606 fi
1607
1608.PHONY: install-gcc
1609install-gcc:
1610 @if [ -f ./gcc/Makefile ] ; then \
1611 r=`pwd`; export r; \
1612 s=`cd $(srcdir); pwd`; export s; \
1613 $(SET_LIB_PATH) \
1614 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
1615 else \
1616 true; \
1617 fi
1618
1619.PHONY: install-gcc-cross
1620install-gcc-cross:
1621 @if [ -f ./gcc/Makefile ] ; then \
1622 r=`pwd`; export r; \
1623 s=`cd $(srcdir); pwd`; export s; \
1624 $(SET_LIB_PATH) \
1625 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++" install); \
1626 else \
1627 true; \
1628 fi
1629# EXPERIMENTAL STUFF
1630# This rule is used to install the modules which use FLAGS_TO_PASS.
1631# To build a target install-X means to cd to X and make install.
1632.PHONY: install-dosrel
1633install-dosrel: installdirs info
1634 @dir=`echo $@ | sed -e 's/install-//'`; \
1635 if [ -f ./$${dir}/Makefile ] ; then \
1636 r=`pwd`; export r; \
1637 s=`cd $(srcdir); pwd`; export s; \
1638 $(SET_LIB_PATH) \
1639 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
1640 else \
1641 true; \
1642 fi
1643
1644install-dosrel-fake:
1645
1646
1647# This is a list of inter-dependencies among modules.
1648all-apache:
1649all-ash:
1650all-autoconf: all-m4 all-texinfo
1651all-automake: all-m4 all-texinfo
1652all-bash:
1653all-bfd: all-libiberty all-intl
1654all-binutils: all-libiberty all-opcodes all-bfd all-flex all-bison all-byacc all-intl
1655all-bison: all-texinfo
1656# start-sanitize-java
1657all-target-boehm-gc: configure-target-boehm-gc
1658# end-sanitize-java
1659all-byacc:
1660all-bzip2:
1661# start-sanitize-cygnus
1662all-cgen: all-libiberty
1663# These two have dependencies on cgen, and while this section is alphabetically
1664# sorted, I wish to keep these together until things settle.
1665all-opcodes: all-cgen
1666all-sim: all-cgen
1667# end-sanitize-cygnus
1668all-cvssrc:
1669configure-target-cygmon: $(ALL_GCC)
1670all-target-cygmon: configure-target-cygmon all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio all-target-libstub
1671all-db:
1672all-dejagnu: all-tcl all-expect all-tk
1673all-diff: all-libiberty
1674all-emacs:
1675all-emacs19: all-bison all-byacc
1676all-etc:
1677configure-target-examples: $(ALL_GCC)
1678all-target-examples: configure-target-examples
1679all-expect: all-tcl all-tk
1680all-fileutils: all-libiberty
1681all-findutils:
1682all-find:
1683all-flex: all-libiberty all-bison all-byacc
1684# start-sanitize-cygnus
1685all-flexlm:
1686# end-sanitize-cygnus
1687all-gas: all-libiberty all-opcodes all-bfd all-intl
1688all-gash: all-tcl
1689all-gawk:
1690ALL_GCC = all-gcc
1691all-gcc: all-bison all-byacc all-binutils all-gas all-ld
1692all-bootstrap: all-libiberty all-bison all-byacc all-binutils all-gas all-ld
1693GDB_TK = all-tk all-tcl all-itcl all-tix all-libgui
1694# start-sanitize-ide
1695GDB_TK = all-tk all-tcl all-itcl all-tix all-libgui all-libide all-libidetcl
1696# end-sanitize-ide
1697all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-bison all-byacc all-sim $(gdbnlmrequirements) $(GDB_TK)
1698all-gettext:
1699all-gnuserv:
1700configure-target-gperf: $(ALL_GCC)
1701all-target-gperf: configure-target-gperf all-target-libiberty all-target-libstdc++
1702all-gprof: all-libiberty all-bfd all-opcodes all-intl
1703all-grez: all-libiberty all-bfd all-opcodes
1704all-gui: all-gdb all-libproc all-target-librx
1705all-guile:
1706all-gzip: all-libiberty
1707all-hello: all-libiberty
1708# start-sanitize-ide
1709all-ilu:
1710# end-sanitize-ide
1711all-indent:
1712all-inet: all-tcl all-send-pr all-perl
1713all-intl:
1714all-ispell: all-emacs19
1715all-itcl: all-tcl all-tk all-tcl8.1 all-tk8.1
1716# start-sanitize-ide
1717all-jstools: all-tcl all-tk all-tix all-libgui all-libide all-libidetcl
1718# end-sanitize-ide
1719all-ld: all-libiberty all-bfd all-opcodes all-bison all-byacc all-flex all-intl
1720# start-sanitize-dsp
1721all-target-libdsp: configure-target-libdsp configure-target-newlib
1722configure-target-libdsp: $(ALL_GCC)
1723# end-sanitize-dsp
1724configure-target-libg++: $(ALL_GCC) configure-target-librx
1725all-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++
1726configure-target-libgloss: $(ALL_GCC)
1727all-target-libgloss: configure-target-libgloss configure-target-newlib
1728configure-target-libio: $(ALL_GCC)
1729all-target-libio: configure-target-libio all-gas all-ld all-gcc all-target-libiberty all-target-newlib
1730check-target-libio: all-target-libstdc++
1731all-libgui: all-tcl all-tk all-tcl8.1 all-tk8.1 all-itcl
1732all-libiberty:
1733# start-sanitize-ide
1734all-libide: all-ilu
1735all-libidetcl: all-tcl all-tk all-itcl all-ilu all-libgui all-libide
1736# end-sanitize-ide
1737# start-sanitize-java
1738configure-target-libjava: $(ALL_GCC) configure-target-boehm-gc configure-target-qthreads
1739all-target-libjava: configure-target-libjava all-gcc all-target-newlib all-target-boehm-gc all-target-qthreads
1740# end-sanitize-java
1741configure-target-librx: $(ALL_GCC) configure-target-newlib
1742all-target-librx: configure-target-librx
1743configure-target-libstdc++: $(ALL_GCC)
1744all-target-libstdc++: configure-target-libstdc++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio
1745configure-target-libstub: $(ALL_GCC)
1746all-target-libstub: configure-target-libstub
1747all-libtool:
1748all-m4: all-libiberty
1749all-make: all-libiberty
1750all-mmalloc:
1751configure-target-newlib: $(ALL_GCC)
1752all-target-newlib: configure-target-newlib all-binutils all-gas all-gcc
1753all-opcodes: all-bfd all-libiberty
1754all-patch: all-libiberty
1755all-perl:
1756all-prms: all-libiberty
1757# start-sanitize-java
1758all-target-qthreads: configure-target-qthreads
1759# end-sanitize-java
1760all-rcs:
1761all-readline:
1762all-recode: all-libiberty
1763all-sed: all-libiberty
1764all-send-pr: all-prms
1765all-shellutils:
1766all-sim: all-libiberty all-bfd all-opcodes all-readline
1767# start-sanitize-cygnus
1768all-snavigator: all-tcl8.1 all-tk8.1 all-tix all-itcl all-db all-grep all-flexlm all-libgui
1769# end-sanitize-cygnus
1770all-tar: all-libiberty
1771all-tcl:
1772all-tcl8.1:
1773all-tclX: all-tcl all-tk
1774all-tk: all-tcl
1775all-tk8.1: all-tcl8.1
1776all-texinfo: all-libiberty
1777all-textutils:
1778all-tgas: all-libiberty all-bfd all-opcodes
1779all-time:
1780all-tix: all-tcl all-tk all-tcl8.1 all-tk8.1
1781# start-sanitize-ide
1782all-vmake: all-tcl all-tk all-itcl all-tix all-libgui all-libide all-libidetcl
1783# end-sanitize-ide
1784all-wdiff:
1785all-target-winsup: all-target-newlib all-target-libiberty all-target-libio configure-target-winsup
1786configure-target-winsup: configure-target-newlib
1787all-uudecode: all-libiberty
1788configure-target-libiberty: $(ALL_GCC)
1789all-target-libiberty: configure-target-libiberty all-gcc all-ld all-target-newlib
1790all-target: $(ALL_TARGET_MODULES)
1791install-target: $(INSTALL_TARGET_MODULES)
1792# start-sanitize-gdbtk
1793install-gdb: install-tcl install-tk install-itcl install-tix install-libgui
1794#end-sanitize-gdbtk
1795### other supporting targets
1796
1797MAKEDIRS= \
1798 $(prefix) \
1799 $(exec_prefix)
1800.PHONY: installdirs
1801installdirs: mkinstalldirs
1802 $(SHELL) $(srcdir)/mkinstalldirs $(MAKEDIRS)
1803
1804dir.info: do-install-info
1805 if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \
1806 $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \
1807 mv -f dir.info.new dir.info ; \
1808 else true ; \
1809 fi
1810
1811dist:
1812 @echo "Building a full distribution of this tree isn't done"
1813 @echo "via 'make dist'. Check out the etc/ subdirectory"
1814
1815etags tags: TAGS
1816
1817# Right now this just builds TAGS in each subdirectory. emacs19 has the
1818# ability to use several tags files at once, so there is probably no need
1819# to combine them into one big TAGS file (like CVS 1.3 does). We could
1820# (if we felt like it) have this Makefile write a piece of elisp which
1821# the user could load to tell emacs19 where all the TAGS files we just
1822# built are.
1823TAGS: do-TAGS
1824
1825# with the gnu make, this is done automatically.
1826
1827Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag) $(gcc_version_trigger)
1828 $(SHELL) ./config.status
1829
1830#
1831# Support for building net releases
1832
1833# Files in devo used in any net release.
1834# ChangeLog omitted because it may refer to files which are not in this
1835# distribution (perhaps it would be better to include it anyway).
1836DEVO_SUPPORT= README Makefile.in configure configure.in \
1837 config.guess config.if config.sub config move-if-change \
1838 mpw-README mpw-build.in mpw-config.in mpw-configure mpw-install \
1839 COPYING COPYING.LIB install-sh config-ml.in symlink-tree \
1840 mkinstalldirs ltconfig ltmain.sh missing ylwrap
1841
1842# Files in devo/etc used in any net release.
1843# ChangeLog omitted because it may refer to files which are not in this
1844# distribution (perhaps it would be better to include it anyway).
1845ETC_SUPPORT= Makefile.in configure configure.in standards.texi \
1846 make-stds.texi standards.info*
1847
1848# When you use `make setup-dirs' or `make taz' you should always redefine
1849# this macro.
1850SUPPORT_FILES = list-of-support-files-for-tool-in-question
1851
1852.PHONY: taz
1853
1854taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \
1855 texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1856 # Take out texinfo from a few places.
1857 sed -e '/^all\.normal: /s/\all-texinfo //' \
1858 -e '/^ install-texinfo /d' \
1859 <Makefile.in >tmp
1860 mv -f tmp Makefile.in
1861 #
1862 $(start-sanitize-Sanitize)
1863 @if [ -f .Sanitize ] ; then echo "RUN Sanitize FIRST!" ; false ; fi ;
1864 $(end-sanitize-Sanitize)
1865 ./configure sun4
1866 [ -z "$(CONFIGURE_TARGET_MODULES)" ] \
1867 || $(MAKE) $(CONFIGURE_TARGET_MODULES) ALL_GCC="" \
1868 CC_FOR_TARGET="$(CC)" CXX_FOR_TARGET="$(CXX)"
1869 # Make links, and run "make diststuff" or "make info" when needed.
1870 rm -rf proto-toplev ; mkdir proto-toplev
1871 set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
1872 for d in $$dirs ; do \
1873 if [ -d $$d ]; then \
1874 if [ ! -f $$d/Makefile ] ; then true ; \
1875 elif grep '^diststuff:' $$d/Makefile >/dev/null ; then \
1876 (cd $$d ; $(MAKE) diststuff ) || exit 1 ; \
1877 elif grep '^info:' $$d/Makefile >/dev/null ; then \
1878 (cd $$d ; $(MAKE) info ) || exit 1 ; \
1879 fi ; \
1880 if [ -d $$d/proto-$$d.dir ]; then \
1881 ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
1882 else \
1883 ln -s ../$$d proto-toplev/$$d ; \
1884 fi ; \
1885 else ln -s ../$$d proto-toplev/$$d ; fi ; \
1886 done
1887 cd etc ; $(MAKE) info
1888 $(MAKE) distclean
1889 #
1890 mkdir proto-toplev/etc
1891 (cd proto-toplev/etc; \
1892 for i in $(ETC_SUPPORT); do \
1893 ln -s ../../etc/$$i . ; \
1894 done)
1895 #
1896 # Take out texinfo from configurable dirs
1897 rm proto-toplev/configure.in
1898 sed -e '/^host_tools=/s/texinfo //' \
1899 <configure.in >proto-toplev/configure.in
1900 #
1901 mkdir proto-toplev/texinfo
1902 ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
1903 ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/
1904 ln -s ../../texinfo/lgpl.texinfo proto-toplev/texinfo/
1905 if test -r texinfo/util/tex3patch ; then \
1906 mkdir proto-toplev/texinfo/util && \
1907 ln -s ../../../texinfo/util/tex3patch proto-toplev/texinfo/util ; \
1908 else true; fi
1909 chmod -R og=u . || chmod og=u `find . -print`
1910 if grep AM_INIT_AUTOMAKE $(TOOL)/configure.in >/dev/null 2>&1; then \
1911 ver=`sed < $(TOOL)/configure.in -n 's/AM_INIT_AUTOMAKE[^,]*, *\([^)]*\))/\1/p'`; \
1912 else \
1913 ver=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \
1914 fi; \
1915 $(MAKE) -f Makefile.in do-tar-gz TOOL=$(TOOL) VER=$$ver
1916
1917do-tar-gz:
1918 echo "==> Making $(TOOL)-$(VER).tar.gz"
1919 -rm -f $(TOOL)-$(VER)
1920 ln -s proto-toplev $(TOOL)-$(VER)
1921 tar cfh $(TOOL)-$(VER).tar $(TOOL)-$(VER)
1922 $(GZIPPROG) -v -9 $(TOOL)-$(VER).tar
1923
1924TEXINFO_SUPPORT= texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1925DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT)
1926
1927.PHONY: gas.tar.gz
1928GAS_SUPPORT_DIRS= bfd include libiberty opcodes intl setup.com makefile.vms
1929gas.tar.gz: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas
1930 $(MAKE) -f Makefile.in taz TOOL=gas \
1931 SUPPORT_FILES="$(GAS_SUPPORT_DIRS)"
1932
1933# The FSF "binutils" release includes gprof and ld.
1934.PHONY: binutils.tar.gz
1935BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof intl setup.com makefile.vms
1936binutils.tar.gz: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils
1937 $(MAKE) -f Makefile.in taz TOOL=binutils \
1938 SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS) makeall.bat configure.bat"
1939
1940.PHONY: gas+binutils.tar.gz
1941GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof
1942gas+binutils.tar.gz: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas
1943 $(MAKE) -f Makefile.in taz TOOL=gas \
1944 SUPPORT_FILES="$(GASB_SUPPORT_DIRS) makeall.bat configure.bat"
1945
1946.PHONY: libg++.tar.gz
1947LIBGXX_SUPPORT_DIRS=include libstdc++ libio librx libiberty
1948libg++.tar.gz: $(DIST_SUPPORT) libg++
1949 $(MAKE) -f Makefile.in taz TOOL=libg++ \
1950 SUPPORT_FILES="$(LIBGXX_SUPPORT_DIRS)"
1951
1952GNATS_SUPPORT_DIRS=include libiberty send-pr
1953gnats.tar.gz: $(DIST_SUPPORT) $(GNATS_SUPPORT_DIRS) gnats
1954 $(MAKE) -f Makefile.in taz TOOL=gnats \
1955 SUPPORT_FILES="$(GNATS_SUPPORT_DIRS)"
1956
1957.PHONY: gdb.tar.gz
1958GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline sim utils intl
1959GDBTK_SUPPORT_DIRS= `if [ -d tcl -a -d tk ] ; then echo tcl tk ; fi`
1960gdb.tar.gz: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb
1961 $(MAKE) -f Makefile.in taz TOOL=gdb \
1962 SUPPORT_FILES="$(GDB_SUPPORT_DIRS) $(GDBTK_SUPPORT_DIRS)"
1963
1964.PHONY: newlib.tar.gz
1965NEWLIB_SUPPORT_DIRS=libgloss
1966# taz configures for the sun4 target which won't configure newlib.
1967# We need newlib configured so that the .info files are made.
1968# Unfortunately, it is not enough to just configure newlib separately:
1969# taz will build the .info files but since SUBDIRS won't contain newlib,
1970# distclean won't be run (leaving Makefile, config.status, and the tmp files
1971# used in building the .info files, eg: *.def, *.ref).
1972# The problem isn't solvable however without a lot of extra work because
1973# target libraries are built in subdir $(target_alias) which gets nuked during
1974# the make distclean. For now punt on the issue of shipping newlib info files
1975# with newlib net releases and wait for a day when some native target (sun4?)
1976# supports newlib (if only minimally).
1977newlib.tar.gz: $(DIST_SUPPORT) $(NEWLIB_SUPPORT_DIRS) newlib
1978 $(MAKE) -f Makefile.in taz TOOL=newlib \
1979 SUPPORT_FILES="$(NEWLIB_SUPPORT_DIRS)" \
1980 DEVO_SUPPORT="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib
1981
1982.NOEXPORT:
1983MAKEOVERRIDES=
1984
1985# end of Makefile.in
This page took 0.029687 seconds and 4 git commands to generate.