]> git.ipfire.org Git - thirdparty/gcc.git/blame_incremental - gcc/Makefile.in
* c-cppbuiltin.c (cb_register_builtins): Define LP64 builtins for
[thirdparty/gcc.git] / gcc / Makefile.in
... / ...
CommitLineData
1# Makefile for GNU C compiler.
2# Copyright (C) 1987, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
3# 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4
5#This file is part of GCC.
6
7#GCC is free software; you can redistribute it and/or modify
8#it under the terms of the GNU General Public License as published by
9#the Free Software Foundation; either version 2, or (at your option)
10#any later version.
11
12#GCC is distributed in the hope that it will be useful,
13#but WITHOUT ANY WARRANTY; without even the implied warranty of
14#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15#GNU General Public License for more details.
16
17#You should have received a copy of the GNU General Public License
18#along with GCC; see the file COPYING. If not, write to
19#the Free Software Foundation, 59 Temple Place - Suite 330,
20#Boston MA 02111-1307, USA.
21
22# The targets for external use include:
23# all, doc, proto, install, install-cross, install-cross-rest,
24# uninstall, TAGS, mostlyclean, clean, distclean, maintainer-clean,
25# stage1, stage2, stage3, stage4.
26
27# This is the default target.
28all:
29
30# Suppress smart makes who think they know how to automake Yacc files
31.y.c:
32
33# Directory where sources are, from where we are.
34srcdir = @srcdir@
35VPATH = @srcdir@
36
37# Pointer to the GCC Project website
38website=http://gcc.gnu.org
39
40# These directories contain files that are provided as part of a FSF tarball,
41# but not provided in CVS. Some GCC integrators like to use the CVS sources
42# but keep them read-only during a build, and so change these variables
43# from these defaults.
44parsedir = $(srcdir)
45docobjdir = $(srcdir)/doc
46
47# Variables that exist for you to override.
48# See below for how to change them for certain systems.
49
50# List of language subdirectories.
51# This is overridden by configure.
52SUBDIRS =@subdirs@
53
54# Selection of languages to be made.
55# This is overridden by configure.
56CONFIG_LANGUAGES = @all_languages@
57LANGUAGES = c gcov$(exeext) gcov-dump$(exeext) $(CONFIG_LANGUAGES)
58
59# Selection of languages to be made during stage1 build.
60# This is overridden by configure.
61BOOT_LANGUAGES = c @all_boot_languages@
62
63# Various ways of specifying flags for compilations:
64# CFLAGS is for the user to override to, e.g., do a cross build with -O2.
65# For recursive bootstrap builds CFLAGS is used to pass in STAGE1_CFLAGS
66# or BOOT_CFLAGS
67# STAGE1_CFLAGS is set by configure on some targets or passed from toplevel
68# and sets the CFLAGS passed to stage1 of a bootstrap compilation.
69# BOOT_CFLAGS is the value of CFLAGS to pass to the stage2, stage3 and stage4
70# bootstrap compilations.
71# XCFLAGS is used for most compilations but not when using the GCC just built.
72# TCFLAGS is used for compilations with the GCC just built.
73XCFLAGS =
74TCFLAGS =
75CFLAGS = -g
76STAGE1_CFLAGS = -g @stage1_cflags@
77BOOT_CFLAGS = -g -O2
78
79# Flags to determine code coverage. When coverage is disabled, this will
80# contain the optimization flags, as you normally want code coverage
81# without optimization. The -dumpbase $@ makes sure that the auxilary
82# files end up near the object files.
83COVERAGE_FLAGS = @coverage_flags@
84coverageexts = .{da,bbg}
85
86# The warning flags are separate from BOOT_CFLAGS because people tend to
87# override optimization flags and we'd like them to still have warnings
88# turned on. These flags are also used to pass other stage dependent
89# flags from configure. The user is free to explicitly turn these flags
90# off if they wish.
91# LOOSE_WARN are the warning flags to use when compiling something
92# which is only compiled with gcc, such as libgcc and the frontends
93# other than C.
94# STRICT_WARN and STRICT2_WARN are the additional warning flags to
95# apply to the back end and the C front end, which may be compiled
96# with other compilers. This is partially controlled by configure in
97# stage1, as not all versions of gcc understand -Wno-long-long.
98LOOSE_WARN = -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes
99STRICT_WARN = -Wtraditional @strict1_warn@
100STRICT2_WARN = -Wtraditional -pedantic -Wno-long-long
101
102# This is set by --enable-checking. The idea is to catch forgotten
103# "extern" tags in header files.
104NOCOMMON_FLAG = @nocommon_flag@
105
106# These are set by --enable-checking=valgrind.
107RUN_GEN = @valgrind_command@
108VALGRIND_DRIVER_DEFINES = @valgrind_path_defines@
109
110# This is how we control whether or not the additional warnings are applied.
111.-warn = $(STRICT_WARN)
112GCC_WARN_CFLAGS = $(LOOSE_WARN) $($(@D)-warn) $(NOCOMMON_FLAG) $(WERROR) $($@-warn)
113
114# These files are to have -Werror bypassed in stage2:
115# These are very hard to completely clean due to target complexities.
116varasm.o-warn = -Wno-error
117gcc.o-warn = -Wno-error
118insn-conditions.o-warn = -Wno-error
119@out_object_file@-warn = -Wno-error
120# Bison-1.75 output often yields (harmless) -Wtraditional warnings
121gengtype-yacc.o-warn = -Wno-error
122c-parse.o-warn = -Wno-error
123
124# All warnings have to be shut off in stage1 if the compiler used then
125# isn't gcc; configure determines that. WARN_CFLAGS will be either
126# $(GCC_WARN_CFLAGS), or nothing.
127WARN_CFLAGS = @warn_cflags@
128
129# These exists to be overridden by the x-* and t-* files, respectively.
130X_CFLAGS =
131T_CFLAGS =
132
133X_CPPFLAGS =
134T_CPPFLAGS =
135
136ADAC = @ADAC@
137AWK = @AWK@
138CC = @CC@
139BISON = @BISON@
140BISONFLAGS =
141FLEX = @FLEX@
142FLEXFLAGS =
143AR = ar
144AR_FLAGS = rc
145DLLTOOL = dlltool
146RANLIB = @RANLIB@
147SHELL = @SHELL@
148# pwd command to use. Allow user to override default by setting PWDCMD in
149# the environment to account for automounters. The make variable must not
150# be called PWDCMD, otherwise the value set here is passed to make
151# subprocesses and overrides the setting from the user's environment.
152PWD = $${PWDCMD-pwd}
153# on sysV, define this as cp.
154INSTALL = @INSTALL@
155# Some systems may be missing symbolic links, regular links, or both.
156# Allow configure to check this and use "ln -s", "ln", or "cp" as appropriate.
157LN=@LN@
158LN_S=@LN_S@
159# These permit overriding just for certain files.
160INSTALL_PROGRAM = @INSTALL_PROGRAM@
161INSTALL_DATA = @INSTALL_DATA@
162INSTALL_SCRIPT = @INSTALL@
163MAKEINFO = @MAKEINFO@
164MAKEINFOFLAGS =
165TEXI2DVI = texi2dvi
166TEXI2POD = perl $(srcdir)/../contrib/texi2pod.pl
167POD2MAN = pod2man --center="GNU" --release="gcc-$(version)"
168# For GNUmake: let us decide what gets passed to recursive makes.
169MAKEOVERRIDES =
170@SET_MAKE@
171# Some compilers can't handle cc -c blah.c -o foo/blah.o.
172# In stage2 and beyond, we force this to "-o $@" since we know we're using gcc.
173OUTPUT_OPTION = @OUTPUT_OPTION@
174
175# Some versions of `touch' (such as the version on Solaris 2.8)
176# do not correctly set the timestamp due to buggy versions of `utime'
177# in the kernel. So, we use `echo' instead.
178STAMP = echo timestamp >
179
180# This is where we get zlib from. zlibdir is -L../zlib and zlibinc is
181# -I../zlib, unless we were configured with --with-system-zlib, in which
182# case both are empty.
183ZLIB = @zlibdir@ -lz
184ZLIBINC = @zlibinc@
185
186# Substitution type for target's getgroups 2nd arg.
187TARGET_GETGROUPS_T = @TARGET_GETGROUPS_T@
188
189# Target to use when installing include directory. Either
190# install-headers-tar, install-headers-cpio or install-headers-cp.
191INSTALL_HEADERS_DIR = @build_install_headers_dir@
192
193# Header files that are made available under the same name
194# to programs compiled with GCC.
195USER_H = $(srcdir)/ginclude/float.h \
196 $(srcdir)/ginclude/iso646.h \
197 $(srcdir)/ginclude/stdarg.h \
198 $(srcdir)/ginclude/stdbool.h \
199 $(srcdir)/ginclude/stddef.h \
200 $(srcdir)/ginclude/varargs.h \
201 $(srcdir)/unwind.h \
202 $(EXTRA_HEADERS)
203
204# The GCC to use for compiling libgcc.a and crt*.o.
205# Usually the one we just built.
206# Don't use this as a dependency--use $(GCC_PASSES) or $(GCC_PARTS).
207GCC_FOR_TARGET = $(STAGE_CC_WRAPPER) ./xgcc -B./ -B$(build_tooldir)/bin/ -isystem $(build_tooldir)/include -isystem $(build_tooldir)/sys-include -L$(objdir)/../ld
208
209# This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
210# It omits XCFLAGS, and specifies -B./.
211# It also specifies -isystem ./include to find, e.g., stddef.h.
212GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(LOOSE_WARN) -isystem ./include $(TCFLAGS)
213
214# Sed command to transform gcc to installed name. Overwritten by configure.
215program_transform_name = @program_transform_name@
216program_transform_cross_name = s,^,$(target_alias)-,
217
218build_canonical = @build_canonical@
219host_canonical = @host_canonical@
220
221# Tools to use when building a cross-compiler.
222# These are used because `configure' appends `cross-make'
223# to the makefile when making a cross-compiler.
224
225# Use the tools from the build tree, if they are available.
226
227# objdir is set by configure.
228objdir = @objdir@
229
230AR_FOR_TARGET = ` \
231 if [ -f $(objdir)/../binutils/ar ] ; then \
232 echo $(objdir)/../binutils/ar ; \
233 else \
234 if [ "$(host_canonical)" = "$(target)" ] ; then \
235 echo ar; \
236 else \
237 t='$(program_transform_cross_name)'; echo ar | sed -e $$t ; \
238 fi; \
239 fi`
240AR_FLAGS_FOR_TARGET =
241AR_CREATE_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) rc
242AR_EXTRACT_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) x
243RANLIB_FOR_TARGET = ` \
244 if [ -f $(objdir)/../binutils/ranlib ] ; then \
245 echo $(objdir)/../binutils/ranlib ; \
246 else \
247 if [ "$(host_canonical)" = "$(target)" ] ; then \
248 echo $(RANLIB); \
249 else \
250 t='$(program_transform_cross_name)'; echo ranlib | sed -e $$t ; \
251 fi; \
252 fi`
253NM_FOR_TARGET = ` \
254 if [ -f ./nm ] ; then \
255 echo ./nm ; \
256 elif [ -f $(objdir)/../binutils/nm-new ] ; then \
257 echo $(objdir)/../binutils/nm-new ; \
258 else \
259 if [ "$(host_canonical)" = "$(target)" ] ; then \
260 echo nm; \
261 else \
262 t='$(program_transform_cross_name)'; echo nm | sed -e $$t ; \
263 fi; \
264 fi`
265
266# Where to find some libiberty headers.
267HASHTAB_H = $(srcdir)/../include/hashtab.h
268OBSTACK_H = $(srcdir)/../include/obstack.h
269SPLAY_TREE_H= $(srcdir)/../include/splay-tree.h
270FIBHEAP_H = $(srcdir)/../include/fibheap.h
271PARTITION_H = $(srcdir)/../include/partition.h
272
273# Default native SYSTEM_HEADER_DIR, to be overridden by targets.
274NATIVE_SYSTEM_HEADER_DIR = /usr/include
275# Default cross SYSTEM_HEADER_DIR, to be overridden by targets.
276CROSS_SYSTEM_HEADER_DIR = @CROSS_SYSTEM_HEADER_DIR@
277
278# autoconf sets SYSTEM_HEADER_DIR to one of the above.
279SYSTEM_HEADER_DIR = @SYSTEM_HEADER_DIR@
280
281# Control whether to run fixproto and fixincludes.
282STMP_FIXPROTO = @STMP_FIXPROTO@
283STMP_FIXINC = @STMP_FIXINC@
284
285# Test to see whether <limits.h> exists in the system header files.
286LIMITS_H_TEST = [ -f $(SYSTEM_HEADER_DIR)/limits.h ]
287
288# Directory for prefix to system directories, for
289# each of $(system_prefix)/usr/include, $(system_prefix)/usr/lib, etc.
290TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
291
292target=@target@
293target_alias=@target_alias@
294xmake_file=@dep_host_xmake_file@
295tmake_file=@dep_tmake_file@
296out_file=$(srcdir)/config/@out_file@
297out_object_file=@out_object_file@
298md_file=$(srcdir)/config/@md_file@
299tm_file=@tm_file@
300tm_file_list=@tm_file_list@
301tm_defines=@tm_defines@
302tm_p_file_list=@tm_p_file_list@
303tm_p_file=@tm_p_file@
304build_xm_file_list=@build_xm_file_list@
305build_xm_file=@build_xm_file@
306build_xm_defines=@build_xm_defines@
307host_xm_file_list=@host_xm_file_list@
308host_xm_file=@host_xm_file@
309host_xm_defines=@host_xm_defines@
310xm_file=@xm_file@
311xm_defines=@xm_defines@
312lang_specs_files=@lang_specs_files@
313lang_options_files=@lang_options_files@
314lang_tree_files=@lang_tree_files@
315target_cpu_default=@target_cpu_default@
316GCC_THREAD_FILE=@thread_file@
317OBJC_BOEHM_GC=@objc_boehm_gc@
318GTHREAD_FLAGS=@gthread_flags@
319host_hook_obj=@out_host_hook_obj@
320# Be prepared for gcc2 merges.
321gcc_version=@gcc_version@
322gcc_version_trigger=@gcc_version_trigger@
323version=$(gcc_version)
324mainversion=`grep version_string $(srcdir)/version.c | sed -e 's/.*\"\([0-9]*\.[0-9]*\).*/\1/'`
325
326# Common prefix for installation directories.
327# NOTE: This directory must exist when you start installation.
328prefix = @prefix@
329# Directory in which to put localized header files. On the systems with
330# gcc as the native cc, `local_prefix' may not be `prefix' which is
331# `/usr'.
332# NOTE: local_prefix *should not* default from prefix.
333local_prefix = @local_prefix@
334# Directory in which to put host dependent programs and libraries
335exec_prefix = @exec_prefix@
336# Directory in which to put the executable for the command `gcc'
337bindir = @bindir@
338# Directory in which to put the directories used by the compiler.
339libdir = @libdir@
340# Directory in which the compiler finds executables, libraries, etc.
341libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(version)
342# Used to produce a relative $(gcc_tooldir) in gcc.o
343unlibsubdir = ../../..
344# Directory in which to find other cross-compilation tools and headers.
345dollar = @dollar@
346# Used in install-cross.
347gcc_tooldir = @gcc_tooldir@
348# Used to install the shared libgcc.
349slibdir = @slibdir@
350# Since gcc_tooldir does not exist at build-time, use -B$(build_tooldir)/bin/
351build_tooldir = $(exec_prefix)/$(target_alias)
352# Directory in which the compiler finds target-independent g++ includes.
353gcc_gxx_include_dir = @gcc_gxx_include_dir@
354# Directory to search for site-specific includes.
355local_includedir = $(local_prefix)/include
356includedir = $(prefix)/include
357# where the info files go
358infodir = @infodir@
359# Where cpp should go besides $prefix/bin if necessary
360cpp_install_dir = @cpp_install_dir@
361# where the locale files go
362datadir = @datadir@
363localedir = $(datadir)/locale
364# Extension (if any) to put in installed man-page filename.
365man1ext = .1
366man7ext = .7
367objext = .o
368exeext = @host_exeext@
369build_exeext = @build_exeext@
370
371# Directory in which to put man pages.
372mandir = @mandir@
373man1dir = $(mandir)/man1
374man7dir = $(mandir)/man7
375# Dir for temp files.
376tmpdir = /tmp
377
378# Top build directory, relative to here.
379top_builddir = .
380
381# Whether we were configured with NLS.
382USE_NLS = @USE_NLS@
383
384# Internationalization library.
385INTLLIBS = @INTLLIBS@
386INTLDEPS = @INTLDEPS@
387
388# Character encoding conversion library.
389LIBICONV = @LIBICONV@
390
391# List of internationalization subdirectories.
392INTL_SUBDIRS = intl
393
394# The GC method to be used on this system.
395GGC=@GGC@.o
396
397# If a supplementary library is being used for the GC.
398GGC_LIB=
399
400# libgcc.a may be built directly or via stmp-multilib,
401# and installed likewise. Overridden by t-fragment.
402LIBGCC = libgcc.a
403INSTALL_LIBGCC = install-libgcc
404
405# Options to use when compiling libgcc2.a.
406#
407LIBGCC2_DEBUG_CFLAGS = -g
408LIBGCC2_CFLAGS = -O2 $(LIBGCC2_INCLUDES) $(GCC_CFLAGS) $(TARGET_LIBGCC2_CFLAGS) $(LIBGCC2_DEBUG_CFLAGS) $(GTHREAD_FLAGS) -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED @inhibit_libc@
409
410# Additional options to use when compiling libgcc2.a.
411# Some targets override this to -isystem include
412LIBGCC2_INCLUDES =
413
414# Additional target-dependent options for compiling libgcc2.a.
415TARGET_LIBGCC2_CFLAGS =
416
417# Options to use when compiling crtbegin/end.
418CRTSTUFF_CFLAGS = -O2 $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
419 -finhibit-size-directive -fno-inline-functions -fno-exceptions \
420 -fno-zero-initialized-in-bss -fno-unit-at-a-time
421
422# Additional sources to handle exceptions; overridden by targets as needed.
423LIB2ADDEH = $(srcdir)/unwind-dw2.c $(srcdir)/unwind-dw2-fde.c \
424 $(srcdir)/unwind-sjlj.c
425LIB2ADDEHDEP = unwind.inc unwind-dw2-fde.h
426
427# nm flags to list global symbols in libgcc object files.
428SHLIB_NM_FLAGS = -pg
429
430# List of extra executables that should be compiled for this target machine
431# that are used for compiling from source code to object code.
432# The rules for compiling them should be in the t-* file for the machine.
433EXTRA_PASSES =@extra_passes@
434
435# Like EXTRA_PASSES, but these are used when linking.
436EXTRA_PROGRAMS = @extra_programs@
437
438# List of extra object files that should be compiled for this target machine.
439# The rules for compiling them should be in the t-* file for the machine.
440EXTRA_PARTS = @extra_parts@
441
442# List of extra object files that should be compiled and linked with
443# compiler proper (cc1, cc1obj, cc1plus).
444EXTRA_OBJS = @extra_objs@
445
446# List of extra object files that should be compiled and linked with
447# the gcc driver.
448EXTRA_GCC_OBJS =@host_extra_gcc_objs@
449
450# List of additional header files to install.
451# Often this is edited directly by `configure'.
452EXTRA_HEADERS =@extra_headers_list@
453
454# It is convenient for configure to add the assignment at the beginning,
455# so don't override it here.
456USE_COLLECT2 = collect2$(exeext)
457
458# List of extra C and assembler files to add to static and shared libgcc2.
459# Assembler files should have names ending in `.asm'.
460LIB2FUNCS_EXTRA =
461
462# List of extra C and assembler files to add to static libgcc2.
463# Assembler files should have names ending in `.asm'.
464LIB2FUNCS_STATIC_EXTRA =
465
466# Program to convert libraries.
467LIBCONVERT =
468
469# Control whether header files are installed.
470INSTALL_HEADERS=install-headers install-mkheaders
471
472# Control whether Info documentation is built and installed.
473BUILD_INFO = @BUILD_INFO@
474
475# Control whether manpages generated by texi2pod.pl can be rebuilt.
476GENERATED_MANPAGES = @GENERATED_MANPAGES@
477
478# Additional directories of header files to run fixincludes on.
479# These should be directories searched automatically by default
480# just as /usr/include is.
481# *Do not* use this for directories that happen to contain
482# header files, but are not searched automatically by default.
483# On most systems, this is empty.
484OTHER_FIXINCLUDES_DIRS=
485
486# A list of all the language-specific executables.
487# This is overridden by configure.
488COMPILERS = cc1$(exeext) @all_compilers@
489
490# List of things which should already be built whenever we try to use xgcc
491# to compile anything (without linking).
492GCC_PASSES=xgcc$(exeext) cc1$(exeext) specs $(EXTRA_PASSES)
493
494# List of things which should already be built whenever we try to use xgcc
495# to link anything.
496GCC_PARTS=$(GCC_PASSES) $(LIBGCC) $(EXTRA_PROGRAMS) $(USE_COLLECT2) $(EXTRA_PARTS)
497
498# Directory to link to, when using the target `maketest'.
499DIR = ../gcc
500
501# Flags to use when cross-building GCC.
502# Prefix to apply to names of object files when using them
503# to run on the machine we are compiling on.
504BUILD_PREFIX = @BUILD_PREFIX@
505# Prefix to apply to names of object files when compiling them
506# to run on the machine we are compiling on.
507# The default for this variable is chosen to keep these rules
508# out of the way of the other rules for compiling the same source files.
509BUILD_PREFIX_1 = @BUILD_PREFIX_1@
510# Native compiler for the build machine and its switches.
511BUILD_CC = @BUILD_CC@
512BUILD_CFLAGS= @BUILD_CFLAGS@ -DGENERATOR_FILE
513
514# Native linker and preprocessor flags. For x-fragment overrides.
515BUILD_LDFLAGS=$(LDFLAGS)
516BUILD_CPPFLAGS=$(ALL_CPPFLAGS)
517
518# Actual name to use when installing a native compiler.
519GCC_INSTALL_NAME = `echo gcc|sed '$(program_transform_name)'`
520GCC_TARGET_INSTALL_NAME = $(target_alias)-`echo gcc|sed '$(program_transform_name)'`
521CPP_INSTALL_NAME = `echo cpp|sed '$(program_transform_name)'`
522PROTOIZE_INSTALL_NAME = `echo protoize|sed '$(program_transform_name)'`
523UNPROTOIZE_INSTALL_NAME = `echo unprotoize|sed '$(program_transform_name)'`
524GCOV_INSTALL_NAME = `echo gcov|sed '$(program_transform_name)'`
525GCCBUG_INSTALL_NAME = `echo gccbug|sed '$(program_transform_name)'`
526
527# Actual name to use when installing a cross-compiler.
528GCC_CROSS_NAME = `echo gcc|sed '$(program_transform_cross_name)'`
529CPP_CROSS_NAME = `echo cpp|sed '$(program_transform_cross_name)'`
530PROTOIZE_CROSS_NAME = `echo protoize|sed '$(program_transform_cross_name)'`
531UNPROTOIZE_CROSS_NAME = `echo unprotoize|sed '$(program_transform_cross_name)'`
532
533# Set by autoconf to "all.internal" for a native build, or
534# "all.cross" to build a cross compiler.
535ALL = @ALL@
536
537# Setup the testing framework, if you have one
538EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \
539 echo $${rootme}/../expect/expect ; \
540 else echo expect ; fi`
541
542RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
543 echo $${srcdir}/../dejagnu/runtest ; \
544 else echo runtest; fi`
545RUNTESTFLAGS =
546
547# Extra symbols for fixproto to define when parsing headers.
548FIXPROTO_DEFINES =
549
550# Extra flags to use when compiling crt{begin,end}.o.
551CRTSTUFF_T_CFLAGS =
552
553# Extra flags to use when compiling [m]crt0.o.
554CRT0STUFF_T_CFLAGS =
555
556# "t" or nothing, for building multilibbed versions of, say, crtbegin.o.
557T =
558
559# Should T contain a `=', libgcc.mk will make T_TARGET, setting
560# $(T_TARGET) to the name of the actual target filename.
561T_TARGET =
562T_TARGET : $(T_TARGET)
563
564# This should name the specs file that we're going to install. Target
565# Makefiles may override it and name another file to be generated from
566# the built-in specs and installed as the default spec, as long as
567# they also introduce a rule to generate a file name specs, to be used
568# at build time.
569SPECS = specs
570
571# End of variables for you to override.
572
573# Definition of `all' is here so that new rules inserted by sed
574# do not specify the default target.
575# The real definition is under `all.internal' (for native compilers)
576# or `all.cross' (for cross compilers).
577all: all.indirect
578
579# This tells GNU Make version 3 not to put all variables in the environment.
580.NOEXPORT:
581
582# GTM_H lists the config files that the generator files depend on,
583# while TM_H lists the ones ordinary gcc files depend on, which
584# includes several files generated by those generators.
585BCONFIG_H = bconfig.h $(build_xm_file_list)
586CONFIG_H = config.h $(host_xm_file_list)
587TCONFIG_H = tconfig.h $(xm_file_list)
588TM_P_H = tm_p.h $(tm_p_file_list)
589GTM_H = tm.h $(tm_file_list)
590TM_H = $(GTM_H) insn-constants.h insn-flags.h
591
592TARGET_H = target.h
593HOOKS_H = hooks.h
594LANGHOOKS_DEF_H = langhooks-def.h $(HOOKS_H)
595TARGET_DEF_H = target-def.h $(HOOKS_H)
596MACHMODE_H = machmode.h machmode.def @extra_modes_file@
597RTL_BASE_H = rtl.h rtl.def $(MACHMODE_H)
598RTL_H = $(RTL_BASE_H) genrtl.h
599PARAMS_H = params.h params.def
600TREE_H = tree.h tree.def $(MACHMODE_H) tree-check.h version.h builtins.def \
601 location.h
602BASIC_BLOCK_H = basic-block.h bitmap.h sbitmap.h varray.h $(PARTITION_H) \
603 hard-reg-set.h
604DEMANGLE_H = $(srcdir)/../include/demangle.h
605RECOG_H = recog.h
606EXPR_H = expr.h
607OPTABS_H = optabs.h insn-codes.h
608REGS_H = regs.h varray.h $(MACHMODE_H)
609INTEGRATE_H = integrate.h varray.h
610LOOP_H = loop.h varray.h bitmap.h
611GCC_H = gcc.h version.h
612GGC_H = ggc.h gtype-desc.h
613TIMEVAR_H = timevar.h timevar.def
614INSN_ATTR_H = insn-attr.h $(srcdir)/insn-addr.h $(srcdir)/varray.h
615C_COMMON_H = c-common.h $(SPLAY_TREE_H) $(CPPLIB_H)
616C_TREE_H = c-tree.h $(C_COMMON_H)
617SYSTEM_H = system.h hwint.h $(srcdir)/../include/libiberty.h
618PREDICT_H = predict.h predict.def
619CPPLIB_H = cpplib.h line-map.h
620
621# sed inserts variable overrides after the following line.
622####target overrides
623@target_overrides@
624
625####host overrides
626@host_overrides@
627#\f
628# Now figure out from those variables how to compile and link.
629
630all.indirect: $(ALL)
631
632# IN_GCC distinguishes between code compiled into GCC itself and other
633# programs built during a bootstrap.
634# autoconf inserts -DCROSS_COMPILE if we are building a cross compiler.
635INTERNAL_CFLAGS = -DIN_GCC @CROSS@
636
637# This is the variable actually used when we compile.
638# If you change this line, you probably also need to change the definition
639# of BUILD_CFLAGS in build-make to match.
640ALL_CFLAGS = $(X_CFLAGS) $(T_CFLAGS) \
641 $(CFLAGS) $(INTERNAL_CFLAGS) $(COVERAGE_FLAGS) $(WARN_CFLAGS) $(XCFLAGS) @DEFS@
642
643# Likewise.
644ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
645
646# Build and host support libraries. FORBUILD is either
647# .. or ../$(build_alias) depending on whether host != build.
648LIBIBERTY = ../libiberty/libiberty.a
649BUILD_LIBIBERTY = @FORBUILD@/libiberty/libiberty.a
650
651# Dependencies on the intl and portability libraries.
652LIBDEPS= $(INTLDEPS) $(LIBIBERTY)
653
654# Likewise, for use in the tools that must run on this machine
655# even if we are cross-building GCC.
656BUILD_LIBDEPS= $(BUILD_LIBIBERTY)
657
658# How to link with both our special library facilities
659# and the system's installed libraries.
660LIBS = $(INTLLIBS) @LIBS@ $(LIBIBERTY)
661
662# Any system libraries needed just for GNAT.
663SYSLIBS = @GNAT_LIBEXC@
664
665# Likewise, for use in the tools that must run on this machine
666# even if we are cross-building GCC.
667BUILD_LIBS = $(BUILD_LIBIBERTY)
668
669BUILD_RTL = $(BUILD_PREFIX)rtl.o read-rtl.o $(BUILD_PREFIX)bitmap.o \
670 $(BUILD_PREFIX)ggc-none.o
671BUILD_SUPPORT = gensupport.o insn-conditions.o
672BUILD_EARLY_SUPPORT = gensupport.o dummy-conditions.o
673
674BUILD_PRINT = print-rtl1.o
675BUILD_ERRORS = $(BUILD_PREFIX)errors.o
676BUILD_VARRAY = $(BUILD_PREFIX)varray.o
677
678# Specify the directories to be searched for header files.
679# Both . and srcdir are used, in that order,
680# so that *config.h will be found in the compilation
681# subdirectory rather than in the source directory.
682# -I$(@D) and -I$(srcdir)/$(@D) cause the subdirectory of the file
683# currently being compiled, in both source trees, to be examined as well.
684INCLUDES = -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \
685 -I$(srcdir)/config -I$(srcdir)/../include
686
687# Always use -I$(srcdir)/config when compiling.
688.c.o:
689 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
690
691# This tells GNU make version 3 not to export all the variables
692# defined in this file into the environment.
693.NOEXPORT:
694#\f
695# Support for additional languages (other than c and objc).
696# ??? objc can be supported this way too (leave for later).
697
698# These next lines are overridden by configure.
699LANG_MAKEFILES = @all_lang_makefiles@
700LANG_STAGESTUFF = @all_stagestuff@
701
702# Flags to pass to recursive makes.
703# CC is set by configure. Hosts without symlinks need special handling
704# because we need CC="stage1/xgcc -Bstage1/" to work in the language
705# subdirectories.
706# ??? The choices here will need some experimenting with.
707ORDINARY_FLAGS_TO_PASS = \
708 "AR_FLAGS_FOR_TARGET=$(AR_FLAGS_FOR_TARGET)" \
709 "AR_CREATE_FOR_TARGET=$(AR_CREATE_FOR_TARGET)" \
710 "AR_EXTRACT_FOR_TARGET=$(AR_EXTRACT_FOR_TARGET)" \
711 "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
712 "BISON=$(BISON)" \
713 "BISONFLAGS=$(BISONFLAGS)" \
714 "CFLAGS=$(CFLAGS) $(WARN_CFLAGS)" \
715 "DESTDIR=$(DESTDIR)" \
716 "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
717 "LDFLAGS=$(LDFLAGS)" \
718 "FLEX=$(FLEX)" \
719 "FLEXFLAGS=$(FLEXFLAGS)" \
720 "LN=$(LN)" \
721 "LN_S=$(LN_S)" \
722 "MAKEINFO=$(MAKEINFO)" \
723 "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
724 "MAKEOVERRIDES=" \
725 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
726 "SHELL=$(SHELL)" \
727 "exeext=$(exeext)" \
728 "build_exeext=$(build_exeext)" \
729 "objext=$(objext)" \
730 "exec_prefix=$(exec_prefix)" \
731 "prefix=$(prefix)" \
732 "local_prefix=$(local_prefix)" \
733 "gxx_include_dir=$(gcc_gxx_include_dir)" \
734 "build_tooldir=$(build_tooldir)" \
735 "gcc_tooldir=$(gcc_tooldir)" \
736 "bindir=$(bindir)" \
737 "libsubdir=$(libsubdir)" \
738 "datadir=$(datadir)" \
739 "localedir=$(localedir)"
740FLAGS_TO_PASS = $(ORDINARY_FLAGS_TO_PASS) "CC=@cc_set_by_configure@" \
741 "STAGE_PREFIX=@stage_prefix_set_by_configure@"
742PREPEND_DOTDOT_TO_RELATIVE_PATHS = sed \
743 -e 's|^ *[^ /][^ /]*/|%&|' \
744 -e 's| -B| -B%|g' \
745 -e 's|% *[^- /]|%&|g' \
746 -e 's|%% *|../|g' \
747 -e 's|%||g'
748SUBDIR_FLAGS_TO_PASS = $(ORDINARY_FLAGS_TO_PASS) \
749 "CC=`echo @quoted_cc_set_by_configure@ | $(PREPEND_DOTDOT_TO_RELATIVE_PATHS)`" \
750 "STAGE_PREFIX=`echo @quoted_stage_prefix_set_by_configure@ | $(PREPEND_DOTDOT_TO_RELATIVE_PATHS)`"
751#\f
752# Lists of files for various purposes.
753
754# Target specific, C specific object file
755C_TARGET_OBJS=@c_target_objs@
756
757# Target specific, C++ specific object file
758CXX_TARGET_OBJS=@cxx_target_objs@
759
760# Language-specific object files for C and Objective C.
761C_AND_OBJC_OBJS = attribs.o c-errors.o c-lex.o c-pragma.o c-decl.o c-typeck.o \
762 c-convert.o c-aux-info.o c-common.o c-opts.o c-format.o c-semantics.o \
763 c-incpath.o cppdefault.o c-ppoutput.o c-cppbuiltin.o \
764 c-objc-common.o c-dump.o c-pch.o libcpp.a $(C_TARGET_OBJS)
765
766# Language-specific object files for C.
767C_OBJS = c-parse.o c-lang.o c-pretty-print.o $(C_AND_OBJC_OBJS)
768
769# Language-independent object files.
770
771OBJS = alias.o bb-reorder.o bitmap.o builtins.o caller-save.o calls.o \
772 cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfglayout.o cfgloop.o \
773 cfgloopanal.o cfgloopmanip.o loop-init.o loop-unswitch.o loop-unroll.o \
774 cfgrtl.o combine.o conflict.o convert.o cse.o cselib.o dbxout.o \
775 debug.o df.o diagnostic.o doloop.o dominance.o \
776 dwarf2asm.o dwarf2out.o dwarfout.o emit-rtl.o except.o explow.o \
777 expmed.o expr.o final.o flow.o fold-const.o function.o gcse.o \
778 genrtl.o ggc-common.o global.o graph.o gtype-desc.o \
779 haifa-sched.o hashtable.o hooks.o ifcvt.o insn-attrtab.o insn-emit.o \
780 insn-extract.o insn-opinit.o insn-output.o insn-peep.o insn-recog.o \
781 integrate.o intl.o jump.o langhooks.o lcm.o lists.o local-alloc.o \
782 loop.o mbchar.o optabs.o params.o predict.o print-rtl.o print-tree.o \
783 profile.o ra.o ra-build.o ra-colorize.o ra-debug.o ra-rewrite.o \
784 real.o recog.o reg-stack.o regclass.o regmove.o regrename.o \
785 reload.o reload1.o reorg.o resource.o rtl.o rtlanal.o rtl-error.o \
786 sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o \
787 sibcall.o simplify-rtx.o sreal.o ssa.o ssa-ccp.o ssa-dce.o stmt.o \
788 stor-layout.o stringpool.o timevar.o toplev.o tracer.o tree.o tree-dump.o \
789 tree-inline.o unroll.o varasm.o varray.o version.o vmsdbgout.o xcoffout.o \
790 alloc-pool.o et-forest.o cgraph.o cgraphunit.o \
791 $(GGC) $(out_object_file) $(EXTRA_OBJS) $(host_hook_obj)
792
793BACKEND = main.o libbackend.a
794
795# Files to be copied away after each stage in building.
796STAGESTUFF = *$(objext) insn-flags.h insn-config.h insn-codes.h \
797 insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
798 insn-attr.h insn-attrtab.c insn-opinit.c insn-constants.h tm-preds.h \
799 tree-check.h insn-conditions.c \
800 s-flags s-config s-codes s-mlib s-genrtl s-gtype gtyp-gen.h \
801 s-output s-recog s-emit s-extract s-peep s-check s-conditions \
802 s-attr s-attrtab s-opinit s-preds s-constants s-crt0 \
803 genemit$(build_exeext) genoutput$(build_exeext) genrecog$(build_exeext) \
804 genextract$(build_exeext) genflags$(build_exeext) gencodes$(build_exeext) \
805 genconfig$(build_exeext) genpeep$(build_exeext) genattrtab$(build_exeext) \
806 genattr$(build_exeext) genopinit$(build_exeext) gengenrtl$(build_exeext) \
807 gencheck$(build_exeext) genpreds$(build_exeext) genconstants$(build_exeext) \
808 gengtype$(build_exeext) genconditions$(build_exeext) \
809 genrtl.c genrtl.h gt-*.h gtype-*.h gtype-desc.c \
810 xgcc$(exeext) cpp$(exeext) cc1$(exeext) $(EXTRA_PASSES) \
811 $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross$(exeext) cc1obj$(exeext) \
812 protoize$(exeext) unprotoize$(exeext) \
813 $(SPECS) collect2$(exeext) $(USE_COLLECT2) \
814 gcov-iov$(build_exeext) gcov$(exeext) gcov-dump$(exeext) \
815 *.[0-9][0-9].* *.[si] libcpp.a libbackend.a libgcc.mk \
816 $(LANG_STAGESTUFF)
817
818# Defined in libgcc2.c, included only in the static library.
819LIB2FUNCS_ST = _eprintf __gcc_bcmp
820
821# Defined in libgcov.c, included only in gcov library
822LIBGCOV = _gcov
823
824FPBIT_FUNCS = _pack_sf _unpack_sf _addsub_sf _mul_sf _div_sf \
825 _fpcmp_parts_sf _compare_sf _eq_sf _ne_sf _gt_sf _ge_sf \
826 _lt_sf _le_sf _unord_sf _si_to_sf _sf_to_si _negate_sf _make_sf \
827 _sf_to_df _sf_to_tf _thenan_sf _sf_to_usi _usi_to_sf
828
829DPBIT_FUNCS = _pack_df _unpack_df _addsub_df _mul_df _div_df \
830 _fpcmp_parts_df _compare_df _eq_df _ne_df _gt_df _ge_df \
831 _lt_df _le_df _unord_df _si_to_df _df_to_si _negate_df _make_df \
832 _df_to_sf _df_to_tf _thenan_df _df_to_usi _usi_to_df
833
834TPBIT_FUNCS = _pack_tf _unpack_tf _addsub_tf _mul_tf _div_tf \
835 _fpcmp_parts_tf _compare_tf _eq_tf _ne_tf _gt_tf _ge_tf \
836 _lt_tf _le_tf _unord_tf _si_to_tf _tf_to_si _negate_tf _make_tf \
837 _tf_to_df _tf_to_sf _thenan_tf _tf_to_usi _usi_to_tf
838
839# These might cause a divide overflow trap and so are compiled with
840# unwinder info.
841LIB2_DIVMOD_FUNCS = _divdi3 _moddi3 _udivdi3 _umoddi3 _udiv_w_sdiv _udivmoddi4
842
843# The only suffixes we want for implicit rules are .c and .o, so clear
844# the list and add them. This speeds up GNU Make, and allows -r to work.
845# For i18n support, we also need .gmo, .po, .pox.
846# This must come before the language makefile fragments to allow them to
847# add suffixes and rules of their own.
848.SUFFIXES:
849.SUFFIXES: .c .o .po .pox .gmo
850
851#\f
852# Language makefile fragments.
853
854# The following targets define the interface between us and the languages.
855#
856# all.cross, start.encap, rest.encap,
857# info, dvi,
858# install-normal, install-common, install-info, install-man,
859# uninstall,
860# mostlyclean, clean, distclean, extraclean, maintainer-clean,
861# stage1, stage2, stage3, stage4
862#
863# Each language is linked in with a series of hooks (since we can't use `::'
864# targets). The name of each hooked is "lang.${target_name}" (eg: lang.info).
865# Configure computes and adds these here.
866
867####language hooks
868@language_hooks@
869
870# sed inserts language fragments after the following line.
871####language fragments
872@language_fragments@
873
874# End of language makefile fragments.
875#\f
876
877Makefile: $(srcdir)/Makefile.in config.status $(srcdir)/version.c \
878 $(xmake_file) $(tmake_file) $(LANG_MAKEFILES)
879 $(SHELL) $(srcdir)/configure.frag $(srcdir) "$(SUBDIRS)" \
880 "$(xmake_file)" "$(tmake_file)"
881 cp config.status config.run
882 LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.run
883 rm -f config.run
884
885config.h: cs-config.h ; @true
886bconfig.h: cs-bconfig.h ; @true
887tconfig.h: cs-tconfig.h ; @true
888tm.h: cs-tm.h ; @true
889tm_p.h: cs-tm_p.h ; @true
890
891cs-config.h: Makefile
892 TARGET_CPU_DEFAULT="" \
893 HEADERS="$(host_xm_file)" DEFINES="$(host_xm_defines)" \
894 $(SHELL) $(srcdir)/mkconfig.sh config.h
895
896cs-bconfig.h: Makefile
897 TARGET_CPU_DEFAULT="" \
898 HEADERS="$(build_xm_file)" DEFINES="$(build_xm_defines)" \
899 $(SHELL) $(srcdir)/mkconfig.sh bconfig.h
900
901cs-tconfig.h: Makefile
902 TARGET_CPU_DEFAULT="" \
903 HEADERS="$(xm_file)" DEFINES="$(xm_defines)" \
904 $(SHELL) $(srcdir)/mkconfig.sh tconfig.h
905
906cs-tm.h: Makefile
907 TARGET_CPU_DEFAULT="$(target_cpu_default)" \
908 HEADERS="$(tm_file)" DEFINES="$(tm_defines)" \
909 $(SHELL) $(srcdir)/mkconfig.sh tm.h
910
911cs-tm_p.h: Makefile
912 TARGET_CPU_DEFAULT="" \
913 HEADERS="$(tm_p_file)" DEFINES="" \
914 $(SHELL) $(srcdir)/mkconfig.sh tm_p.h
915
916# Don't automatically run autoconf, since configure.in might be accidentally
917# newer than configure. Also, this writes into the source directory which
918# might be on a read-only file system. If configured for maintainer mode
919# then do allow autoconf to be run.
920
921$(srcdir)/configure: @MAINT@ $(srcdir)/configure.in
922 (cd $(srcdir) && autoconf)
923
924gccbug: $(srcdir)/gccbug.in
925 CONFIG_FILES=gccbug CONFIG_HEADERS= ./config.status
926
927mklibgcc: $(srcdir)/mklibgcc.in
928 CONFIG_FILES=mklibgcc CONFIG_HEADERS= ./config.status
929
930mkheaders: $(srcdir)/mkheaders.in
931 CONFIG_FILES=mkheaders CONFIG_HEADERS= ./config.status
932
933# cstamp-h.in controls rebuilding of config.in.
934# It is named cstamp-h.in and not stamp-h.in so the mostlyclean rule doesn't
935# delete it. A stamp file is needed as autoheader won't update the file if
936# nothing has changed.
937# It remains in the source directory and is part of the distribution.
938# This follows what is done in shellutils, fileutils, etc.
939# "echo timestamp" is used instead of touch to be consistent with other
940# packages that use autoconf (??? perhaps also to avoid problems with patch?).
941# ??? Newer versions have a maintainer mode that may be useful here.
942
943# Don't run autoheader automatically either.
944# Only run it if maintainer mode is enabled.
945@MAINT@ $(srcdir)/config.in: $(srcdir)/cstamp-h.in
946@MAINT@ $(srcdir)/cstamp-h.in: $(srcdir)/configure.in $(srcdir)/acconfig.h
947@MAINT@ (cd $(srcdir) && autoheader)
948@MAINT@ @rm -f $(srcdir)/cstamp-h.in
949@MAINT@ echo timestamp > $(srcdir)/cstamp-h.in
950auto-host.h: cstamp-h ; @true
951cstamp-h: config.in config.status
952 CONFIG_HEADERS=auto-host.h:config.in LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status
953
954# Really, really stupid make features, such as SUN's KEEP_STATE, may force
955# a target to build even if it is up-to-date. So we must verify that
956# config.status does not exist before failing.
957config.status: $(srcdir)/configure $(srcdir)/config.gcc version.c
958 @if [ ! -f config.status ] ; then \
959 echo You must configure gcc. Look at http://gcc.gnu.org/install/ for details.; \
960 false; \
961 else \
962 LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status --recheck; \
963 fi
964
965all.internal: start.encap rest.encap doc
966# This is what to compile if making a cross-compiler.
967all.cross: native gcc-cross cpp$(exeext) specs \
968 $(LIBGCC) $(EXTRA_PARTS) lang.all.cross doc
969# This is what must be made before installing GCC and converting libraries.
970start.encap: native xgcc$(exeext) cpp$(exeext) specs \
971 xlimits.h lang.start.encap
972# These can't be made until after GCC can run.
973rest.encap: $(STMP_FIXPROTO) $(LIBGCC) $(EXTRA_PARTS) lang.rest.encap
974# This is what is made with the host's compiler
975# whether making a cross compiler or not.
976native: config.status auto-host.h intl.all build-@POSUB@ $(LANGUAGES) \
977 $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2)
978
979# Define the names for selecting languages in LANGUAGES.
980C c: cc1$(exeext)
981PROTO: proto
982
983# Tell GNU make these are phony targets.
984.PHONY: C c PROTO proto
985
986# On the target machine, finish building a cross compiler.
987# This does the things that can't be done on the host machine.
988rest.cross: $(LIBGCC) specs
989
990# Recompile all the language-independent object files.
991# This is used only if the user explicitly asks for it.
992compilations: $(BACKEND)
993
994# Like libcpp.a, this archive is strictly for the host.
995libbackend.a: $(OBJS)
996 -rm -rf libbackend.a
997 $(AR) $(AR_FLAGS) libbackend.a $(OBJS)
998 -$(RANLIB) libbackend.a
999
1000# We call this executable `xgcc' rather than `gcc'
1001# to avoid confusion if the current directory is in the path
1002# and CC is `gcc'. It is renamed to `gcc' when it is installed.
1003xgcc$(exeext): gcc.o gccspec.o version.o intl.o prefix.o \
1004 version.o $(LIBDEPS) $(EXTRA_GCC_OBJS)
1005 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o gccspec.o intl.o \
1006 prefix.o version.o $(EXTRA_GCC_OBJS) $(LIBS)
1007
1008# cpp is to cpp0 as gcc is to cc1.
1009# The only difference from xgcc is that it's linked with cppspec.o
1010# instead of gccspec.o.
1011cpp$(exeext): gcc.o cppspec.o version.o intl.o prefix.o \
1012 version.o $(LIBDEPS) $(EXTRA_GCC_OBJS)
1013 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o cppspec.o intl.o \
1014 prefix.o version.o $(EXTRA_GCC_OBJS) $(LIBS)
1015
1016# Dump a specs file to make -B./ read these specs over installed ones.
1017$(SPECS): xgcc$(exeext)
1018 $(GCC_FOR_TARGET) -dumpspecs > tmp-specs
1019 mv tmp-specs $(SPECS)
1020
1021# We do want to create an executable named `xgcc', so we can use it to
1022# compile libgcc2.a.
1023# Also create gcc-cross, so that install-common will install properly.
1024gcc-cross: xgcc$(exeext)
1025 cp xgcc$(exeext) gcc-cross$(exeext)
1026
1027cc1$(exeext): $(C_OBJS) $(BACKEND) $(LIBDEPS)
1028 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1$(exeext) \
1029 $(C_OBJS) $(BACKEND) $(LIBS)
1030
1031# Build the version of limits.h that we will install.
1032xlimits.h: glimits.h limitx.h limity.h
1033 if $(LIMITS_H_TEST) ; then \
1034 cat $(srcdir)/limitx.h $(srcdir)/glimits.h $(srcdir)/limity.h > tmp-xlimits.h; \
1035 else \
1036 cat $(srcdir)/glimits.h > tmp-xlimits.h; \
1037 fi
1038 mv tmp-xlimits.h xlimits.h
1039#\f
1040# Build libgcc.a.
1041
1042LIB2ADD = $(LIB2FUNCS_EXTRA)
1043LIB2ADD_ST = $(LIB2FUNCS_STATIC_EXTRA)
1044
1045libgcc.mk: config.status Makefile mklibgcc $(LIB2ADD) $(LIB2ADD_ST) xgcc$(exeext) specs
1046 objext='$(objext)' \
1047 LIB1ASMFUNCS='$(LIB1ASMFUNCS)' \
1048 LIB2FUNCS_ST='$(LIB2FUNCS_ST)' \
1049 LIBGCOV='$(LIBGCOV)' \
1050 LIB2ADD='$(LIB2ADD)' \
1051 LIB2ADD_ST='$(LIB2ADD_ST)' \
1052 LIB2ADDEH='$(LIB2ADDEH)' \
1053 LIB2ADDEHDEP='$(LIB2ADDEHDEP)' \
1054 FPBIT='$(FPBIT)' \
1055 FPBIT_FUNCS='$(FPBIT_FUNCS)' \
1056 LIB2_DIVMOD_FUNCS='$(LIB2_DIVMOD_FUNCS)' \
1057 DPBIT='$(DPBIT)' \
1058 DPBIT_FUNCS='$(DPBIT_FUNCS)' \
1059 TPBIT='$(TPBIT)' \
1060 TPBIT_FUNCS='$(TPBIT_FUNCS)' \
1061 MULTILIBS=`$(GCC_FOR_TARGET) --print-multi-lib` \
1062 EXTRA_MULTILIB_PARTS='$(EXTRA_MULTILIB_PARTS)' \
1063 SHLIB_LINK='$(SHLIB_LINK)' \
1064 SHLIB_INSTALL='$(SHLIB_INSTALL)' \
1065 SHLIB_EXT='$(SHLIB_EXT)' \
1066 SHLIB_MULTILIB='$(SHLIB_MULTILIB)' \
1067 SHLIB_MKMAP='$(SHLIB_MKMAP)' \
1068 SHLIB_MKMAP_OPTS='$(SHLIB_MKMAP_OPTS)' \
1069 SHLIB_MAPFILES='$(SHLIB_MAPFILES)' \
1070 SHLIB_NM_FLAGS='$(SHLIB_NM_FLAGS)' \
1071 MULTILIB_OSDIRNAMES='$(MULTILIB_OSDIRNAMES)' \
1072 mkinstalldirs='$(SHELL) $(srcdir)/mkinstalldirs' \
1073 $(SHELL) mklibgcc > tmp-libgcc.mk
1074 mv tmp-libgcc.mk libgcc.mk
1075
1076# All the things that might cause us to want to recompile bits of libgcc.
1077LIBGCC_DEPS = $(GCC_PASSES) $(LANGUAGES) stmp-int-hdrs $(STMP_FIXPROTO) \
1078 libgcc.mk $(srcdir)/libgcc2.c $(srcdir)/libgcov.c $(TCONFIG_H) \
1079 $(MACHMODE_H) longlong.h gbl-ctors.h config.status stmp-int-hdrs \
1080 tsystem.h $(FPBIT) $(DPBIT) $(TPBIT) $(LIB2ADD) \
1081 $(LIB2ADD_ST) $(LIB2ADDEH) $(LIB2ADDEHDEP) $(EXTRA_PARTS) \
1082 $(srcdir)/config/$(LIB1ASMSRC)
1083
1084libgcov.a: libgcc.a; @true
1085
1086libgcc.a: $(LIBGCC_DEPS)
1087 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
1088 BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \
1089 AR_FOR_TARGET="$(AR_FOR_TARGET)" \
1090 AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \
1091 AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
1092 CFLAGS="$(CFLAGS) $(WARN_CFLAGS)" \
1093 RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)" \
1094 NM_FOR_TARGET="$(NM_FOR_TARGET)" AWK="$(AWK)" \
1095 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" \
1096 INCLUDES="$(INCLUDES)" \
1097 CONFIG_H="$(TCONFIG_H)" MACHMODE_H="$(MACHMODE_H)" TM_H="$(TM_H)" \
1098 LIB1ASMSRC='$(LIB1ASMSRC)' \
1099 MAKEOVERRIDES= \
1100 -f libgcc.mk all
1101
1102# Use the genmultilib shell script to generate the information the gcc
1103# driver program needs to select the library directory based on the
1104# switches.
1105multilib.h: s-mlib; @true
1106s-mlib: $(srcdir)/genmultilib Makefile
1107 if test @enable_multilib@ = yes \
1108 || test -n "$(MULTILIB_OSDIRNAMES)"; then \
1109 $(SHELL) $(srcdir)/genmultilib \
1110 "$(MULTILIB_OPTIONS)" \
1111 "$(MULTILIB_DIRNAMES)" \
1112 "$(MULTILIB_MATCHES)" \
1113 "$(MULTILIB_EXCEPTIONS)" \
1114 "$(MULTILIB_EXTRA_OPTS)" \
1115 "$(MULTILIB_EXCLUSIONS)" \
1116 "$(MULTILIB_OSDIRNAMES)" \
1117 "@enable_multilib@" \
1118 > tmp-mlib.h; \
1119 else \
1120 $(SHELL) $(srcdir)/genmultilib '' '' '' '' '' '' '' no \
1121 > tmp-mlib.h; \
1122 fi
1123 $(SHELL) $(srcdir)/move-if-change tmp-mlib.h multilib.h
1124 $(STAMP) s-mlib
1125
1126# Build multiple copies of libgcc.a, one for each target switch.
1127stmp-multilib: $(LIBGCC_DEPS)
1128 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
1129 BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \
1130 AR_FOR_TARGET="$(AR_FOR_TARGET)" \
1131 AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \
1132 AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
1133 CFLAGS="$(CFLAGS) $(WARN_CFLAGS)" \
1134 RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)" \
1135 NM_FOR_TARGET="$(NM_FOR_TARGET)" AWK="$(AWK)" \
1136 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" \
1137 INCLUDES="$(INCLUDES)" \
1138 CONFIG_H="$(CONFIG_H)" MACHMODE_H="$(MACHMODE_H)" \
1139 LIB1ASMSRC='$(LIB1ASMSRC)' \
1140 MAKEOVERRIDES= \
1141 -f libgcc.mk all
1142 $(STAMP) stmp-multilib
1143
1144# Compile two additional files that are linked with every program
1145# linked using GCC on systems using COFF or ELF, for the sake of C++
1146# constructors.
1147$(T)crtbegin.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
1148 gbl-ctors.h stmp-int-hdrs tsystem.h coretypes.h $(TM_H)
1149 $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS) \
1150 @inhibit_libc@ -c $(srcdir)/crtstuff.c -DCRT_BEGIN \
1151 -o $(T)crtbegin$(objext)
1152
1153$(T)crtend.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
1154 gbl-ctors.h stmp-int-hdrs tsystem.h coretypes.h $(TM_H)
1155 $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS) \
1156 @inhibit_libc@ -c $(srcdir)/crtstuff.c -DCRT_END \
1157 -o $(T)crtend$(objext)
1158
1159# These are versions of crtbegin and crtend for shared libraries.
1160$(T)crtbeginS.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
1161 gbl-ctors.h stmp-int-hdrs tsystem.h coretypes.h $(TM_H)
1162 $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS_S) \
1163 @inhibit_libc@ -c $(srcdir)/crtstuff.c -DCRT_BEGIN -DCRTSTUFFS_O \
1164 -o $(T)crtbeginS$(objext)
1165
1166$(T)crtendS.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
1167 gbl-ctors.h stmp-int-hdrs tsystem.h coretypes.h $(TM_H)
1168 $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS_S) \
1169 @inhibit_libc@ -c $(srcdir)/crtstuff.c -DCRT_END -DCRTSTUFFS_O \
1170 -o $(T)crtendS$(objext)
1171
1172# This is a version of crtbegin for -static links.
1173$(T)crtbeginT.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
1174 gbl-ctors.h stmp-int-hdrs tsystem.h coretypes.h $(TM_H)
1175 $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS) \
1176 @inhibit_libc@ -c $(srcdir)/crtstuff.c -DCRT_BEGIN -DCRTSTUFFT_O \
1177 -o $(T)crtbeginT$(objext)
1178
1179# Compile the start modules crt0.o and mcrt0.o that are linked with
1180# every program
1181crt0.o: s-crt0 ; @true
1182mcrt0.o: s-crt0; @true
1183
1184s-crt0: $(CRT0_S) $(MCRT0_S) $(GCC_PASSES) $(CONFIG_H)
1185 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(CRT0STUFF_T_CFLAGS) \
1186 -o crt0.o -c $(CRT0_S)
1187 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(CRT0STUFF_T_CFLAGS) \
1188 -o mcrt0.o -c $(MCRT0_S)
1189 $(STAMP) s-crt0
1190#\f
1191# Compiling object files from source files.
1192
1193# Note that dependencies on obstack.h are not written
1194# because that file is not part of GCC.
1195
1196# C language specific files.
1197
1198c-errors.o: c-errors.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1199 $(C_TREE_H) flags.h diagnostic.h $(TM_P_H)
1200c-parse.o : $(parsedir)/c-parse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1201 $(GGC_H) intl.h $(C_TREE_H) input.h flags.h toplev.h output.h $(CPPLIB_H) \
1202 varray.h gt-c-parse.h
1203 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1204 -c $(parsedir)/c-parse.c $(OUTPUT_OPTION)
1205
1206$(parsedir)/c-parse.c: $(parsedir)/c-parse.y
1207 cd $(parsedir) && \
1208 if $(BISON) $(BISONFLAGS) -o c-p$$$$.c c-parse.y; then \
1209 test -f c-p$$$$.output && mv -f c-p$$$$.output c-parse.output ; \
1210 mv -f c-p$$$$.c c-parse.c ; \
1211 else \
1212 rm -f c-p$$$$.* ; \
1213 false ; \
1214 fi
1215
1216$(parsedir)/c-parse.y: c-parse.in
1217 echo '/*WARNING: This file is automatically generated!*/' >tmp-c-parse.y
1218 sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
1219 -e "/^ifc$$/d" -e "/^end ifc$$/d" \
1220 $(srcdir)/c-parse.in >>tmp-c-parse.y
1221 $(SHELL) $(srcdir)/move-if-change tmp-c-parse.y $(parsedir)/c-parse.y
1222
1223c-incpath.o: c-incpath.c c-incpath.h $(CONFIG_H) $(SYSTEM_H) $(CPPLIB_H) \
1224 intl.h prefix.h coretypes.h $(TM_H) cppdefault.h
1225
1226c-decl.o : c-decl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(RTL_H) \
1227 $(C_TREE_H) $(GGC_H) $(TARGET_H) flags.h function.h output.h $(EXPR_H) \
1228 debug.h toplev.h intl.h $(TM_P_H) tree-inline.h $(TIMEVAR_H) c-pragma.h \
1229 gt-c-decl.h cgraph.h
1230c-typeck.o : c-typeck.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(C_TREE_H) \
1231 $(TARGET_H) flags.h intl.h output.h $(EXPR_H) $(RTL_H) toplev.h $(TM_P_H)
1232c-lang.o : c-lang.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(C_TREE_H) \
1233 $(GGC_H) langhooks.h $(LANGHOOKS_DEF_H) c-common.h gtype-c.h
1234c-lex.o : c-lex.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1235 $(RTL_H) debug.h $(C_TREE_H) c-common.h real.h c-incpath.h cppdefault.h \
1236 c-pragma.h input.h intl.h flags.h toplev.h output.h \
1237 mbchar.h $(CPPLIB_H) $(EXPR_H) $(TM_P_H)
1238c-ppoutput.o : c-ppoutput.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1239 c-common.h $(TREE_H) $(CPPLIB_H) cpphash.h $(TM_P_H) c-pragma.h
1240c-objc-common.o : c-objc-common.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1241 $(C_TREE_H) $(RTL_H) insn-config.h integrate.h $(EXPR_H) $(C_TREE_H) \
1242 flags.h toplev.h tree-inline.h diagnostic.h integrate.h $(VARRAY_H) \
1243 langhooks.h $(GGC_H) gt-c-objc-common.h $(TARGET_H) cgraph.h
1244c-aux-info.o : c-aux-info.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1245 $(C_TREE_H) flags.h toplev.h
1246c-convert.o : c-convert.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1247 flags.h toplev.h $(C_COMMON_H) real.h
1248c-pragma.o: c-pragma.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1249 function.h c-pragma.h toplev.h output.h $(GGC_H) $(TM_P_H) $(C_COMMON_H) gt-c-pragma.h
1250mbchar.o: mbchar.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) mbchar.h
1251graph.o: graph.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) toplev.h flags.h output.h \
1252 $(RTL_H) function.h hard-reg-set.h $(BASIC_BLOCK_H) graph.h
1253sbitmap.o: sbitmap.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
1254 hard-reg-set.h $(BASIC_BLOCK_H)
1255
1256COLLECT2_OBJS = collect2.o tlink.o intl.o version.o
1257COLLECT2_LIBS = @COLLECT2_LIBS@
1258collect2$(exeext): $(COLLECT2_OBJS) $(LIBDEPS)
1259# Don't try modifying collect2 (aka ld) in place--it might be linking this.
1260 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o T$@ \
1261 $(COLLECT2_OBJS) $(LIBS) $(COLLECT2_LIBS)
1262 mv -f T$@ $@
1263
1264collect2.o : collect2.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) gstab.h intl.h \
1265 $(OBSTACK_H) $(DEMANGLE_H) collect2.h version.h
1266 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1267 -DTARGET_MACHINE=\"$(target_alias)\" \
1268 -c $(srcdir)/collect2.c $(OUTPUT_OPTION)
1269
1270tlink.o: tlink.c $(DEMANGLE_H) $(HASHTAB_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1271 $(OBSTACK_H) collect2.h intl.h
1272
1273# A file used by all variants of C.
1274
1275c-common.o : c-common.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1276 $(OBSTACK_H) $(C_COMMON_H) flags.h toplev.h output.h c-pragma.h \
1277 $(GGC_H) $(EXPR_H) $(TM_P_H) builtin-types.def builtin-attrs.def \
1278 diagnostic.h gt-c-common.h langhooks.h varray.h $(RTL_H) $(TARGET_H)
1279c-pretty-print.o : c-pretty-print.c c-pretty-print.h pretty-print.h \
1280 $(C_COMMON_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) real.h
1281
1282c-opts.o : c-opts.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(C_COMMON_H) \
1283 c-pragma.h flags.h toplev.h langhooks.h tree-inline.h diagnostic.h \
1284 intl.h
1285
1286c-cppbuiltin.o : c-cppbuiltin.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1287 $(TREE_H) $(C_COMMON_H) c-pragma.h flags.h toplev.h langhooks.h \
1288 output.h except.h real.h $(TM_P_H)
1289
1290# A file used by all variants of C and some other languages.
1291
1292attribs.o : attribs.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) flags.h \
1293 toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) $(EXPR_H) $(TM_P_H) \
1294 builtin-types.def $(TARGET_H) langhooks.h
1295
1296c-format.o : c-format.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) langhooks.h \
1297 $(C_COMMON_H) flags.h toplev.h intl.h diagnostic.h
1298
1299c-semantics.o : c-semantics.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1300 $(C_TREE_H) flags.h toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) \
1301 $(EXPR_H) $(PREDICT_H)
1302
1303c-dump.o : c-dump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1304 $(C_TREE_H) tree-dump.h
1305
1306c-pch.o : c-pch.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(CPPLIB_H) $(TREE_H) \
1307 c-common.h output.h toplev.h c-pragma.h $(GGC_H) debug.h langhooks.h
1308
1309# Language-independent files.
1310
1311DRIVER_DEFINES = \
1312 -DSTANDARD_STARTFILE_PREFIX=\"$(unlibsubdir)/\" \
1313 -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc-lib/\" \
1314 -DDEFAULT_TARGET_VERSION=\"$(version)\" \
1315 -DDEFAULT_TARGET_MACHINE=\"$(target_alias)\" \
1316 -DSTANDARD_BINDIR_PREFIX=\"$(bindir)/\" \
1317 -DTOOLDIR_BASE_PREFIX=\"$(unlibsubdir)/../\" \
1318 @TARGET_SYSTEM_ROOT_DEFINE@ \
1319 $(VALGRIND_DRIVER_DEFINES) \
1320 `test "X$${SHLIB_LINK}" = "X" || test "@enable_shared@" != "yes" || echo "-DENABLE_SHARED_LIBGCC"` \
1321 `test "X$${SHLIB_MULTILIB}" = "X" || echo "-DNO_SHARED_LIBGCC_MULTILIB"`
1322
1323gcc.o: gcc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) intl.h multilib.h \
1324 Makefile $(lang_specs_files) specs.h prefix.h $(GCC_H)
1325 (SHLIB_LINK='$(SHLIB_LINK)' \
1326 SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
1327 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1328 $(DRIVER_DEFINES) \
1329 -c $(srcdir)/gcc.c $(OUTPUT_OPTION))
1330
1331gccspec.o: gccspec.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(GCC_H)
1332 (SHLIB_LINK='$(SHLIB_LINK)' \
1333 SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
1334 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1335 $(DRIVER_DEFINES) \
1336 -c $(srcdir)/gccspec.c $(OUTPUT_OPTION))
1337
1338cppspec.o: cppspec.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(GCC_H)
1339
1340tree-check.h: s-check ; @true
1341s-check : gencheck$(build_exeext) $(srcdir)/move-if-change
1342 $(RUN_GEN) ./gencheck$(build_exeext) > tmp-check.h
1343 $(SHELL) $(srcdir)/move-if-change tmp-check.h tree-check.h
1344 $(STAMP) s-check
1345
1346gencheck$(build_exeext) : gencheck.o $(BUILD_LIBDEPS)
1347 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
1348 gencheck.o $(BUILD_LIBS)
1349
1350gencheck.o : gencheck.c gencheck.h tree.def $(BCONFIG_H) $(SYSTEM_H) \
1351 coretypes.h $(GTM_H) $(lang_tree_files)
1352 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
1353 $(srcdir)/gencheck.c $(OUTPUT_OPTION)
1354
1355gencheck.h : s-gencheck ; @true
1356s-gencheck : Makefile
1357 ltf="$(lang_tree_files)"; for f in $$ltf; do \
1358 echo "#include \"$$f\""; \
1359 done | sed 's|$(srcdir)/||' > tmp-gencheck.h
1360 $(SHELL) $(srcdir)/move-if-change tmp-gencheck.h gencheck.h
1361 $(STAMP) s-gencheck
1362
1363options.h : s-options ; @true
1364s-options : Makefile
1365 lof="$(lang_options_files)"; for f in $$lof; do \
1366 echo "#include \"$$f\""; \
1367 done | sed 's|$(srcdir)/||' > tmp-options.h
1368 $(SHELL) $(srcdir)/move-if-change tmp-options.h options.h
1369 $(STAMP) s-options
1370
1371specs.h : s-specs ; @true
1372s-specs : Makefile
1373 lsf="$(lang_specs_files)"; for f in $$lsf; do \
1374 echo "#include \"$$f\""; \
1375 done | sed 's|$(srcdir)/||' > tmp-specs.h
1376 $(SHELL) $(srcdir)/move-if-change tmp-specs.h specs.h
1377 $(STAMP) s-specs
1378
1379dumpvers: dumpvers.c
1380
1381version.o: version.c version.h
1382
1383gtype-desc.o: gtype-desc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) varray.h \
1384 $(HASHTAB_H) $(TREE_H) $(RTL_H) function.h insn-config.h $(EXPR_H) $(OPTABS_H) \
1385 libfuncs.h debug.h $(GGC_H) bitmap.h $(BASIC_BLOCK_H) hard-reg-set.h \
1386 ssa.h cselib.h insn-addr.h
1387
1388ggc-common.o: ggc-common.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(GGC_H) \
1389 $(HASHTAB_H) toplev.h $(PARAMS_H)
1390
1391ggc-simple.o: ggc-simple.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1392 flags.h $(GGC_H) varray.h $(TIMEVAR_H) $(TM_P_H) $(PARAMS_H)
1393
1394ggc-page.o: ggc-page.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1395 flags.h toplev.h $(GGC_H) varray.h $(TIMEVAR_H) $(TM_P_H) $(PARAMS_H)
1396
1397stringpool.o: stringpool.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1398 $(TREE_H) $(GGC_H) gt-stringpool.h
1399
1400hashtable.o: hashtable.c hashtable.h $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(OBSTACK_H)
1401
1402line-map.o: line-map.c line-map.h intl.h $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H)
1403
1404ggc-none.o: ggc-none.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) $(GGC_H)
1405 $(CC) -c $(ALL_CFLAGS) -DGENERATOR_FILE $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
1406
1407prefix.o: prefix.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) Makefile prefix.h
1408 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1409 -DPREFIX=\"$(prefix)\" \
1410 -c $(srcdir)/prefix.c $(OUTPUT_OPTION)
1411
1412convert.o: convert.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) flags.h \
1413 convert.h toplev.h langhooks.h
1414
1415langhooks.o : langhooks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) toplev.h \
1416 tree-inline.h $(RTL_H) insn-config.h integrate.h langhooks.h \
1417 $(LANGHOOKS_DEF_H) flags.h
1418tree.o : tree.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) flags.h function.h \
1419 toplev.h $(GGC_H) $(HASHTAB_H) $(TARGET_H) output.h $(TM_P_H) langhooks.h \
1420 real.h gt-tree.h
1421tree-dump.o: tree-dump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1422 $(C_TREE_H) flags.h langhooks.h toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) \
1423 $(EXPR_H) $(SPLAY_TREE_H) tree-dump.h
1424tree-inline.o : tree-inline.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1425 $(RTL_H) expr.h flags.h params.h input.h insn-config.h $(INTEGRATE_H) \
1426 $(VARRAY_H) $(HASHTAB_H) $(SPLAY_TREE_H) toplev.h langhooks.h \
1427 $(C_COMMON_H) tree-inline.h cgraph.h
1428print-tree.o : print-tree.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1429 $(GGC_H) langhooks.h real.h
1430stor-layout.o : stor-layout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1431 flags.h function.h $(EXPR_H) $(RTL_H) toplev.h $(GGC_H) $(TM_P_H) $(TARGET_H) \
1432 langhooks.h
1433fold-const.o : fold-const.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1434 flags.h real.h toplev.h $(HASHTAB_H) $(EXPR_H) $(RTL_H) $(GGC_H) $(TM_P_H) langhooks.h
1435diagnostic.o : diagnostic.c diagnostic.h real.h diagnostic.def \
1436 $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(TM_P_H) flags.h $(GGC_H) \
1437 input.h toplev.h intl.h langhooks.h $(LANGHOOKS_DEF_H)
1438toplev.o : toplev.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(RTL_H) \
1439 function.h flags.h xcoffout.h input.h $(INSN_ATTR_H) output.h diagnostic.h \
1440 debug.h insn-config.h intl.h $(RECOG_H) Makefile toplev.h \
1441 dwarf2out.h sdbout.h dbxout.h $(EXPR_H) hard-reg-set.h $(BASIC_BLOCK_H) \
1442 graph.h $(LOOP_H) except.h $(REGS_H) $(TIMEVAR_H) $(lang_options_files) \
1443 ssa.h $(PARAMS_H) $(TM_P_H) reload.h dwarf2asm.h $(TARGET_H) \
1444 langhooks.h insn-flags.h options.h cfglayout.h real.h cfgloop.h \
1445 hosthooks.h $(LANGHOOKS_DEF_H) cgraph.h
1446 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1447 -DTARGET_NAME=\"$(target_alias)\" \
1448 -c $(srcdir)/toplev.c $(OUTPUT_OPTION)
1449main.o : main.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) toplev.h
1450
1451host-default.o : host-default.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
1452 hosthooks.h hosthooks-def.h
1453
1454rtl-error.o: rtl-error.c $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(INSN_ATTR_H) \
1455 insn-config.h input.h toplev.h intl.h diagnostic.h $(CONFIG_H)
1456
1457rtl.o : rtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) $(RTL_H) real.h \
1458 $(GGC_H) errors.h
1459 $(CC) -c $(ALL_CFLAGS) -DGENERATOR_FILE $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
1460
1461print-rtl.o : print-rtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1462 hard-reg-set.h $(BASIC_BLOCK_H) real.h
1463rtlanal.o : rtlanal.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) toplev.h $(RTL_H) \
1464 hard-reg-set.h $(TM_P_H) insn-config.h $(RECOG_H) real.h flags.h
1465
1466errors.o : errors.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) errors.h
1467 $(CC) -c $(ALL_CFLAGS) -DGENERATOR_FILE $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
1468
1469varasm.o : varasm.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(RTL_H) \
1470 flags.h function.h $(EXPR_H) hard-reg-set.h $(REGS_H) \
1471 output.h c-pragma.h toplev.h xcoffout.h debug.h $(GGC_H) $(TM_P_H) \
1472 $(HASHTAB_H) $(TARGET_H) langhooks.h gt-varasm.h real.h
1473function.o : function.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1474 flags.h function.h $(EXPR_H) libfuncs.h $(REGS_H) hard-reg-set.h \
1475 insn-config.h $(RECOG_H) output.h toplev.h except.h $(HASHTAB_H) $(GGC_H) \
1476 $(TM_P_H) langhooks.h gt-function.h
1477stmt.o : stmt.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) flags.h \
1478 function.h insn-config.h hard-reg-set.h $(EXPR_H) libfuncs.h except.h \
1479 $(LOOP_H) $(RECOG_H) toplev.h output.h varray.h $(GGC_H) $(TM_P_H) \
1480 langhooks.h $(PREDICT_H) gt-stmt.h $(OPTABS_H)
1481except.o : except.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1482 flags.h except.h function.h $(EXPR_H) libfuncs.h integrate.h langhooks.h \
1483 insn-config.h hard-reg-set.h $(BASIC_BLOCK_H) output.h \
1484 dwarf2asm.h dwarf2out.h toplev.h $(HASHTAB_H) intl.h $(GGC_H) \
1485 gt-except.h
1486expr.o : expr.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) flags.h \
1487 function.h $(REGS_H) $(EXPR_H) $(OPTABS_H) libfuncs.h insn-attr.h insn-config.h \
1488 $(RECOG_H) output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h \
1489 except.h reload.h $(GGC_H) langhooks.h intl.h $(TM_P_H) real.h
1490builtins.o : builtins.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H)\
1491 flags.h $(TARGET_H) function.h $(REGS_H) $(EXPR_H) $(OPTABS_H) insn-config.h \
1492 $(RECOG_H) output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h \
1493 except.h $(TM_P_H) $(PREDICT_H) libfuncs.h real.h langhooks.h
1494calls.o : calls.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) flags.h \
1495 $(EXPR_H) langhooks.h $(TARGET_H) \
1496 libfuncs.h $(REGS_H) toplev.h output.h function.h $(TIMEVAR_H) $(TM_P_H) cgraph.h
1497expmed.o : expmed.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1498 flags.h insn-config.h $(EXPR_H) $(OPTABS_H) $(RECOG_H) real.h \
1499 toplev.h $(TM_P_H) langhooks.h
1500explow.o : explow.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1501 flags.h hard-reg-set.h insn-config.h $(EXPR_H) $(OPTABS_H) $(RECOG_H) \
1502 toplev.h function.h ggc.h $(TM_P_H) gt-explow.h
1503optabs.o : optabs.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1504 flags.h insn-config.h $(EXPR_H) $(OPTABS_H) libfuncs.h $(RECOG_H) reload.h \
1505 toplev.h $(GGC_H) real.h $(TM_P_H) except.h gt-optabs.h $(BASIC_BLOCK_H)
1506dbxout.o : dbxout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(RTL_H) \
1507 flags.h $(REGS_H) debug.h $(TM_P_H) $(TARGET_H) function.h langhooks.h \
1508 insn-config.h reload.h gstab.h xcoffout.h output.h dbxout.h toplev.h \
1509 $(GGC_H) gt-dbxout.h
1510debug.o : debug.c debug.h $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H)
1511sdbout.o : sdbout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(RTL_H) \
1512 flags.h function.h $(EXPR_H) output.h hard-reg-set.h $(REGS_H) real.h \
1513 insn-config.h xcoffout.h c-pragma.h $(GGC_H) $(TARGET_H) \
1514 sdbout.h toplev.h $(TM_P_H) except.h debug.h langhooks.h gt-sdbout.h
1515dwarfout.o : dwarfout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1516 $(RTL_H) dwarf.h flags.h insn-config.h reload.h output.h toplev.h $(TM_P_H) \
1517 debug.h langhooks.h $(TARGET_H)
1518dwarf2out.o : dwarf2out.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1519 $(RTL_H) dwarf2.h debug.h flags.h insn-config.h reload.h output.h diagnostic.h real.h \
1520 hard-reg-set.h $(REGS_H) $(EXPR_H) libfuncs.h toplev.h dwarf2out.h varray.h \
1521 $(GGC_H) except.h dwarf2asm.h $(TM_P_H) langhooks.h $(HASHTAB_H) \
1522 gt-dwarf2out.h $(TARGET_H)
1523dwarf2asm.o : dwarf2asm.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) flags.h $(RTL_H) \
1524 $(TREE_H) output.h dwarf2asm.h $(TM_P_H) $(GGC_H) gt-dwarf2asm.h
1525vmsdbgout.o : vmsdbgout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1526 $(RTL_H) flags.h output.h vmsdbg.h debug.h langhooks.h function.h $(TARGET_H)
1527xcoffout.o : xcoffout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(RTL_H) \
1528 xcoffout.h flags.h toplev.h output.h dbxout.h $(GGC_H) $(TARGET_H)
1529emit-rtl.o : emit-rtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1530 flags.h function.h $(REGS_H) insn-config.h $(RECOG_H) real.h $(GGC_H) \
1531 $(EXPR_H) $(srcdir)/../include/obstack.h hard-reg-set.h bitmap.h toplev.h \
1532 $(HASHTAB_H) $(TM_P_H) debug.h langhooks.h
1533real.o : real.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) toplev.h $(TM_P_H)
1534integrate.o : integrate.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1535 flags.h debug.h $(INTEGRATE_H) insn-config.h $(EXPR_H) real.h $(REGS_H) \
1536 intl.h function.h output.h $(RECOG_H) except.h toplev.h $(LOOP_H) \
1537 $(PARAMS_H) $(TM_P_H) $(TARGET_H) langhooks.h gt-integrate.h
1538jump.o : jump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
1539 hard-reg-set.h $(REGS_H) insn-config.h $(RECOG_H) $(EXPR_H) real.h except.h function.h \
1540 toplev.h $(INSN_ATTR_H) $(TM_P_H) reload.h $(PREDICT_H) $(TIMEVAR_H)
1541
1542simplify-rtx.o : simplify-rtx.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1543 $(REGS_H) hard-reg-set.h flags.h real.h insn-config.h $(RECOG_H) $(EXPR_H) toplev.h \
1544 output.h function.h $(GGC_H) $(OBSTACK_H) $(TM_P_H) $(TREE_H) $(TARGET_H)
1545cgraph.o : cgraph.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1546 langhooks.h tree-inline.h toplev.h flags.h ggc.h $(TARGET_H) cgraph.h gt-cgraph.h
1547cgraphunit.o : cgraphunit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1548 langhooks.h tree-inline.h toplev.h flags.h ggc.h $(TARGET_H) cgraph.h
1549cselib.o : cselib.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) \
1550 hard-reg-set.h flags.h real.h insn-config.h $(RECOG_H) $(EXPR_H) toplev.h \
1551 output.h function.h cselib.h $(GGC_H) $(TM_P_H) gt-cselib.h
1552cse.o : cse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) \
1553 hard-reg-set.h flags.h real.h insn-config.h $(RECOG_H) $(EXPR_H) toplev.h \
1554 output.h function.h $(BASIC_BLOCK_H) $(GGC_H) $(TM_P_H) $(TIMEVAR_H) \
1555 except.h $(TARGET_H)
1556gcse.o : gcse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) \
1557 hard-reg-set.h flags.h real.h insn-config.h ggc.h $(RECOG_H) $(EXPR_H) \
1558 $(BASIC_BLOCK_H) function.h output.h toplev.h $(TM_P_H) $(PARAMS_H) except.h gt-gcse.h
1559sibcall.o : sibcall.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) \
1560 function.h hard-reg-set.h flags.h insn-config.h $(RECOG_H) $(BASIC_BLOCK_H)
1561resource.o : resource.c $(CONFIG_H) $(RTL_H) hard-reg-set.h $(SYSTEM_H) coretypes.h \
1562 $(TM_H) $(BASIC_BLOCK_H) $(REGS_H) flags.h output.h resource.h function.h toplev.h \
1563 $(INSN_ATTR_H) except.h $(PARAMS_H) $(TM_P_H)
1564lcm.o : lcm.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) \
1565 hard-reg-set.h flags.h real.h insn-config.h $(INSN_ATTR_H) $(RECOG_H) $(EXPR_H) \
1566 $(BASIC_BLOCK_H) $(TM_P_H) df.h function.h
1567ssa.o : ssa.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) varray.h \
1568 $(EXPR_H) hard-reg-set.h flags.h function.h real.h insn-config.h $(RECOG_H) \
1569 $(BASIC_BLOCK_H) output.h ssa.h
1570ssa-dce.o : ssa-dce.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) hard-reg-set.h \
1571 $(BASIC_BLOCK_H) ssa.h insn-config.h $(RECOG_H) output.h
1572ssa-ccp.o : ssa-ccp.c $(CONFIG_H) system.h coretypes.h $(TM_H) $(RTL_H) hard-reg-set.h \
1573 $(BASIC_BLOCK_H) ssa.h insn-config.h $(RECOG_H) output.h \
1574 errors.h $(GGC_H) df.h function.h
1575df.o : df.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1576 insn-config.h $(RECOG_H) function.h $(REGS_H) $(OBSTACK_H) hard-reg-set.h \
1577 $(BASIC_BLOCK_H) df.h $(FIBHEAP_H)
1578conflict.o : conflict.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(OBSTACK_H) \
1579 $(HASHTAB_H) $(RTL_H) hard-reg-set.h $(BASIC_BLOCK_H)
1580profile.o : profile.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1581 flags.h insn-config.h output.h $(REGS_H) $(EXPR_H) function.h \
1582 gcov-io.h gcov-iov.h toplev.h $(GGC_H) hard-reg-set.h $(BASIC_BLOCK_H) \
1583 $(TARGET_H) langhooks.h profile.h libfuncs.h gt-profile.h $(HASHTAB_H)
1584loop.o : loop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h $(LOOP_H) \
1585 insn-config.h $(REGS_H) hard-reg-set.h $(RECOG_H) $(EXPR_H) \
1586 real.h $(PREDICT_H) $(BASIC_BLOCK_H) function.h cfgloop.h \
1587 toplev.h varray.h except.h cselib.h $(OPTABS_H) $(TM_P_H)
1588doloop.o : doloop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
1589 $(LOOP_H) $(EXPR_H) hard-reg-set.h $(BASIC_BLOCK_H) $(TM_P_H) toplev.h \
1590 cfgloop.h
1591unroll.o : unroll.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) insn-config.h \
1592 function.h $(INTEGRATE_H) $(REGS_H) $(RECOG_H) flags.h $(EXPR_H) $(LOOP_H) toplev.h \
1593 hard-reg-set.h varray.h $(BASIC_BLOCK_H) $(TM_P_H) $(PREDICT_H) $(PARAMS_H) \
1594 cfgloop.h
1595alloc-pool.o : alloc-pool.c $(CONFIG_H) $(SYSTEM_H) alloc-pool.h
1596flow.o : flow.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1597 flags.h insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h \
1598 $(RECOG_H) function.h except.h $(EXPR_H) ssa.h $(GGC_H) $(TM_P_H)
1599cfg.o : cfg.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h insn-config.h \
1600 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h $(RECOG_H) \
1601 function.h except.h $(GGC_H) $(TM_P_H) alloc-pool.h
1602cfgrtl.o : cfgrtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
1603 insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h $(RECOG_H) \
1604 function.h except.h $(GGC_H) $(TM_P_H) insn-config.h
1605cfganal.o : cfganal.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1606 $(BASIC_BLOCK_H) hard-reg-set.h insn-config.h $(RECOG_H) $(GGC_H) $(TM_P_H)
1607cfgbuild.o : cfgbuild.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
1608 insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h $(RECOG_H) \
1609 function.h except.h $(GGC_H)
1610cfgcleanup.o : cfgcleanup.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1611 $(RTL_H) $(TIMEVAR_H) $(BASIC_BLOCK_H) hard-reg-set.h output.h flags.h \
1612 $(RECOG_H) toplev.h $(GGC_H) insn-config.h cselib.h $(TARGET_H) $(TM_P_H) \
1613 $(PARAMS_H)
1614cfgloop.o : cfgloop.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) coretypes.h $(TM_H) \
1615 $(BASIC_BLOCK_H) hard-reg-set.h cfgloop.h flags.h
1616cfgloopanal.o : cfgloopanal.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) \
1617 $(BASIC_BLOCK_H) hard-reg-set.h cfgloop.h $(EXPR_H) coretypes.h $(TM_H)
1618cfgloopmanip.o : cfgloopmanip.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) \
1619 $(BASIC_BLOCK_H) hard-reg-set.h cfgloop.h cfglayout.h output.h coretypes.h $(TM_H)
1620loop-init.o : loop-init.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) gcov-io.h \
1621 gcov-iov.h $(BASIC_BLOCK_H) hard-reg-set.h cfgloop.h cfglayout.h profile.h \
1622 coretypes.h $(TM_H)
1623loop-unswitch.o : loop-unswitch.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TM_H) \
1624 $(BASIC_BLOCK_H) hard-reg-set.h cfgloop.h cfglayout.h params.h \
1625 output.h $(EXPR_H) coretypes.h $(TM_H)
1626loop-unroll.o: loop-unroll.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TM_H) \
1627 $(BASIC_BLOCK_H) hard-reg-set.h cfgloop.h cfglayout.h params.h \
1628 output.h $(EXPR_H) coretypes.h $(TM_H)
1629dominance.o : dominance.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1630 hard-reg-set.h $(BASIC_BLOCK_H) et-forest.h
1631et-forest.o : et-forest.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) et-forest.h alloc-pool.h
1632combine.o : combine.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
1633 function.h insn-config.h $(INSN_ATTR_H) $(REGS_H) $(EXPR_H) \
1634 $(BASIC_BLOCK_H) $(RECOG_H) real.h hard-reg-set.h toplev.h $(TM_P_H)
1635regclass.o : regclass.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1636 hard-reg-set.h flags.h $(BASIC_BLOCK_H) $(REGS_H) insn-config.h $(RECOG_H) reload.h \
1637 real.h toplev.h function.h output.h $(GGC_H) $(TM_P_H) $(EXPR_H) $(TIMEVAR_H)
1638local-alloc.o : local-alloc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1639 flags.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h insn-config.h $(RECOG_H) \
1640 output.h function.h $(INSN_ATTR_H) toplev.h except.h $(TM_P_H)
1641bitmap.o : bitmap.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) $(RTL_H) flags.h \
1642 $(BASIC_BLOCK_H) $(REGS_H) $(GGC_H)
1643 $(CC) -c $(ALL_CFLAGS) -DGENERATOR_FILE $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
1644global.o : global.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
1645 reload.h function.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h insn-config.h output.h \
1646 toplev.h $(TM_P_H)
1647varray.o : varray.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) varray.h $(GGC_H) errors.h
1648ra.o : ra.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TM_P_H) insn-config.h \
1649 $(RECOG_H) integrate.h function.h $(REGS_H) $(OBSTACK_H) hard-reg-set.h \
1650 $(BASIC_BLOCK_H) df.h expr.h output.h toplev.h flags.h reload.h ra.h
1651ra-build.o : ra-build.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TM_P_H) \
1652 insn-config.h $(RECOG_H) function.h $(REGS_H) hard-reg-set.h \
1653 $(BASIC_BLOCK_H) df.h output.h ggc.h ra.h gt-ra-build.h reload.h
1654ra-colorize.o : ra-colorize.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1655 $(TM_P_H) function.h $(REGS_H) hard-reg-set.h $(BASIC_BLOCK_H) df.h output.h ra.h
1656ra-debug.o : ra-debug.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1657 insn-config.h $(RECOG_H) function.h hard-reg-set.h $(BASIC_BLOCK_H) df.h output.h \
1658 ra.h $(TM_P_H)
1659ra-rewrite.o : ra-rewrite.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1660 $(TM_P_H) function.h $(REGS_H) hard-reg-set.h $(BASIC_BLOCK_H) df.h expr.h \
1661 output.h except.h ra.h reload.h insn-config.h
1662reload.o : reload.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h output.h \
1663 $(EXPR_H) $(OPTABS_H) reload.h $(RECOG_H) hard-reg-set.h insn-config.h \
1664 $(REGS_H) function.h real.h toplev.h $(TM_P_H)
1665reload1.o : reload1.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) real.h flags.h \
1666 $(EXPR_H) $(OPTABS_H) reload.h $(REGS_H) hard-reg-set.h insn-config.h \
1667 $(BASIC_BLOCK_H) $(RECOG_H) output.h function.h toplev.h cselib.h $(TM_P_H) \
1668 except.h $(TREE_H)
1669caller-save.o : caller-save.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1670 flags.h $(REGS_H) hard-reg-set.h insn-config.h $(BASIC_BLOCK_H) function.h \
1671 $(RECOG_H) reload.h $(EXPR_H) toplev.h $(TM_P_H)
1672reorg.o : reorg.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) conditions.h \
1673 hard-reg-set.h $(BASIC_BLOCK_H) $(REGS_H) insn-config.h $(INSN_ATTR_H) except.h \
1674 $(RECOG_H) function.h flags.h output.h $(EXPR_H) toplev.h $(PARAMS_H) $(TM_P_H)
1675alias.o : alias.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
1676 hard-reg-set.h $(BASIC_BLOCK_H) $(REGS_H) toplev.h output.h $(EXPR_H) \
1677 $(GGC_H) function.h cselib.h $(TREE_H) $(TM_P_H) langhooks.h $(TARGET_H) \
1678 gt-alias.h $(TIMEVAR_H) cgraph.h
1679regmove.o : regmove.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) insn-config.h \
1680 $(RECOG_H) output.h $(REGS_H) hard-reg-set.h flags.h function.h \
1681 $(EXPR_H) $(BASIC_BLOCK_H) toplev.h $(TM_P_H) except.h reload.h
1682haifa-sched.o : haifa-sched.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1683 sched-int.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h flags.h insn-config.h function.h \
1684 $(INSN_ATTR_H) toplev.h $(RECOG_H) except.h $(TM_P_H) $(TARGET_H)
1685sched-deps.o : sched-deps.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1686 sched-int.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h flags.h insn-config.h function.h \
1687 $(INSN_ATTR_H) toplev.h $(RECOG_H) except.h cselib.h $(PARAMS_H) $(TM_P_H)
1688sched-rgn.o : sched-rgn.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1689 sched-int.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h flags.h insn-config.h function.h \
1690 $(INSN_ATTR_H) toplev.h $(RECOG_H) except.h $(TM_P_H) $(TARGET_H)
1691sched-ebb.o : sched-ebb.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1692 sched-int.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h flags.h insn-config.h function.h \
1693 $(INSN_ATTR_H) toplev.h $(RECOG_H) except.h $(TM_P_H) $(PARAMS_H) profile.h
1694sched-vis.o : sched-vis.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1695 sched-int.h hard-reg-set.h $(BASIC_BLOCK_H) $(INSN_ATTR_H) $(REGS_H) $(TM_P_H) \
1696 $(TARGET_H) real.h
1697final.o : final.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1698 flags.h intl.h $(REGS_H) $(RECOG_H) conditions.h insn-config.h $(INSN_ATTR_H) \
1699 function.h real.h output.h hard-reg-set.h except.h debug.h xcoffout.h \
1700 toplev.h reload.h dwarf2out.h $(BASIC_BLOCK_H) $(TM_P_H) $(TARGET_H) \
1701 $(EXPR_H)
1702recog.o : recog.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) function.h \
1703 $(BASIC_BLOCK_H) $(REGS_H) $(RECOG_H) $(EXPR_H) hard-reg-set.h flags.h insn-config.h \
1704 $(INSN_ATTR_H) real.h toplev.h output.h reload.h $(TM_P_H)
1705reg-stack.o : reg-stack.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1706 $(RECOG_H) $(REGS_H) hard-reg-set.h flags.h insn-config.h toplev.h reload.h \
1707 varray.h function.h $(TM_P_H) $(GGC_H) gt-reg-stack.h
1708sreal.o: sreal.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) sreal.h
1709predict.o: predict.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1710 flags.h insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h \
1711 $(RECOG_H) function.h except.h $(EXPR_H) $(TM_P_H) $(PREDICT_H) sreal.h \
1712 $(PARAMS_H) $(TARGET_H) cfgloop.h
1713lists.o: lists.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) toplev.h $(RTL_H) $(GGC_H)
1714bb-reorder.o : bb-reorder.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1715 $(RTL_H) $(BASIC_BLOCK_H) flags.h output.h cfglayout.h $(FIBHEAP_H) \
1716 $(TARGET_H)
1717tracer.o : tracer.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1718 $(BASIC_BLOCK_H) hard-reg-set.h output.h cfglayout.h flags.h \
1719 $(PARAMS_H) profile.h
1720cfglayout.o : cfglayout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1721 $(RTL_H) $(TREE_H) insn-config.h $(BASIC_BLOCK_H) hard-reg-set.h output.h \
1722 function.h cfglayout.h cfgloop.h $(TARGET_H)
1723timevar.o : timevar.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TIMEVAR_H) flags.h \
1724 intl.h toplev.h
1725regrename.o : regrename.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1726 insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h $(RECOG_H) function.h \
1727 resource.h $(OBSTACK_H) flags.h $(TM_P_H)
1728ifcvt.o : ifcvt.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) toplev.h \
1729 flags.h insn-config.h function.h $(RECOG_H) $(BASIC_BLOCK_H) $(EXPR_H) \
1730 output.h except.h $(TM_P_H) real.h
1731params.o : params.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(PARAMS_H) toplev.h
1732hooks.o: hooks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(HOOKS_H)
1733
1734$(out_object_file): $(out_file) $(CONFIG_H) coretypes.h $(TM_H) $(TREE_H) $(GGC_H) \
1735 $(RTL_H) $(REGS_H) hard-reg-set.h real.h insn-config.h conditions.h \
1736 output.h $(INSN_ATTR_H) $(SYSTEM_H) toplev.h $(TARGET_H) libfuncs.h \
1737 $(TARGET_DEF_H) function.h sched-int.h $(TM_P_H) $(EXPR_H) $(OPTABS_H) \
1738 langhooks.h
1739 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1740 $(out_file) $(OUTPUT_OPTION)
1741
1742# Build auxiliary files that support ecoff format.
1743mips-tfile: mips-tfile.o version.o $(LIBDEPS)
1744 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ mips-tfile.o version.o $(LIBS)
1745
1746mips-tfile.o : mips-tfile.c $(CONFIG_H) $(RTL_H) $(SYSTEM_H) coretypes.h $(TM_H) version.h
1747
1748mips-tdump: mips-tdump.o version.o $(LIBDEPS)
1749 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ mips-tdump.o version.o $(LIBS)
1750
1751mips-tdump.o : mips-tdump.c $(CONFIG_H) $(RTL_H) $(SYSTEM_H) coretypes.h $(TM_H)
1752
1753#\f
1754# Generate header and source files from the machine description,
1755# and compile them.
1756
1757.PRECIOUS: insn-config.h insn-flags.h insn-codes.h insn-constants.h \
1758 insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
1759 insn-attr.h insn-attrtab.c
1760
1761# The following pair of rules has this effect:
1762# genconfig is run only if the md has changed since genconfig was last run;
1763# but the file insn-config.h is touched only when its contents actually change.
1764
1765# Each of the other insn-* files is handled by a similar pair of rules.
1766
1767# This causes an anomaly in the results of make -n
1768# because insn-* is older than s-*
1769# and thus make -n thinks that insn-* will be updated
1770# and force recompilation of things that depend on it.
1771# We use move-if-change precisely to avoid such recompilation.
1772# But there is no way to teach make -n that it will be avoided.
1773
1774# Each of the insn-*.[ch] rules has a semicolon at the end,
1775# for otherwise the system Make on SunOS 4.1 never tries
1776# to recompile insn-*.o. To avoid problems and extra noise from
1777# versions of make which don't like empty commands (nothing after the
1778# trailing `;'), we call true for each.
1779
1780insn-config.h: s-config ; @true
1781s-config : $(md_file) genconfig$(build_exeext) $(srcdir)/move-if-change
1782 $(RUN_GEN) ./genconfig$(build_exeext) $(md_file) > tmp-config.h
1783 $(SHELL) $(srcdir)/move-if-change tmp-config.h insn-config.h
1784 $(STAMP) s-config
1785
1786insn-conditions.c: s-conditions ; @true
1787s-conditions : $(md_file) genconditions$(build_exeext) $(srcdir)/move-if-change
1788 $(RUN_GEN) ./genconditions$(build_exeext) $(md_file) > tmp-conditions.c
1789 $(SHELL) $(srcdir)/move-if-change tmp-conditions.c insn-conditions.c
1790 $(STAMP) s-conditions
1791
1792insn-conditions.o : insn-conditions.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
1793 $(GTM_H) $(RTL_H) $(TM_P_H) $(REGS_H) function.h $(RECOG_H) real.h output.h \
1794 flags.h hard-reg-set.h resource.h toplev.h reload.h gensupport.h \
1795 insn-constants.h
1796 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) insn-conditions.c
1797
1798dummy-conditions.o : dummy-conditions.c $(BCONFIG_H) $(SYSTEM_H) \
1799 coretypes.h $(GTM_H) gensupport.h
1800 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
1801 $(srcdir)/dummy-conditions.c $(OUTPUT_OPTION)
1802
1803insn-flags.h: s-flags ; @true
1804s-flags : $(md_file) genflags$(build_exeext) $(srcdir)/move-if-change
1805 $(RUN_GEN) ./genflags$(build_exeext) $(md_file) > tmp-flags.h
1806 $(SHELL) $(srcdir)/move-if-change tmp-flags.h insn-flags.h
1807 $(STAMP) s-flags
1808
1809insn-codes.h: s-codes ; @true
1810s-codes : $(md_file) gencodes$(build_exeext) $(srcdir)/move-if-change
1811 $(RUN_GEN) ./gencodes$(build_exeext) $(md_file) > tmp-codes.h
1812 $(SHELL) $(srcdir)/move-if-change tmp-codes.h insn-codes.h
1813 $(STAMP) s-codes
1814
1815insn-constants.h: s-constants ; @true
1816s-constants : $(md_file) genconstants$(build_exeext) $(srcdir)/move-if-change
1817 $(RUN_GEN) ./genconstants$(build_exeext) $(md_file) > tmp-constants.h
1818 $(SHELL) $(srcdir)/move-if-change tmp-constants.h insn-constants.h
1819 $(STAMP) s-constants
1820
1821insn-emit.o : insn-emit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1822 $(RTL_H) $(EXPR_H) real.h output.h insn-config.h $(OPTABS_H) reload.h \
1823 $(RECOG_H) toplev.h function.h flags.h hard-reg-set.h resource.h $(TM_P_H)
1824 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-emit.c \
1825 $(OUTPUT_OPTION)
1826
1827insn-emit.c: s-emit ; @true
1828s-emit : $(md_file) genemit$(build_exeext) $(srcdir)/move-if-change
1829 $(RUN_GEN) ./genemit$(build_exeext) $(md_file) > tmp-emit.c
1830 $(SHELL) $(srcdir)/move-if-change tmp-emit.c insn-emit.c
1831 $(STAMP) s-emit
1832
1833insn-recog.o : insn-recog.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1834 $(RTL_H) insn-config.h $(RECOG_H) real.h output.h flags.h function.h \
1835 hard-reg-set.h resource.h $(TM_P_H) toplev.h reload.h
1836 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-recog.c \
1837 $(OUTPUT_OPTION)
1838
1839insn-recog.c: s-recog ; @true
1840s-recog : $(md_file) genrecog$(build_exeext) $(srcdir)/move-if-change
1841 $(RUN_GEN) ./genrecog$(build_exeext) $(md_file) > tmp-recog.c
1842 $(SHELL) $(srcdir)/move-if-change tmp-recog.c insn-recog.c
1843 $(STAMP) s-recog
1844
1845insn-opinit.o : insn-opinit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1846 $(RTL_H) insn-config.h flags.h $(RECOG_H) $(EXPR_H) $(OPTABS_H) reload.h
1847 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-opinit.c \
1848 $(OUTPUT_OPTION)
1849
1850insn-opinit.c: s-opinit ; @true
1851s-opinit : $(md_file) genopinit$(build_exeext) $(srcdir)/move-if-change
1852 $(RUN_GEN) ./genopinit$(build_exeext) $(md_file) > tmp-opinit.c
1853 $(SHELL) $(srcdir)/move-if-change tmp-opinit.c insn-opinit.c
1854 $(STAMP) s-opinit
1855
1856insn-extract.o : insn-extract.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1857 $(RTL_H) toplev.h insn-config.h $(RECOG_H)
1858 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-extract.c \
1859 $(OUTPUT_OPTION)
1860
1861insn-extract.c: s-extract ; @true
1862s-extract : $(md_file) genextract$(build_exeext) $(srcdir)/move-if-change
1863 $(RUN_GEN) ./genextract$(build_exeext) $(md_file) > tmp-extract.c
1864 $(SHELL) $(srcdir)/move-if-change tmp-extract.c insn-extract.c
1865 $(STAMP) s-extract
1866
1867insn-peep.o : insn-peep.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1868 $(RTL_H) $(REGS_H) output.h real.h insn-config.h $(RECOG_H) except.h \
1869 function.h $(TM_P_H)
1870 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-peep.c \
1871 $(OUTPUT_OPTION)
1872
1873insn-peep.c: s-peep ; @true
1874s-peep : $(md_file) genpeep$(build_exeext) $(srcdir)/move-if-change
1875 $(RUN_GEN) ./genpeep$(build_exeext) $(md_file) > tmp-peep.c
1876 $(SHELL) $(srcdir)/move-if-change tmp-peep.c insn-peep.c
1877 $(STAMP) s-peep
1878
1879insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1880 $(RTL_H) $(REGS_H) real.h output.h $(INSN_ATTR_H) insn-config.h toplev.h \
1881 $(RECOG_H) $(TM_P_H) flags.h
1882 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-attrtab.c \
1883 $(OUTPUT_OPTION)
1884
1885insn-attr.h: s-attr ; @true
1886s-attr : $(md_file) genattr$(build_exeext) $(srcdir)/move-if-change
1887 $(RUN_GEN) ./genattr$(build_exeext) $(md_file) > tmp-attr.h
1888 $(SHELL) $(srcdir)/move-if-change tmp-attr.h insn-attr.h
1889 $(STAMP) s-attr
1890
1891insn-attrtab.c: s-attrtab ; @true
1892s-attrtab : $(md_file) genattrtab$(build_exeext) $(srcdir)/move-if-change
1893 $(RUN_GEN) ./genattrtab$(build_exeext) $(md_file) > tmp-attrtab.c
1894 $(SHELL) $(srcdir)/move-if-change tmp-attrtab.c insn-attrtab.c
1895 $(STAMP) s-attrtab
1896
1897insn-output.o : insn-output.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1898 $(RTL_H) $(GGC_H) $(REGS_H) real.h conditions.h hard-reg-set.h \
1899 insn-config.h $(INSN_ATTR_H) $(EXPR_H) output.h $(RECOG_H) function.h \
1900 toplev.h flags.h insn-codes.h $(TM_P_H) $(TARGET_H)
1901 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c \
1902 $(OUTPUT_OPTION)
1903
1904insn-output.c: s-output ; @true
1905s-output : $(md_file) genoutput$(build_exeext) $(srcdir)/move-if-change
1906 $(RUN_GEN) ./genoutput$(build_exeext) $(md_file) > tmp-output.c
1907 $(SHELL) $(srcdir)/move-if-change tmp-output.c insn-output.c
1908 $(STAMP) s-output
1909
1910genrtl.o : genrtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1911 $(GGC_H)
1912genrtl.c genrtl.h : s-genrtl
1913 @true # force gnu make to recheck modification times.
1914
1915s-genrtl: gengenrtl$(build_exeext) $(srcdir)/move-if-change $(RTL_BASE_H)
1916 $(RUN_GEN) ./gengenrtl$(build_exeext) -h > tmp-genrtl.h
1917 $(SHELL) $(srcdir)/move-if-change tmp-genrtl.h genrtl.h
1918 $(RUN_GEN) ./gengenrtl$(build_exeext) > tmp-genrtl.c
1919 $(SHELL) $(srcdir)/move-if-change tmp-genrtl.c genrtl.c
1920 $(STAMP) s-genrtl
1921
1922tm-preds.h: s-preds; @true
1923
1924s-preds: genpreds$(build_exeext) $(srcdir)/move-if-change
1925 $(RUN_GEN) ./genpreds$(build_exeext) > tmp-preds.h
1926 $(SHELL) $(srcdir)/move-if-change tmp-preds.h tm-preds.h
1927 $(STAMP) s-preds
1928
1929GTFILES = $(srcdir)/location.h $(srcdir)/coretypes.h $(srcdir)/cpplib.h \
1930 $(host_xm_file_list) $(tm_file_list) $(HASHTAB_H) $(SPLAY_TREE_H) \
1931 $(srcdir)/bitmap.h $(srcdir)/function.h $(srcdir)/rtl.h $(srcdir)/optabs.h \
1932 $(srcdir)/tree.h $(srcdir)/libfuncs.h $(srcdir)/hashtable.h $(srcdir)/real.h \
1933 $(srcdir)/varray.h $(srcdir)/ssa.h $(srcdir)/insn-addr.h $(srcdir)/cselib.h \
1934 $(srcdir)/basic-block.h $(srcdir)/location.h \
1935 $(srcdir)/c-common.h $(srcdir)/c-tree.h \
1936 $(srcdir)/alias.c $(srcdir)/bitmap.c $(srcdir)/cselib.c $(srcdir)/cgraph.c \
1937 $(srcdir)/dbxout.c $(srcdir)/dwarf2out.c $(srcdir)/dwarf2asm.c \
1938 $(srcdir)/emit-rtl.c $(srcdir)/except.c $(srcdir)/explow.c $(srcdir)/expr.c \
1939 $(srcdir)/fold-const.c $(srcdir)/function.c \
1940 $(srcdir)/gcse.c $(srcdir)/integrate.c $(srcdir)/lists.c $(srcdir)/optabs.c \
1941 $(srcdir)/profile.c $(srcdir)/ra-build.c $(srcdir)/regclass.c \
1942 $(srcdir)/reg-stack.c \
1943 $(srcdir)/sdbout.c $(srcdir)/stmt.c $(srcdir)/stor-layout.c \
1944 $(srcdir)/stringpool.c $(srcdir)/tree.c $(srcdir)/varasm.c \
1945 $(out_file) \
1946 @all_gtfiles@
1947
1948GTFILES_FILES_LANGS = @all_gtfiles_files_langs@
1949GTFILES_FILES_FILES = @all_gtfiles_files_files@
1950GTFILES_LANG_DIR_NAMES = @subdirs@
1951GTFILES_SRCDIR = @srcdir@
1952
1953gt-cgraph.h gtype-desc.h gtype-desc.c gt-except.h gt-function.h : s-gtype; @true
1954gt-integrate.h gt-stmt.h gt-tree.h gt-varasm.h gt-emit-rtl.h : s-gtype; @true
1955gt-explow.h gt-stor-layout.h gt-regclass.h gt-lists.h : s-gtype; @true
1956gt-alias.h gt-cselib.h gt-fold-const.h gt-gcse.h gt-profile.h : s-gtype; @true
1957gt-expr.h gt-sdbout.h gt-optabs.h gt-bitmap.h gt-dwarf2out.h : s-gtype ; @true
1958gt-ra-build.h gt-reg-stack.h gt-dwarf2asm.h gt-dbxout.h : s-gtype ; @true
1959gt-c-common.h gt-c-decl.h gt-c-parse.h gt-c-pragma.h : s-gtype; @true
1960gt-c-objc-common.h gtype-c.h gt-location.h gt-stringpool.h : s-gtype ; @true
1961
1962gtyp-gen.h: Makefile
1963 echo "/* This file is machine generated. Do not edit. */" > tmp-gtyp.h
1964 echo "static const char *const srcdir = " >> tmp-gtyp.h
1965 echo "\"$(GTFILES_SRCDIR)\"" >> tmp-gtyp.h
1966 echo ";" >> tmp-gtyp.h
1967 echo "static const char *const lang_files[] = {" >> tmp-gtyp.h
1968 ll="$(GTFILES_FILES_FILES)"; \
1969 for f in $$ll; do \
1970 echo "\"$$f\", "; done >> tmp-gtyp.h
1971 echo "NULL};" >> tmp-gtyp.h
1972 echo "static const char *const langs_for_lang_files[] = {" >> tmp-gtyp.h
1973 ff="$(GTFILES_FILES_LANGS)"; \
1974 for f in $$ff; do \
1975 echo "\"$$f\", " ; done >> tmp-gtyp.h
1976 echo "NULL};" >> tmp-gtyp.h
1977 echo "static const char *const all_files[] = {" >> tmp-gtyp.h
1978 gf="$(GTFILES)"; \
1979 for f in $$gf; do \
1980 echo "\"$$f\", "; done >> tmp-gtyp.h
1981 echo " NULL};" >> tmp-gtyp.h
1982 echo "static const char *const lang_dir_names[] = { \"c\", " >> tmp-gtyp.h
1983 gf="$(GTFILES_LANG_DIR_NAMES)"; \
1984 for l in $$gf; do \
1985 echo "\"$$l\", "; done >> tmp-gtyp.h
1986 echo "NULL};" >> tmp-gtyp.h
1987 $(SHELL) $(srcdir)/move-if-change tmp-gtyp.h gtyp-gen.h
1988
1989s-gtype: gengtype$(build_exeext) $(GTFILES)
1990 $(RUN_GEN) ./gengtype
1991 $(STAMP) s-gtype
1992
1993#\f
1994# Compile the programs that generate insn-* from the machine description.
1995# They are compiled with $(BUILD_CC), and associated libraries,
1996# since they need to run on this machine
1997# even if GCC is being compiled to run on some other machine.
1998
1999# $(CONFIG_H) is omitted from the deps of the gen*.o
2000# because these programs don't really depend on anything
2001# about the target machine. They do depend on config.h itself,
2002# since that describes the host machine.
2003
2004read-rtl.o: read-rtl.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) $(RTL_H) \
2005 $(OBSTACK_H) $(HASHTAB_H)
2006 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/read-rtl.c $(OUTPUT_OPTION)
2007
2008gensupport.o: gensupport.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) $(RTL_H) \
2009 $(OBSTACK_H) errors.h $(HASHTAB_H) gensupport.h
2010 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gensupport.c $(OUTPUT_OPTION)
2011
2012genconfig$(build_exeext) : genconfig.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2013 $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2014 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2015 genconfig.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2016 $(BUILD_ERRORS) $(BUILD_LIBS)
2017
2018genconfig.o : genconfig.c $(RTL_H) $(BCONFIG_H) \
2019 $(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
2020 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genconfig.c $(OUTPUT_OPTION)
2021
2022genflags$(build_exeext) : genflags.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2023 $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2024 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2025 genflags.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2026 $(BUILD_ERRORS) $(BUILD_LIBS)
2027
2028genflags.o : genflags.c $(RTL_H) $(OBSTACK_H) $(BCONFIG_H) \
2029 $(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
2030 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genflags.c $(OUTPUT_OPTION)
2031
2032gencodes$(build_exeext) : gencodes.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2033 $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2034 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2035 gencodes.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2036 $(BUILD_ERRORS) $(BUILD_LIBS)
2037
2038gencodes.o : gencodes.c $(RTL_H) $(BCONFIG_H) \
2039 $(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
2040 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gencodes.c $(OUTPUT_OPTION)
2041
2042genconstants$(build_exeext) : genconstants.o $(BUILD_RTL) $(BUILD_EARLY_SUPPORT) \
2043 $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2044 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2045 genconstants.o $(BUILD_EARLY_SUPPORT) $(BUILD_RTL) \
2046 $(BUILD_ERRORS) $(BUILD_LIBS)
2047
2048genconstants.o : genconstants.c $(RTL_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) \
2049 errors.h
2050 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genconstants.c $(OUTPUT_OPTION)
2051
2052genemit$(build_exeext) : genemit.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2053 $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2054 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2055 genemit.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2056 $(BUILD_ERRORS) $(BUILD_LIBS)
2057
2058genemit.o : genemit.c $(RTL_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) \
2059 errors.h gensupport.h
2060 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genemit.c $(OUTPUT_OPTION)
2061
2062genopinit$(build_exeext) : genopinit.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2063 $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2064 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2065 genopinit.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2066 $(BUILD_ERRORS) $(BUILD_LIBS)
2067
2068genopinit.o : genopinit.c $(RTL_H) $(BCONFIG_H) \
2069 $(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
2070 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genopinit.c $(OUTPUT_OPTION)
2071
2072genrecog$(build_exeext) : genrecog.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2073 $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2074 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2075 genrecog.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2076 $(BUILD_ERRORS) $(BUILD_LIBS)
2077
2078genrecog.o : genrecog.c $(RTL_H) $(BCONFIG_H) \
2079 $(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
2080 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genrecog.c $(OUTPUT_OPTION)
2081
2082genextract$(build_exeext) : genextract.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2083 $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2084 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2085 genextract.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2086 $(BUILD_ERRORS) $(BUILD_LIBS)
2087
2088genextract.o : genextract.c $(RTL_H) $(BCONFIG_H) \
2089 $(SYSTEM_H) coretypes.h $(GTM_H) insn-config.h errors.h gensupport.h
2090 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genextract.c $(OUTPUT_OPTION)
2091
2092genpeep$(build_exeext) : genpeep.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2093 $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2094 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2095 genpeep.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2096 $(BUILD_ERRORS) $(BUILD_LIBS)
2097
2098genpeep.o : genpeep.c $(RTL_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) \
2099 errors.h gensupport.h
2100 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genpeep.c $(OUTPUT_OPTION)
2101
2102genattr$(build_exeext) : genattr.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2103 $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2104 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2105 genattr.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2106 $(BUILD_ERRORS) $(BUILD_LIBS)
2107
2108genattr.o : genattr.c $(RTL_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) errors.h \
2109 gensupport.h
2110 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genattr.c $(OUTPUT_OPTION)
2111
2112genattrtab$(build_exeext) : genattrtab.o genautomata.o \
2113 $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_VARRAY) \
2114 $(BUILD_LIBDEPS)
2115 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2116 genattrtab.o genautomata.o \
2117 $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) $(BUILD_ERRORS) \
2118 $(BUILD_VARRAY) $(BUILD_LIBS) -lm
2119
2120genattrtab.o : genattrtab.c $(RTL_H) $(OBSTACK_H) $(BCONFIG_H) \
2121 $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(GGC_H) gensupport.h genattrtab.h
2122 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genattrtab.c $(OUTPUT_OPTION)
2123
2124genautomata.o : genautomata.c $(RTL_H) $(OBSTACK_H) $(BCONFIG_H) \
2125 $(SYSTEM_H) coretypes.h $(GTM_H) errors.h varray.h genattrtab.h $(HASHTAB_H)
2126 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genautomata.c $(OUTPUT_OPTION)
2127
2128genoutput$(build_exeext) : genoutput.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2129 $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2130 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2131 genoutput.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2132 $(BUILD_ERRORS) $(BUILD_LIBS)
2133
2134genoutput.o : genoutput.c $(RTL_H) $(BCONFIG_H) \
2135 $(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
2136 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genoutput.c $(OUTPUT_OPTION)
2137
2138gengenrtl$(build_exeext) : gengenrtl.o $(BUILD_LIBDEPS)
2139 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2140 gengenrtl.o $(BUILD_LIBS)
2141
2142gengenrtl.o : gengenrtl.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
2143 $(GTM_H) real.h
2144 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gengenrtl.c $(OUTPUT_OPTION)
2145
2146genpreds$(build_exeext) : genpreds.o $(BUILD_LIBDEPS)
2147 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2148 genpreds.o $(BUILD_LIBS)
2149
2150genpreds.o : genpreds.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H)
2151 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genpreds.c $(OUTPUT_OPTION)
2152
2153gengtype$(build_exeext) : gengtype.o gengtype-lex.o gengtype-yacc.o \
2154 $(BUILD_LIBDEPS)
2155 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2156 gengtype.o gengtype-lex.o gengtype-yacc.o $(BUILD_LIBS)
2157
2158gengtype.o : gengtype.c gengtype.h $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) \
2159 real.h rtl.def gtyp-gen.h
2160 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
2161 $(srcdir)/gengtype.c $(OUTPUT_OPTION)
2162
2163gengtype-lex.o : $(parsedir)/gengtype-lex.c gengtype.h $(parsedir)/gengtype-yacc.c \
2164 $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H)
2165 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
2166 $(parsedir)/gengtype-lex.c $(OUTPUT_OPTION)
2167
2168gengtype-yacc.o : $(parsedir)/gengtype-yacc.c gengtype.h $(BCONFIG_H) $(SYSTEM_H) \
2169 coretypes.h $(GTM_H)
2170 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
2171 $(parsedir)/gengtype-yacc.c $(OUTPUT_OPTION)
2172
2173# The sed command works around a bug in flex-2.5.4.
2174$(parsedir)/gengtype-lex.c : $(srcdir)/gengtype-lex.l
2175 $(FLEX) $(FLEXFLAGS) -t -o- $(srcdir)/gengtype-lex.l | \
2176 sed 's/^\(char msg\[\];\)/yyconst \1/' > g-$$$$ ; \
2177 if test $$? -eq 0 ; then \
2178 mv -f g-$$$$ $(parsedir)/gengtype-lex.c ; \
2179 else \
2180 rm -f g-$$$$ ; \
2181 false ; \
2182 fi
2183
2184$(parsedir)/gengtype-yacc.c: $(srcdir)/gengtype-yacc.y
2185 if $(BISON) $(BISONFLAGS) -d -o g-yacc.$$$$.c $(srcdir)/gengtype-yacc.y; then \
2186 mv -f g-yacc.$$$$.h $(parsedir)/gengtype-yacc.h; \
2187 mv -f g-yacc.$$$$.c $(parsedir)/gengtype-yacc.c; \
2188 else \
2189 rm -f g-yacc.$$$$.*; \
2190 false; \
2191 fi
2192
2193genconditions$(build_exeext) : genconditions.o $(BUILD_EARLY_SUPPORT) \
2194 $(BUILD_RTL) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2195 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2196 genconditions.o $(BUILD_EARLY_SUPPORT) $(BUILD_RTL) \
2197 $(BUILD_ERRORS) $(BUILD_LIBS)
2198
2199genconditions.o : genconditions.c $(RTL_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
2200 $(GTM_H) errors.h
2201 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
2202 $(srcdir)/genconditions.c $(OUTPUT_OPTION)
2203
2204#\f
2205# Compile the libraries to be used by gen*.
2206# If we are not cross-building, gen* use the same .o's that cc1 will use,
2207# and BUILD_PREFIX_1 is `loser-', just to ensure these rules don't conflict
2208# with the rules for rtl.o, etc.
2209$(BUILD_PREFIX_1)rtl.o: $(srcdir)/rtl.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) $(RTL_H) \
2210 real.h $(GGC_H) errors.h
2211 rm -f $(BUILD_PREFIX)rtl.c
2212 sed -e 's/config[.]h/bconfig.h/' $(srcdir)/rtl.c > $(BUILD_PREFIX)rtl.c
2213 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)rtl.c $(OUTPUT_OPTION)
2214
2215print-rtl1.o: $(srcdir)/print-rtl.c $(BCONFIG_H) coretypes.h $(GTM_H) \
2216 $(RTL_H) $(TREE_H) hard-reg-set.h $(BASIC_BLOCK_H)
2217 rm -f print-rtl1.c
2218 sed -e 's/config[.]h/bconfig.h/' $(srcdir)/print-rtl.c > print-rtl1.c
2219 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) print-rtl1.c $(OUTPUT_OPTION)
2220
2221$(BUILD_PREFIX_1)bitmap.o: $(srcdir)/bitmap.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) \
2222 $(RTL_H) flags.h $(BASIC_BLOCK_H) $(REGS_H) $(GGC_H)
2223 rm -f $(BUILD_PREFIX)bitmap.c
2224 sed -e 's/config[.]h/bconfig.h/' $(srcdir)/bitmap.c > $(BUILD_PREFIX)bitmap.c
2225 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)bitmap.c $(OUTPUT_OPTION)
2226
2227$(BUILD_PREFIX_1)errors.o: errors.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) errors.h
2228 rm -f $(BUILD_PREFIX)errors.c
2229 sed -e 's/config[.]h/bconfig.h/' $(srcdir)/errors.c > $(BUILD_PREFIX)errors.c
2230 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)errors.c $(OUTPUT_OPTION)
2231
2232$(BUILD_PREFIX_1)varray.o: varray.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) varray.h \
2233 $(RTL_H) $(GGC_H) $(TREE_H) bitmap.h errors.h
2234 rm -f $(BUILD_PREFIX)varray.c
2235 sed -e 's/config[.]h/bconfig.h/' $(srcdir)/varray.c > \
2236 $(BUILD_PREFIX)varray.c
2237 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
2238 $(BUILD_PREFIX)varray.c $(OUTPUT_OPTION)
2239
2240$(BUILD_PREFIX_1)ggc-none.o: ggc-none.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) $(GGC_H)
2241 rm -f $(BUILD_PREFIX)ggc-none.c
2242 sed -e 's/config[.]h/bconfig.h/' $(srcdir)/ggc-none.c > $(BUILD_PREFIX)ggc-none.c
2243 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)ggc-none.c $(OUTPUT_OPTION)
2244
2245#\f
2246# Remake internationalization support.
2247intl.o: intl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) intl.h Makefile
2248 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2249 -DLOCALEDIR=\"$(localedir)\" \
2250 -c $(srcdir)/intl.c $(OUTPUT_OPTION)
2251
2252$(top_builddir)/intl/libintl.a: intl.all
2253
2254intl.all intl.install intl.uninstall \
2255 intl.mostlyclean intl.clean intl.distclean intl.maintainer-clean:
2256 @for d in $(INTL_SUBDIRS); do \
2257 target=`expr $@ : 'intl.\(.*\)'` && \
2258 echo "(cd $$d && $(MAKE) $$target)" && \
2259 (cd $$d && AWK='$(AWK)' $(MAKE) $(SUBDIR_FLAGS_TO_PASS) $$target); \
2260 if [ $$? -eq 0 ] ; then true ; else exit 1 ; fi ; \
2261 done
2262
2263# intl.all and intl.install need config.h to exist, and the files it includes.
2264# (FIXME: intl/*.c shouldn't need to see insn-foo.h!)
2265intl.all intl.install: config.h insn-flags.h insn-constants.h
2266
2267# Make-lang.in should add dependencies of po-generated on any generated
2268# files which need to be scanned by gettext (usually Yacc-generated parsers).
2269po-generated: $(parsedir)/c-parse.c
2270
2271#\f
2272# Remake cpp and protoize.
2273
2274PREPROCESSOR_DEFINES = \
2275 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
2276 -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \
2277 -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/$(target_alias)\" \
2278 -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/backward\" \
2279 -DLOCAL_INCLUDE_DIR=\"$(local_includedir)\" \
2280 -DCROSS_INCLUDE_DIR=\"$(CROSS_SYSTEM_HEADER_DIR)\" \
2281 -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\" \
2282 @TARGET_SYSTEM_ROOT_DEFINE@
2283
2284LIBCPP_OBJS = cpplib.o cpplex.o cppmacro.o cppexp.o cppfiles.o cpptrad.o \
2285 cpphash.o cpperror.o cppinit.o \
2286 hashtable.o line-map.o mkdeps.o prefix.o mbchar.o cpppch.o
2287
2288LIBCPP_DEPS = $(CPPLIB_H) cpphash.h line-map.h hashtable.h intl.h \
2289 $(OBSTACK_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H)
2290
2291# Most of the other archives built/used by this makefile are for
2292# targets. This one is strictly for the host.
2293libcpp.a: $(LIBCPP_OBJS)
2294 -rm -rf libcpp.a
2295 $(AR) $(AR_FLAGS) libcpp.a $(LIBCPP_OBJS)
2296 -$(RANLIB) libcpp.a
2297
2298cpperror.o: cpperror.c $(LIBCPP_DEPS)
2299cppexp.o: cppexp.c $(LIBCPP_DEPS)
2300cpplex.o: cpplex.c $(LIBCPP_DEPS) mbchar.h
2301cppmacro.o: cppmacro.c $(LIBCPP_DEPS)
2302cpplib.o: cpplib.c $(LIBCPP_DEPS)
2303cpphash.o: cpphash.c $(LIBCPP_DEPS)
2304cpptrad.o: cpptrad.c $(LIBCPP_DEPS)
2305cppfiles.o: cppfiles.c $(LIBCPP_DEPS) $(SPLAY_TREE_H) mkdeps.h
2306cppinit.o: cppinit.c $(LIBCPP_DEPS) mkdeps.h prefix.h
2307cpppch.o: cpppch.c $(LIBCPP_DEPS) mkdeps.h
2308
2309cppdefault.o: cppdefault.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2310 cppdefault.h Makefile
2311 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2312 $(PREPROCESSOR_DEFINES) \
2313 -c $(srcdir)/cppdefault.c $(OUTPUT_OPTION)
2314
2315mkdeps.o: mkdeps.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) mkdeps.h
2316
2317# Note for the stamp targets, we run the program `true' instead of
2318# having an empty command (nothing following the semicolon).
2319
2320proto: config.status protoize$(exeext) unprotoize$(exeext) SYSCALLS.c.X
2321
2322PROTO_OBJS = intl.o version.o cppdefault.o
2323
2324protoize$(exeext): protoize.o $(PROTO_OBJS) $(LIBDEPS)
2325 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ protoize.o $(PROTO_OBJS) $(LIBS)
2326
2327unprotoize$(exeext): unprotoize.o $(PROTO_OBJS) $(LIBDEPS)
2328 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ unprotoize.o $(PROTO_OBJS) $(LIBS)
2329
2330protoize.o: protoize.c $(srcdir)/../include/getopt.h $(CONFIG_H) $(SYSTEM_H) \
2331 coretypes.h $(TM_H) Makefile version.h
2332 (SHLIB_LINK='$(SHLIB_LINK)' \
2333 SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
2334 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2335 $(DRIVER_DEFINES) \
2336 $(srcdir)/protoize.c $(OUTPUT_OPTION))
2337
2338unprotoize.o: protoize.c $(srcdir)/../include/getopt.h \
2339 $(CONFIG_H) $(SYSTEM_H) Makefile version.h
2340 (SHLIB_LINK='$(SHLIB_LINK)' \
2341 SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
2342 $(CC) -c -DUNPROTOIZE $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2343 $(DRIVER_DEFINES) \
2344 $(srcdir)/protoize.c $(OUTPUT_OPTION))
2345
2346# This info describes the target machine, so compile with GCC just built.
2347SYSCALLS.c.X: $(srcdir)/sys-types.h $(srcdir)/sys-protos.h $(GCC_PASSES) \
2348 stmp-int-hdrs
2349 -rm -f SYSCALLS.c tmp-SYSCALLS.s
2350 sed -e s/TARGET_GETGROUPS_T/$(TARGET_GETGROUPS_T)/ \
2351 $(srcdir)/sys-types.h $(srcdir)/sys-protos.h > SYSCALLS.c
2352 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2353 -aux-info $@ -S -o tmp-SYSCALLS.s SYSCALLS.c
2354 -rm -f SYSCALLS.c tmp-SYSCALLS.s
2355
2356
2357test-protoize-simple: ./protoize ./unprotoize $(GCC_PASSES)
2358 -rm -f tmp-proto.[cso]
2359 cp $(srcdir)/protoize.c tmp-proto.c
2360 chmod u+w tmp-proto.c
2361 ./protoize -N -B ./ -x getopt.h -c "-B./ -Wall -Wwrite-strings \
2362 $(GCC_CFLAGS) $(INCLUDES) \
2363 -DGCC_INCLUDE_DIR=0 \
2364 -DGPLUSPLUS_INCLUDE_DIR=0 \
2365 -DCROSS_INCLUDE_DIR=0 \
2366 -DTOOL_INCLUDE_DIR=0 \
2367 -DSTANDARD_EXEC_PREFIX=0 \
2368 -DDEFAULT_TARGET_MACHINE=0 \
2369 -DDEFAULT_TARGET_VERSION=0" tmp-proto.c
2370 @echo '**********' Expect 400 lines of differences.
2371 -diff $(srcdir)/protoize.c tmp-proto.c > tmp-proto.diff
2372 -wc -l tmp-proto.diff
2373 ./unprotoize -N -x getopt.h -c "-B./ -Wall -Wwrite-strings \
2374 $(GCC_CFLAGS) $(INCLUDES) \
2375 -DGCC_INCLUDE_DIR=0 \
2376 -DGPLUSPLUS_INCLUDE_DIR=0 \
2377 -DCROSS_INCLUDE_DIR=0 \
2378 -DTOOL_INCLUDE_DIR=0 \
2379 -DSTANDARD_EXEC_PREFIX=0 \
2380 -DDEFAULT_TARGET_MACHINE=0 \
2381 -DDEFAULT_TARGET_VERSION=0" tmp-proto.c
2382 @echo Expect zero differences.
2383 diff $(srcdir)/protoize.c tmp-proto.c | cat
2384 -rm -f tmp-proto.[cs] tmp-proto$(objext)
2385
2386# gcov-iov.c is run on the build machine to generate gcov-iov.h from version.c
2387gcov-iov.o: gcov-iov.c version.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) coretypes.h $(TM_H)
2388 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gcov-iov.c $(OUTPUT_OPTION)
2389gcov-iov$(build_exeext): gcov-iov.o
2390 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) gcov-iov.o -o $@
2391gcov-iov.h: gcov-iov$(build_exeext)
2392 ./gcov-iov$(build_exeext) > $@
2393
2394gcov.o: gcov.c gcov-io.h gcov-iov.h intl.h $(SYSTEM_H) coretypes.h $(TM_H) $(CONFIG_H)
2395gcov-dump.o: gcov-dump.c gcov-io.h gcov-iov.h $(SYSTEM_H) coretypes.h $(TM_H) $(CONFIG_H)
2396
2397# Only one of 'gcov' or 'gcov.exe' is actually built, depending
2398# upon whether $(exeext) is empty or not.
2399GCOV_OBJS = gcov.o intl.o version.o
2400gcov$(exeext): $(GCOV_OBJS) $(LIBDEPS)
2401 $(CC) $(ALL_CFLAGS) $(LDFLAGS) $(GCOV_OBJS) $(LIBS) -o $@
2402GCOV_DUMP_OBJS = gcov-dump.o version.o
2403gcov-dump$(exeext): $(GCOV_DUMP_OBJS) $(LIBDEPS)
2404 $(CC) $(ALL_CFLAGS) $(LDFLAGS) $(GCOV_DUMP_OBJS) $(LIBS) -o $@
2405#\f
2406# Build the include directory. The stamp files are stmp-* rather than
2407# s-* so that mostlyclean does not force the include directory to
2408# be rebuilt.
2409
2410# Build the include directory
2411stmp-int-hdrs: $(STMP_FIXINC) $(USER_H) xlimits.h
2412# Copy in the headers provided with gcc.
2413# The sed command gets just the last file name component;
2414# this is necessary because VPATH could add a dirname.
2415# Using basename would be simpler, but some systems don't have it.
2416# The touch command is here to workaround an AIX/Linux NFS bug.
2417 -if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
2418 for file in .. $(USER_H); do \
2419 if [ X$$file != X.. ]; then \
2420 realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
2421 $(STAMP) include/$$realfile; \
2422 rm -f include/$$realfile; \
2423 cp $$file include; \
2424 chmod a+r include/$$realfile; \
2425 fi; \
2426 done
2427 rm -f include/limits.h
2428 cp xlimits.h include/limits.h
2429 chmod a+r include/limits.h
2430# Install the README
2431 rm -f include/README
2432 cp $(srcdir)/README-fixinc include/README
2433 chmod a+r include/README
2434 $(STAMP) $@
2435
2436# fixinc.sh depends on this, not on specs directly.
2437# The idea is to make sure specs gets built, but not rerun fixinc.sh
2438# after each stage just because specs' mtime has changed.
2439specs.ready: specs
2440 -if [ -f specs.ready ] ; then \
2441 true; \
2442 else \
2443 $(STAMP) specs.ready; \
2444 fi
2445
2446FIXINCSRCDIR=$(srcdir)/fixinc
2447fixinc.sh: $(FIXINCSRCDIR)/mkfixinc.sh $(FIXINCSRCDIR)/fixincl.c \
2448 $(FIXINCSRCDIR)/procopen.c $(FIXINCSRCDIR)/gnu-regex.c \
2449 $(FIXINCSRCDIR)/server.c $(FIXINCSRCDIR)/gnu-regex.h \
2450 $(FIXINCSRCDIR)/server.h $(FIXINCSRCDIR)/inclhack.def specs.ready
2451 (MAKE="$(MAKE)"; srcdir=`cd $(srcdir)/fixinc && ${PWD}` ; \
2452 CC="$(BUILD_CC)"; CFLAGS="$(BUILD_CFLAGS)"; LDFLAGS="$(BUILD_LDFLAGS)"; \
2453 WARN_CFLAGS="$(WARN_CFLAGS)"; \
2454 export MAKE srcdir CC CFLAGS LDFLAGS WARN_CFLAGS; cd ./fixinc && \
2455 $(SHELL) $${srcdir}/mkfixinc.sh $(build_canonical) $(target))
2456
2457.PHONY: install-gcc-tooldir
2458install-gcc-tooldir:
2459 $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(gcc_tooldir)
2460
2461# Build fixed copies of system files.
2462stmp-fixinc: fixinc.sh gsyslimits.h
2463 @if test ! -d ${SYSTEM_HEADER_DIR}; then \
2464 echo The directory that should contain system headers does not exist: >&2 ; \
2465 echo " ${SYSTEM_HEADER_DIR}" >&2 ; \
2466 if test "x${SYSTEM_HEADER_DIR}" = "x${gcc_tooldir}/sys-include"; \
2467 then sleep 1; else exit 1; fi; \
2468 fi
2469 rm -rf include; mkdir include
2470 -chmod a+rx include
2471 (TARGET_MACHINE='$(target)'; srcdir=`cd $(srcdir); ${PWD}`; \
2472 SHELL='$(SHELL)' ;\
2473 export TARGET_MACHINE srcdir SHELL ; \
2474 $(SHELL) ./fixinc.sh `${PWD}`/include $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS); \
2475 rm -f include/syslimits.h; \
2476 if [ -f include/limits.h ]; then \
2477 mv include/limits.h include/syslimits.h; \
2478 else \
2479 cp $(srcdir)/gsyslimits.h include/syslimits.h; \
2480 fi; \
2481 chmod a+r include/syslimits.h)
2482 $(STAMP) stmp-fixinc
2483
2484# Files related to the fixproto script.
2485# gen-protos and fix-header are compiled with BUILD_CC, but they are only
2486# used in native and host-x-target builds, so it's safe to link them with
2487# libiberty.a.
2488
2489deduced.h: $(GCC_PASSES) $(srcdir)/scan-types.sh stmp-int-hdrs
2490 if [ -d "$(SYSTEM_HEADER_DIR)" ]; \
2491 then \
2492 CC="$(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -I. -I$(srcdir) -isystem include -isystem ${SYSTEM_HEADER_DIR}"; \
2493 export CC; \
2494 $(SHELL) $(srcdir)/scan-types.sh "$(srcdir)" >tmp-deduced.h; \
2495 mv tmp-deduced.h deduced.h; \
2496 else \
2497 $(STAMP) deduced.h; \
2498 fi
2499
2500GEN_PROTOS_OBJS = gen-protos.o scan.o
2501gen-protos$(build_exeext): $(GEN_PROTOS_OBJS)
2502 ${BUILD_CC} $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2503 $(GEN_PROTOS_OBJS) $(BUILD_LIBS)
2504
2505gen-protos.o: gen-protos.c scan.h $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H)
2506 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gen-protos.c $(OUTPUT_OPTION)
2507
2508scan.o: scan.c scan.h $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H)
2509 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/scan.c $(OUTPUT_OPTION)
2510
2511xsys-protos.h: $(GCC_PASSES) $(srcdir)/sys-protos.h deduced.h gen-protos$(build_exeext) Makefile
2512 sed -e s/TARGET_GETGROUPS_T/$(TARGET_GETGROUPS_T)/ \
2513 deduced.h $(srcdir)/sys-protos.h > tmp-fixtmp.c
2514 mv tmp-fixtmp.c fixtmp.c
2515 $(GCC_FOR_TARGET) fixtmp.c -w -U__SIZE_TYPE__ -U__PTRDIFF_TYPE__ -U__WCHAR_TYPE__ -E \
2516 | sed -e 's/ / /g' -e 's/ *(/ (/g' -e 's/ [ ]*/ /g' -e 's/( )/()/' \
2517 | $(RUN_GEN) ./gen-protos >xsys-protos.hT
2518 mv xsys-protos.hT xsys-protos.h
2519 rm -rf fixtmp.c
2520
2521# This is nominally a 'build' program, but it's run only when host==build,
2522# so we can (indeed, must) use $(LIBDEPS) and $(LIBS).
2523fix-header$(build_exeext): fix-header.o scan-decls.o scan.o xsys-protos.h \
2524 c-incpath.o cppdefault.o $(LIBDEPS) libcpp.a
2525 $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ fix-header.o \
2526 c-incpath.o cppdefault.o scan-decls.o scan.o libcpp.a $(LIBS)
2527
2528fix-header.o: fix-header.c $(OBSTACK_H) scan.h \
2529 xsys-protos.h $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) $(CPPLIB_H)
2530 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/fix-header.c $(OUTPUT_OPTION)
2531
2532scan-decls.o: scan-decls.c scan.h $(CPPLIB_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H)
2533 $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/scan-decls.c $(OUTPUT_OPTION)
2534
2535# stmp-fixproto depends on this, not on fix-header directly.
2536# The idea is to make sure fix-header gets built,
2537# but not rerun fixproto after each stage
2538# just because fix-header's mtime has changed.
2539fixhdr.ready: fix-header$(build_exeext)
2540 -if [ -f fixhdr.ready ] ; then \
2541 true; \
2542 else \
2543 $(STAMP) fixhdr.ready; \
2544 fi
2545
2546# stmp-int-headers is to make sure fixincludes has already finished.
2547# The if statement is so that we don't run fixproto a second time
2548# if it has already been run on the files in `include'.
2549stmp-fixproto: fixhdr.ready fixproto stmp-int-hdrs
2550 if [ -f include/fixed ] ; then true; \
2551 else \
2552 : This line works around a 'make' bug in BSDI 1.1.; \
2553 FIXPROTO_DEFINES="$(FIXPROTO_DEFINES)"; export FIXPROTO_DEFINES; \
2554 mkinstalldirs="$(SHELL) $(srcdir)/mkinstalldirs"; \
2555 export mkinstalldirs; \
2556 if [ -d "$(SYSTEM_HEADER_DIR)" ]; then \
2557 $(SHELL) ${srcdir}/fixproto include include $(SYSTEM_HEADER_DIR); \
2558 if [ $$? -eq 0 ] ; then true ; else exit 1 ; fi ; \
2559 else true; fi; \
2560 $(STAMP) include/fixed; \
2561 fi
2562 $(STAMP) stmp-fixproto
2563#\f
2564# Remake the info files.
2565
2566docdir = $(srcdir)/doc
2567
2568doc: $(BUILD_INFO) $(GENERATED_MANPAGES) gccbug
2569info: $(docobjdir)/cpp.info $(docobjdir)/gcc.info $(docobjdir)/gccint.info $(docobjdir)/gccinstall.info lang.info $(docobjdir)/cppinternals.info
2570
2571TEXI_CPP_FILES = $(docdir)/cpp.texi $(docdir)/include/fdl.texi \
2572 $(docdir)/cppenv.texi $(docdir)/cppopts.texi
2573
2574TEXI_GCC_FILES = $(docdir)/gcc.texi $(docdir)/include/gcc-common.texi \
2575 $(docdir)/frontends.texi $(docdir)/standards.texi \
2576 $(docdir)/invoke.texi $(docdir)/extend.texi $(docdir)/md.texi \
2577 $(docdir)/objc.texi $(docdir)/gcov.texi $(docdir)/trouble.texi \
2578 $(docdir)/bugreport.texi $(docdir)/service.texi \
2579 $(docdir)/contribute.texi $(docdir)/vms.texi $(docdir)/compat.texi \
2580 $(docdir)/include/funding.texi $(docdir)/gnu.texi \
2581 $(docdir)/include/gpl.texi $(docdir)/include/fdl.texi \
2582 $(docdir)/contrib.texi $(docdir)/cppenv.texi $(docdir)/cppopts.texi
2583
2584TEXI_GCCINT_FILES = $(docdir)/gccint.texi \
2585 $(docdir)/include/gcc-common.texi $(docdir)/contribute.texi \
2586 $(docdir)/makefile.texi $(docdir)/configterms.texi \
2587 $(docdir)/portability.texi $(docdir)/interface.texi \
2588 $(docdir)/passes.texi $(docdir)/c-tree.texi \
2589 $(docdir)/rtl.texi $(docdir)/md.texi $(docdir)/tm.texi \
2590 $(docdir)/hostconfig.texi $(docdir)/fragments.texi \
2591 $(docdir)/configfiles.texi $(docdir)/collect2.texi \
2592 $(docdir)/headerdirs.texi $(docdir)/include/funding.texi \
2593 $(docdir)/gnu.texi $(docdir)/include/gpl.texi \
2594 $(docdir)/include/fdl.texi $(docdir)/contrib.texi \
2595 $(docdir)/languages.texi $(docdir)/sourcebuild.texi \
2596 $(docdir)/gty.texi
2597
2598TEXI_GCCINSTALL_FILES = $(docdir)/install.texi $(docdir)/install-old.texi \
2599 $(docdir)/include/fdl.texi
2600
2601TEXI_CPPINT_FILES = $(docdir)/cppinternals.texi
2602
2603$(docobjdir)/cpp.info: $(TEXI_CPP_FILES)
2604 $(MAKEINFO) $(MAKEINFOFLAGS) -I $(docdir) -I $(docdir)/include \
2605 -o $@ $(docdir)/cpp.texi
2606
2607$(docobjdir)/gcc.info: $(TEXI_GCC_FILES)
2608 $(MAKEINFO) $(MAKEINFOFLAGS) -I $(docdir) -I $(docdir)/include \
2609 -o $@ $(docdir)/gcc.texi
2610
2611$(docobjdir)/gccint.info: $(TEXI_GCCINT_FILES)
2612 $(MAKEINFO) $(MAKEINFOFLAGS) -I $(docdir) -I $(docdir)/include \
2613 -o $@ $(docdir)/gccint.texi
2614
2615$(docobjdir)/gccinstall.info: $(TEXI_GCCINSTALL_FILES)
2616 $(MAKEINFO) $(MAKEINFOFLAGS) -I $(docdir) -I $(docdir)/include \
2617 -o $@ $(docdir)/install.texi
2618
2619$(docobjdir)/cppinternals.info: $(TEXI_CPPINT_FILES)
2620 $(MAKEINFO) $(MAKEINFOFLAGS) -I $(docdir) -I $(docdir)/include \
2621 -o $@ $(docdir)/cppinternals.texi
2622
2623dvi: gcc.dvi gccint.dvi gccinstall.dvi cpp.dvi lang.dvi cppinternals.dvi
2624
2625# This works with GNU Make's default rule.
2626cpp.dvi: $(TEXI_CPP_FILES)
2627 $(TEXI2DVI) -I $(docdir) -I $(docdir)/include $(docdir)/cpp.texi
2628
2629gcc.dvi: $(TEXI_GCC_FILES)
2630 $(TEXI2DVI) -I $(docdir) -I $(docdir)/include $(docdir)/gcc.texi
2631
2632gccint.dvi: $(TEXI_GCCINT_FILES)
2633 $(TEXI2DVI) -I $(docdir) -I $(docdir)/include $(docdir)/gccint.texi
2634
2635gccinstall.dvi: $(TEXI_GCCINSTALL_FILES)
2636 s=`cd $(srcdir); ${PWD}`; export s; \
2637 $(TEXI2DVI) -I $$s/doc -I $$s/doc/include -o $@ $$s/doc/install.texi
2638
2639cppinternals.dvi: $(TEXI_CPPINT_FILES)
2640 $(TEXI2DVI) -I $(docdir) -I $(docdir)/include $(docdir)/cppinternals.texi
2641
2642generated-manpages: $(docobjdir)/gcov.1 $(docobjdir)/cpp.1 $(docobjdir)/gcc.1 \
2643 $(docobjdir)/gfdl.7 $(docobjdir)/gpl.7 $(docobjdir)/fsf-funding.7 \
2644 lang.generated-manpages
2645
2646$(docobjdir)/gcov.1: $(docdir)/gcov.texi
2647 $(STAMP) $(docobjdir)/gcov.1
2648 -$(TEXI2POD) $(docdir)/gcov.texi > gcov.pod
2649 -($(POD2MAN) --section=1 gcov.pod > $(docobjdir)/gcov.1.T$$$$ && \
2650 mv -f $(docobjdir)/gcov.1.T$$$$ $(docobjdir)/gcov.1) || \
2651 (rm -f $(docobjdir)/gcov.1.T$$$$ && exit 1)
2652 -rm -f gcov.pod
2653
2654$(docobjdir)/cpp.1: $(docdir)/cpp.texi $(docdir)/cppenv.texi \
2655 $(docdir)/cppopts.texi
2656 $(STAMP) $(docobjdir)/cpp.1
2657 -$(TEXI2POD) $(docdir)/cpp.texi > cpp.pod
2658 -($(POD2MAN) --section=1 cpp.pod > $(docobjdir)/cpp.1.T$$$$ && \
2659 mv -f $(docobjdir)/cpp.1.T$$$$ $(docobjdir)/cpp.1) || \
2660 (rm -f $(docobjdir)/cpp.1.T$$$$ && exit 1)
2661 -rm -f cpp.pod
2662
2663$(docobjdir)/gcc.1: $(docdir)/invoke.texi $(docdir)/cppenv.texi \
2664 $(docdir)/cppopts.texi
2665 $(STAMP) $(docobjdir)/gcc.1
2666 -$(TEXI2POD) $(docdir)/invoke.texi > gcc.pod
2667 -($(POD2MAN) --section=1 gcc.pod > $(docobjdir)/gcc.1.T$$$$ && \
2668 mv -f $(docobjdir)/gcc.1.T$$$$ $(docobjdir)/gcc.1) || \
2669 (rm -f $(docobjdir)/gcc.1.T$$$$ && exit 1)
2670 -rm -f gcc.pod
2671
2672$(docobjdir)/gfdl.7: $(docdir)/include/fdl.texi
2673 $(STAMP) $(docobjdir)/gfdl.7
2674 -$(TEXI2POD) $(docdir)/include/fdl.texi > gfdl.pod
2675 -($(POD2MAN) --section=7 gfdl.pod > $(docobjdir)/gfdl.7.T$$$$ && \
2676 mv -f $(docobjdir)/gfdl.7.T$$$$ $(docobjdir)/gfdl.7) || \
2677 (rm -f $(docobjdir)/gfdl.7.T$$$$ && exit 1)
2678 -rm -f gfdl.pod
2679
2680$(docobjdir)/gpl.7: $(docdir)/include/gpl.texi
2681 $(STAMP) $(docobjdir)/gpl.7
2682 -$(TEXI2POD) $(docdir)/include/gpl.texi > gpl.pod
2683 -($(POD2MAN) --section=7 gpl.pod > $(docobjdir)/gpl.7.T$$$$ && \
2684 mv -f $(docobjdir)/gpl.7.T$$$$ $(docobjdir)/gpl.7) || \
2685 (rm -f $(docobjdir)/gpl.7.T$$$$ && exit 1)
2686 -rm -f gpl.pod
2687
2688$(docobjdir)/fsf-funding.7: $(docdir)/include/funding.texi
2689 $(STAMP) $(docobjdir)/fsf-funding.7
2690 -$(TEXI2POD) $(docdir)/include/funding.texi > fsf-funding.pod
2691 -($(POD2MAN) --section=7 fsf-funding.pod \
2692 > $(docobjdir)/fsf-funding.7.T$$$$ && \
2693 mv -f $(docobjdir)/fsf-funding.7.T$$$$ $(docobjdir)/fsf-funding.7) || \
2694 (rm -f $(docobjdir)/fsf-funding.7.T$$$$ && exit 1)
2695 -rm -f fsf-funding.pod
2696
2697#\f
2698# Deletion of files made during compilation.
2699# There are four levels of this:
2700# `mostlyclean', `clean', `distclean' and `maintainer-clean'.
2701# `mostlyclean' is useful while working on a particular type of machine.
2702# It deletes most, but not all, of the files made by compilation.
2703# It does not delete libgcc.a or its parts, so it won't have to be recompiled.
2704# `clean' deletes everything made by running `make all'.
2705# `distclean' also deletes the files made by config.
2706# `maintainer-clean' also deletes everything that could be regenerated
2707# automatically, except for `configure'.
2708# We remove as much from the language subdirectories as we can
2709# (less duplicated code).
2710
2711INTL_MOSTLYCLEAN = intl.mostlyclean
2712mostlyclean: $(INTL_MOSTLYCLEAN) lang.mostlyclean
2713 -rm -f $(STAGESTUFF)
2714 -rm -f *$(coverageexts)
2715 -rm -rf libgcc
2716# Delete the temporary source copies for cross compilation.
2717 -rm -f $(BUILD_PREFIX_1)rtl.c $(BUILD_PREFIX_1)print-rtl.c
2718 -rm -f $(BUILD_PREFIX_1)bitmap.c $(BUILD_PREFIX_1)errors.c
2719 -rm -f $(BUILD_PREFIX_1)ggc-none.c print-rtl1.c
2720# Delete the temp files made in the course of building libgcc.a.
2721 -rm -f xlimits.h
2722# Delete other built files.
2723 -rm -f xsys-protos.hT
2724 -rm -f specs.h options.h gencheck.h
2725# Delete the stamp and temporary files.
2726 -rm -f s-* tmp-* stamp-* stmp-*
2727 -rm -f */stamp-* */tmp-*
2728# Delete debugging dump files.
2729 -rm -f *.[0-9][0-9].* */*.[0-9][0-9].*
2730# Delete some files made during installation.
2731 -rm -f specs $(SPECS) SYSCALLS.c.X SYSCALLS.c
2732 -rm -f collect collect2 mips-tfile mips-tdump
2733# Delete files generated for fixproto
2734 -rm -rf fix-header$(build_exeext) xsys-protos.h deduced.h tmp-deduced.h \
2735 gen-protos$(build_exeext) fixproto.list fixtmp.* fixhdr.ready
2736# Delete files generated for fixincl
2737 -rm -rf fixincl fixinc.sh specs.ready
2738 (cd fixinc && $(MAKE) clean)
2739# Delete unwanted output files from TeX.
2740 -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg
2741 -rm -f */*.toc */*.log */*.vr */*.fn */*.cp */*.tp */*.ky */*.pg
2742# Delete sorted indices we don't actually use.
2743 -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
2744# Delete core dumps.
2745 -rm -f core */core
2746# Delete file generated for gengtype.c
2747 -rm -f gtyp-gen.h
2748# Delete files generated by gengtype.c
2749 -rm -f gtype-*
2750 -rm -f gt-*
2751
2752# Delete all files made by compilation
2753# that don't exist in the distribution.
2754INTL_CLEAN = intl.clean
2755clean: mostlyclean $(INTL_CLEAN) lang.clean
2756 -rm -f libgcc.a libgcc_eh.a libgcov.a
2757 -rm -f libgcc_s$(SHLIB_EXT) libgcc_s$(SHLIB_EXT).1
2758 -rm -f config.h tconfig.h bconfig.h tm_p.h tm.h
2759 -rm -f cs-*
2760 -rm -rf libgcc
2761 -rm -f *.dvi
2762 -rm -f */*.dvi
2763# Delete the include directory.
2764 -rm -rf include
2765# Delete files used by the "multilib" facility (including libgcc subdirs).
2766 -rm -f multilib.h tmpmultilib*
2767 -if [ "x$(MULTILIB_DIRNAMES)" != x ] ; then \
2768 rm -rf $(MULTILIB_DIRNAMES); \
2769 else if [ "x$(MULTILIB_OPTIONS)" != x ] ; then \
2770 rm -rf `echo $(MULTILIB_OPTIONS) | sed -e 's/\// /g'`; \
2771 fi ; fi
2772 -rm -fr stage1 stage2 stage3 stage4
2773# Delete stamps of bootstrap stages
2774 -rm -f stage?_*
2775 -rm -f clean?_*
2776 -rm -f stage_last
2777
2778# Delete all files that users would normally create
2779# while building and installing GCC.
2780INTL_DISTCLEAN = intl.distclean
2781distclean: clean $(INTL_DISTCLEAN) lang.distclean
2782 -rm -f auto-host.h auto-build.h
2783 -rm -f cstamp-h
2784 -rm -f config.status config.run config.cache config.bak
2785 -rm -f Make-lang Make-hooks Make-host Make-target
2786 -rm -f Makefile *.oaux
2787 -rm -f gthr-default.h
2788 -rm -f */stage1 */stage2 */stage3 */stage4 */include
2789 -rm -f c-parse.output
2790 -rm -f *.asm
2791 -rm -f site.exp site.bak testsuite/site.exp testsuite/site.bak
2792 -rm -f testsuite/*.log testsuite/*.sum
2793 -cd testsuite && rm -f x *.x *.x? *.exe *.rpo *.o *.s *.S *.c
2794 -cd testsuite && rm -f *.out *.gcov *$(coverageexts)
2795 -rm -rf ${QMTEST_DIR} stamp-qmtest
2796 -rm -f intl/libintl.h libintl.h
2797 -rm -f cxxmain.c
2798 -rm -f mklibgcc mkheaders gccbug .gdbinit configargs.h
2799 -rm -f gcov.pod
2800 -rm -f fixinc/Makefile
2801# Delete po/*.gmo only if we are not building in the source directory.
2802 -if [ ! -f po/exgettext ]; then rm -f po/*.gmo; fi
2803 -rmdir ada cp f java objc fixinc intl po testsuite 2>/dev/null
2804
2805# Delete anything likely to be found in the source directory
2806# that shouldn't be in the distribution.
2807extraclean: distclean lang.extraclean
2808 -rm -rf =* ./"#"* *~* config/=* config/"#"* config/*~*
2809 -rm -f patch* *.orig *.rej config/patch* config/*.orig config/*.rej
2810 -rm -f config/*/=* config/*/"#"* config/*/*~*
2811 -rm -f config/*/*.orig config/*/*.rej
2812 -rm -f *.dvi *.ps *.oaux *.d *.[zZ] *.gz
2813 -rm -f *.tar *.xtar *diff *.diff.* *.tar.* *.xtar.* *diffs
2814 -rm -f *lose config/*lose config/*/*lose
2815 -rm -f *.s *.s[0-9] *.i config/ChangeLog
2816 -rm -f y.tab.c yacc.*
2817 -rm -f */=* */"#"* */*~*
2818 -rm -f */patch* */*.orig */*.rej
2819 -rm -f */*.dvi */*.oaux */*.d */*.[zZ] */*.gz
2820 -rm -f */*.tar */*.xtar */*diff */*.diff.* */*.tar.* */*.xtar.* */*diffs
2821 -rm -f */*lose */*.s */*.s[0-9] */*.i
2822
2823# Get rid of every file that's generated from some other file, except for `configure'.
2824# Most of these files ARE PRESENT in the GCC distribution.
2825# We define INTL_DISTCLEAN, INTL_CLEAN & INTL_MOSTLYCLEAN to be empty in the
2826# submake, so that we don't descend into intl after its makefile has been
2827# removed.
2828maintainer-clean:
2829 @echo 'This command is intended for maintainers to use; it'
2830 @echo 'deletes files that may need special tools to rebuild.'
2831 $(MAKE) INTL_DISTCLEAN= INTL_CLEAN= INTL_MOSTLYCLEAN= \
2832 intl.maintainer-clean lang.maintainer-clean distclean
2833 -rm -f c-parse.y c-parse.c c-parse.output TAGS
2834 -rm -f cpp.??s cpp.*aux
2835 -rm -f gcc.??s gcc.*aux
2836 -rm -f $(docobjdir)/cpp.info* $(docobjdir)/gcc.info* $(docobjdir)/gccint.info*
2837 -rm -f $(docobjdir)/cppinternals.info*
2838 -rm -f $(docobjdir)/gcov.1 $(docobjdir)/cpp.1 $(docobjdir)/gcc.1
2839 -rm -f $(docobjdir)/fsf-funding.7 $(docobjdir)/gfdl.7 $(docobjdir)/gpl.7
2840#\f
2841# Entry points `install' and `uninstall'.
2842# Also use `install-collect2' to install collect2 when the config files don't.
2843
2844# Copy the compiler files into directories where they will be run.
2845# Install the driver last so that the window when things are
2846# broken is small.
2847install: install-common $(INSTALL_HEADERS) $(INSTALL_LIBGCC) \
2848 install-cpp install-man install-info intl.install install-@POSUB@ \
2849 lang.install-normal install-driver
2850
2851# Handle cpp installation.
2852install-cpp: cpp$(exeext)
2853 -if [ -f gcc-cross$(exeext) ] ; then \
2854 rm -f $(DESTDIR)$(bindir)/$(CPP_CROSS_NAME)$(exeext); \
2855 $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(bindir)/$(CPP_CROSS_NAME)$(exeext); \
2856 if [ x$(cpp_install_dir) != x ]; then \
2857 rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
2858 $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
2859 else true; fi; \
2860 else \
2861 rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
2862 $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
2863 if [ x$(cpp_install_dir) != x ]; then \
2864 rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
2865 $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
2866 else true; fi; \
2867 fi
2868
2869# Create the installation directories.
2870# $(libdir)/gcc-lib/include isn't currently searched by cpp.
2871installdirs:
2872 $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(libsubdir)
2873 $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(bindir)
2874 $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(includedir)
2875 $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(infodir)
2876 $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(slibdir)
2877 $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(man1dir)
2878 $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(man7dir)
2879
2880# Install the compiler executables built during cross compilation.
2881install-common: native $(EXTRA_PARTS) lang.install-common
2882 for file in $(COMPILERS); do \
2883 if [ -f $$file ] ; then \
2884 rm -f $(DESTDIR)$(libsubdir)/$$file; \
2885 $(INSTALL_PROGRAM) $$file $(DESTDIR)$(libsubdir)/$$file; \
2886 else true; \
2887 fi; \
2888 done
2889 for file in $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
2890 if [ x"$$file" != x.. ]; then \
2891 rm -f $(DESTDIR)$(libsubdir)/$$file; \
2892 $(INSTALL_PROGRAM) $$file $(DESTDIR)$(libsubdir)/$$file; \
2893 else true; fi; \
2894 done
2895 for file in $(EXTRA_PARTS) ..; do \
2896 if [ x"$$file" != x.. ]; then \
2897 rm -f $(DESTDIR)$(libsubdir)/$$file; \
2898 $(INSTALL_DATA) $$file $(DESTDIR)$(libsubdir)/$$file; \
2899 chmod a-x $(DESTDIR)$(libsubdir)/$$file; \
2900 else true; fi; \
2901 done
2902# Don't mess with specs if it doesn't exist yet.
2903 -if [ -f specs ] ; then \
2904 rm -f $(DESTDIR)$(libsubdir)/specs; \
2905 $(INSTALL_DATA) $(SPECS) $(DESTDIR)$(libsubdir)/specs; \
2906 chmod a-x $(DESTDIR)$(libsubdir)/specs; \
2907 fi
2908# Install protoize if it was compiled.
2909 -if [ -f protoize$(exeext) ]; \
2910 then \
2911 if [ -f gcc-cross$(exeext) ] ; then \
2912 rm -f $(DESTDIR)$(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext); \
2913 $(INSTALL_PROGRAM) protoize$(exeext) $(DESTDIR)$(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext); \
2914 rm -f $(DESTDIR)$(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext); \
2915 $(INSTALL_PROGRAM) unprotoize$(exeext) $(DESTDIR)$(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext); \
2916 else \
2917 rm -f $(DESTDIR)$(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \
2918 $(INSTALL_PROGRAM) protoize$(exeext) $(DESTDIR)$(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \
2919 rm -f $(DESTDIR)$(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext); \
2920 $(INSTALL_PROGRAM) unprotoize$(exeext) $(DESTDIR)$(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext); \
2921 fi ; \
2922 rm -f $(DESTDIR)$(libsubdir)/SYSCALLS.c.X; \
2923 $(INSTALL_DATA) SYSCALLS.c.X $(DESTDIR)$(libsubdir)/SYSCALLS.c.X; \
2924 chmod a-x $(DESTDIR)$(libsubdir)/SYSCALLS.c.X; \
2925 fi
2926# Install gcov if it was compiled.
2927 -if [ -f gcov$(exeext) ]; \
2928 then \
2929 rm -f $(DESTDIR)$(bindir)/gcov$(exeext); \
2930 $(INSTALL_PROGRAM) gcov$(exeext) $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \
2931 fi
2932 $(INSTALL_SCRIPT) gccbug $(DESTDIR)$(bindir)/$(GCCBUG_INSTALL_NAME)
2933
2934# Install the driver program as $(target_alias)-gcc,
2935# $(target-alias)-gcc-$(version)
2936# and also as either gcc (if native) or $(gcc_tooldir)/bin/gcc.
2937install-driver: installdirs xgcc$(exeext)
2938 -if [ -f gcc-cross$(exeext) ] ; then \
2939 rm -f $(DESTDIR)$(bindir)/$(GCC_CROSS_NAME)$(exeext); \
2940 $(INSTALL_PROGRAM) gcc-cross$(exeext) $(DESTDIR)$(bindir)/$(GCC_CROSS_NAME)$(exeext); \
2941 rm -f $(DESTDIR)$(bindir)/$(target_alias)-gcc-$(version); \
2942 ( cd $(DESTDIR)$(bindir) && \
2943 $(LN) $(GCC_CROSS_NAME)$(exeext) $(target_alias)-gcc-$(version) ); \
2944 if [ -d $(DESTDIR)$(gcc_tooldir)/bin/. ] ; then \
2945 rm -f $(DESTDIR)$(gcc_tooldir)/bin/gcc$(exeext); \
2946 $(INSTALL_PROGRAM) gcc-cross$(exeext) $(DESTDIR)$(gcc_tooldir)/bin/gcc$(exeext); \
2947 else true; fi; \
2948 else \
2949 rm -f $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
2950 $(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
2951 rm -f $(DESTDIR)$(bindir)/$(target_alias)-gcc-$(version); \
2952 ( cd $(DESTDIR)$(bindir) && \
2953 $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_alias)-gcc-$(version) ); \
2954 rm -f $(DESTDIR)$(bindir)/$(target_alias)-gcc-tmp$(exeext); \
2955 ( cd $(DESTDIR)$(bindir) && \
2956 $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_alias)-gcc-tmp$(exeext) && \
2957 mv -f $(target_alias)-gcc-tmp$(exeext) $(GCC_TARGET_INSTALL_NAME)$(exeext) ); \
2958 fi
2959
2960# Install the info files.
2961# $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir
2962# to do the install.
2963install-info: doc installdirs lang.install-info
2964 -rm -f $(DESTDIR)$(infodir)/cpp.info* $(DESTDIR)$(infodir)/gcc.info*
2965 -rm -f $(DESTDIR)$(infodir)/cppinternals.info* $(DESTDIR)$(infodir)/gccint.info*
2966 if [ -f $(docobjdir)/gcc.info ]; then \
2967 for f in $(docobjdir)/cpp.info* $(docobjdir)/gcc.info* \
2968 $(docobjdir)/cppinternals.info* $(docobjdir)/gccint.info*; do \
2969 realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
2970 $(INSTALL_DATA) $$f $(DESTDIR)$(infodir)/$$realfile; \
2971 done; \
2972 else true; fi
2973 -if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
2974 if [ -f $(DESTDIR)$(infodir)/dir ] ; then \
2975 for f in cpp.info gcc.info gccint.info cppinternals.info; do \
2976 if [ -f $(DESTDIR)$(infodir)/$$f ]; then \
2977 install-info --dir-file=$(DESTDIR)$(infodir)/dir $(DESTDIR)$(infodir)/$$f; \
2978 else true; fi; \
2979 done; \
2980 else true; fi; \
2981 else true; fi;
2982 -chmod a-x $(DESTDIR)$(infodir)/cpp.info* $(DESTDIR)$(infodir)/gcc.info*
2983 -chmod a-x $(DESTDIR)$(infodir)/cppinternals.info* $(DESTDIR)$(infodir)/gccint.info*
2984
2985# Install the man pages.
2986install-man: installdirs $(GENERATED_MANPAGES) lang.install-man
2987 -if [ -f gcc-cross$(exeext) ] ; then \
2988 rm -f $(DESTDIR)$(man1dir)/$(GCC_CROSS_NAME)$(man1ext); \
2989 $(INSTALL_DATA) $(docobjdir)/gcc.1 $(DESTDIR)$(man1dir)/$(GCC_CROSS_NAME)$(man1ext); \
2990 chmod a-x $(DESTDIR)$(man1dir)/$(GCC_CROSS_NAME)$(man1ext); \
2991 else \
2992 rm -f $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext); \
2993 $(INSTALL_DATA) $(docobjdir)/gcc.1 $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext); \
2994 chmod a-x $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext); \
2995 fi
2996 -rm -f $(DESTDIR)$(man1dir)/cpp$(man1ext)
2997 -$(INSTALL_DATA) $(docobjdir)/cpp.1 $(DESTDIR)$(man1dir)/cpp$(man1ext)
2998 -chmod a-x $(DESTDIR)$(man1dir)/cpp$(man1ext)
2999 -rm -f $(DESTDIR)$(man1dir)/gcov$(man1ext)
3000 -$(INSTALL_DATA) $(docobjdir)/gcov.1 $(DESTDIR)$(man1dir)/gcov$(man1ext)
3001 -chmod a-x $(DESTDIR)$(man1dir)/gcov$(man1ext)
3002 -rm -f $(DESTDIR)$(man7dir)/fsf-funding$(man7ext)
3003 -$(INSTALL_DATA) $(docobjdir)/fsf-funding.7 $(DESTDIR)$(man7dir)/fsf-funding$(man7ext)
3004 -chmod a-x $(DESTDIR)$(man7dir)/fsf-funding$(man7ext)
3005 -rm -f $(DESTDIR)$(man7dir)/gfdl$(man7ext)
3006 -$(INSTALL_DATA) $(docobjdir)/gfdl.7 $(DESTDIR)$(man7dir)/gfdl$(man7ext)
3007 -chmod a-x $(DESTDIR)$(man7dir)/gfdl$(man7ext)
3008 -rm -f $(DESTDIR)$(man7dir)/gpl$(man7ext)
3009 -$(INSTALL_DATA) $(docobjdir)/gpl.7 $(DESTDIR)$(man7dir)/gpl$(man7ext)
3010 -chmod a-x $(DESTDIR)$(man7dir)/gpl$(man7ext)
3011
3012# Install the library.
3013install-libgcc: libgcc.mk libgcc.a libgcov.a installdirs
3014 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
3015 BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \
3016 AR_FOR_TARGET="$(AR_FOR_TARGET)" \
3017 AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \
3018 AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
3019 CFLAGS="$(CFLAGS) $(WARN_CFLAGS)" \
3020 NM_FOR_TARGET="$(NM_FOR_TARGET)" AWK="$(AWK)" \
3021 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" \
3022 INCLUDES="$(INCLUDES)" \
3023 CONFIG_H="$(TCONFIG_H)" MACHMODE_H="$(MACHMODE_H)" \
3024 LIB1ASMSRC='$(LIB1ASMSRC)' \
3025 MAKEOVERRIDES= \
3026 INSTALL_DATA="$(INSTALL_DATA)" \
3027 RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)" \
3028 DESTDIR="$(DESTDIR)" \
3029 libsubdir="$(libsubdir)" \
3030 slibdir="$(slibdir)" \
3031 -f libgcc.mk install
3032
3033# Install multiple versions of libgcc.a, libgcov.a.
3034install-multilib: stmp-multilib installdirs
3035 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
3036 BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \
3037 AR_FOR_TARGET="$(AR_FOR_TARGET)" \
3038 AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \
3039 AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
3040 CFLAGS="$(CFLAGS) $(WARN_CFLAGS)" \
3041 NM_FOR_TARGET="$(NM_FOR_TARGET)" AWK="$(AWK)" \
3042 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" \
3043 INCLUDES="$(INCLUDES)" \
3044 CONFIG_H="$(CONFIG_H)" MACHMODE_H="$(MACHMODE_H)" \
3045 LIB1ASMSRC='$(LIB1ASMSRC)' \
3046 MAKEOVERRIDES= \
3047 INSTALL_DATA="$(INSTALL_DATA)" \
3048 RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)" \
3049 DESTDIR="$(DESTDIR)" \
3050 libsubdir="$(libsubdir)" \
3051 slibdir="$(slibdir)" \
3052 -f libgcc.mk install
3053
3054# Install all the header files built in the include subdirectory.
3055install-headers: $(INSTALL_HEADERS_DIR)
3056# Fix symlinks to absolute paths in the installed include directory to
3057# point to the installed directory, not the build directory.
3058# Don't need to use LN_S here since we really do need ln -s and no substitutes.
3059 -files=`cd $(DESTDIR)$(libsubdir)/include; find . -type l -print 2>/dev/null`; \
3060 if [ $$? -eq 0 ]; then \
3061 dir=`cd include; ${PWD}`; \
3062 for i in $$files; do \
3063 dest=`ls -ld $(DESTDIR)$(libsubdir)/include/$$i | sed -n 's/.*-> //p'`; \
3064 if expr "$$dest" : "$$dir.*" > /dev/null; then \
3065 rm -f $(DESTDIR)$(libsubdir)/include/$$i; \
3066 ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(DESTDIR)$(libsubdir)/include/$$i; \
3067 fi; \
3068 done; \
3069 fi
3070
3071# Create or recreate the gcc private include file directory.
3072install-include-dir: installdirs
3073 -rm -rf $(DESTDIR)$(libsubdir)/include
3074 mkdir $(DESTDIR)$(libsubdir)/include
3075 -chmod a+rx $(DESTDIR)$(libsubdir)/include
3076
3077# Install the include directory using tar.
3078install-headers-tar: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
3079# We use `pwd`/include instead of just include to problems with CDPATH
3080# Unless a full pathname is provided, some shells would print the new CWD,
3081# found in CDPATH, corrupting the output. We could just redirect the
3082# output of `cd', but some shells lose on redirection within `()'s
3083 (cd `${PWD}`/include ; \
3084 tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include; tar xpf - )
3085# /bin/sh on some systems returns the status of the first tar,
3086# and that can lose with GNU tar which always writes a full block.
3087# So use `exit 0' to ignore its exit status.
3088
3089# Install the include directory using cpio.
3090install-headers-cpio: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
3091# See discussion about the use of `pwd` above
3092 cd `${PWD}`/include ; \
3093 find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include
3094
3095# Install the include directory using cp.
3096install-headers-cp: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
3097 cp -p -r include $(DESTDIR)$(libsubdir)
3098
3099itoolsdir = $(libsubdir)/install-tools
3100# Don't install the headers. Instead, install appropriate scripts
3101# and supporting files for fixincludes to be run later.
3102install-mkheaders: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir \
3103 mkheaders xlimits.h
3104 -rm -rf $(DESTDIR)$(itoolsdir)
3105 $(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$(itoolsdir)/include
3106 for file in $(USER_H); do \
3107 realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
3108 $(INSTALL_DATA) $$file \
3109 $(DESTDIR)$(itoolsdir)/include/$$realfile ; \
3110 done
3111 $(INSTALL_DATA) xlimits.h $(DESTDIR)$(itoolsdir)/include/limits.h
3112 if [ x$(STMP_FIXINC) != x ] ; then \
3113 $(INSTALL_DATA) $(srcdir)/README-fixinc \
3114 $(DESTDIR)$(itoolsdir)/include/README ; \
3115 $(INSTALL_PROGRAM) fixinc.sh $(DESTDIR)$(itoolsdir)/fixinc.sh ; \
3116 $(INSTALL_PROGRAM) fixinc/fixincl $(DESTDIR)$(itoolsdir)/fixincl ; \
3117 $(INSTALL_DATA) $(srcdir)/gsyslimits.h $(DESTDIR)$(itoolsdir)/gsyslimits.h ; \
3118 else :; fi
3119 if [ x$(STMP_FIXPROTO) != x ] ; then \
3120 $(INSTALL_PROGRAM) $(srcdir)/mkinstalldirs \
3121 $(DESTDIR)$(itoolsdir)/mkinstalldirs ; \
3122 $(INSTALL_PROGRAM) $(srcdir)/fixproto $(DESTDIR)$(itoolsdir)/fixproto ; \
3123 $(INSTALL_PROGRAM) fix-header$(build_exeext) \
3124 $(DESTDIR)$(itoolsdir)/fix-header$(build_exeext) ; \
3125 else :; fi
3126 $(INSTALL_PROGRAM) mkheaders $(DESTDIR)$(itoolsdir)/mkheaders
3127 echo 'SYSTEM_HEADER_DIR="'"$(SYSTEM_HEADER_DIR)"'"' \
3128 > $(DESTDIR)$(itoolsdir)/mkheaders.conf
3129 echo 'OTHER_FIXINCLUDES_DIRS="$(OTHER_FIXINCLUDES_DIRS)"' \
3130 >> $(DESTDIR)$(itoolsdir)/mkheaders.conf
3131 echo 'FIXPROTO_DEFINES="$(FIXPROTO_DEFINES)"' \
3132 >> $(DESTDIR)$(itoolsdir)/mkheaders.conf
3133 echo 'STMP_FIXPROTO="$(STMP_FIXPROTO)"' >> $(DESTDIR)$(itoolsdir)/mkheaders.conf
3134 echo 'STMP_FIXINC="$(STMP_FIXINC)"' >> $(DESTDIR)$(itoolsdir)/mkheaders.conf
3135
3136# Use this target to install the program `collect2' under the name `collect2'.
3137install-collect2: collect2 installdirs
3138 $(INSTALL_PROGRAM) collect2$(exeext) $(DESTDIR)$(libsubdir)/collect2$(exeext)
3139# Install the driver program as $(libsubdir)/gcc for collect2.
3140 $(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(libsubdir)/gcc$(exeext)
3141
3142# Cancel installation by deleting the installed files.
3143uninstall: intl.uninstall lang.uninstall
3144 -rm -rf $(DESTDIR)$(libsubdir)
3145 -rm -rf $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
3146 -rm -rf $(DESTDIR)$(bindir)/$(GCC_CROSS_NAME)$(exeext)
3147 -rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext)
3148 -rm -f $(DESTDIR)$(bindir)/$(CPP_CROSS_NAME)$(exeext)
3149 -if [ x$(cpp_install_dir) != x ]; then \
3150 rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
3151 rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
3152 else true; fi
3153 -rm -rf $(DESTDIR)$(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext)
3154 -rm -rf $(DESTDIR)$(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext)
3155 -rm -rf $(DESTDIR)$(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext)
3156 -rm -rf $(DESTDIR)$(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext)
3157 -rm -rf $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext)
3158 -rm -rf $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext)
3159 -rm -rf $(DESTDIR)$(man1dir)/$(GCC_CROSS_NAME)$(man1ext)
3160 -rm -rf $(DESTDIR)$(man1dir)/cpp$(man1ext)
3161 -rm -rf $(DESTDIR)$(man1dir)/protoize$(man1ext)
3162 -rm -rf $(DESTDIR)$(man1dir)/unprotoize$(man1ext)
3163 -rm -f $(DESTDIR)$(infodir)/cpp.info* $(DESTDIR)$(infodir)/gcc.info*
3164 -rm -f $(DESTDIR)$(infodir)/cppinternals.info* $(DESTDIR)$(infodir)/gccint.info*
3165#\f
3166# These targets are for the dejagnu testsuites. The file site.exp
3167# contains global variables that all the testsuites will use.
3168
3169# Set to $(target_alias)/ for cross.
3170target_subdir = @target_subdir@
3171
3172site.exp: ./config.status Makefile
3173 @echo "Making a new config file..."
3174 -@rm -f ./tmp?
3175 @$(STAMP) site.exp
3176 -@mv site.exp site.bak
3177 @echo "## these variables are automatically generated by make ##" > ./tmp0
3178 @echo "# Do not edit here. If you wish to override these values" >> ./tmp0
3179 @echo "# add them to the last section" >> ./tmp0
3180 @echo "set rootme \"`${PWD}`\"" >> ./tmp0
3181 @echo "set srcdir \"`cd ${srcdir}; ${PWD}`\"" >> ./tmp0
3182 @echo "set host_triplet $(host_canonical)" >> ./tmp0
3183 @echo "set build_triplet $(build_canonical)" >> ./tmp0
3184 @echo "set target_triplet $(target)" >> ./tmp0
3185 @echo "set target_alias $(target_alias)" >> ./tmp0
3186# CFLAGS is set even though it's empty to show we reserve the right to set it.
3187 @echo "set CFLAGS \"\"" >> ./tmp0
3188 @echo "set CXXFLAGS \"\"" >> ./tmp0
3189 @echo "set TESTING_IN_BUILD_TREE 1" >> ./tmp0
3190 @echo "set HAVE_LIBSTDCXX_V3 1" >> ./tmp0
3191# If newlib has been configured, we need to pass -B to gcc so it can find
3192# newlib's crt0.o if it exists. This will cause a "path prefix not used"
3193# message if it doesn't, but the testsuite is supposed to ignore the message -
3194# it's too difficult to tell when to and when not to pass -B (not all targets
3195# have crt0's). We could only add the -B if ../newlib/crt0.o exists, but that
3196# seems like too selective a test.
3197# ??? Another way to solve this might be to rely on linker scripts. Then
3198# theoretically the -B won't be needed.
3199# We also need to pass -L ../ld so that the linker can find ldscripts.
3200 @if [ -d $(objdir)/../$(target_subdir)newlib ] ; then \
3201 echo "set newlib_cflags \"-I$(objdir)/../$(target_subdir)newlib/targ-include -I\$$srcdir/../newlib/libc/include\"" >> ./tmp0; \
3202 echo "set newlib_ldflags \"-B$(objdir)/../$(target_subdir)newlib/\"" >> ./tmp0; \
3203 echo "append CFLAGS \" \$$newlib_cflags\"" >> ./tmp0; \
3204 echo "append CXXFLAGS \" \$$newlib_cflags\"" >> ./tmp0; \
3205 echo "append LDFLAGS \" \$$newlib_ldflags\"" >> ./tmp0; \
3206 else true; \
3207 fi
3208 @if [ -d $(objdir)/../ld ] ; then \
3209 echo "append LDFLAGS \" -L$(objdir)/../ld\"" >> ./tmp0; \
3210 else true; \
3211 fi
3212 echo "set tmpdir $(objdir)/testsuite" >> ./tmp0
3213 @echo "set srcdir \"\$${srcdir}/testsuite\"" >> ./tmp0
3214 @if [ "X$(ALT_CXX_UNDER_TEST)" != "X" ] ; then \
3215 echo "set ALT_CXX_UNDER_TEST $(ALT_CXX_UNDER_TEST)" >> ./tmp0; \
3216 else true; \
3217 fi
3218 @if [ "X$(COMPAT_OPTIONS)" != "X" ] ; then \
3219 echo "set COMPAT_OPTIONS $(COMPAT_OPTIONS)" >> ./tmp0; \
3220 else true; \
3221 fi
3222 @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./tmp0
3223 @cat ./tmp0 > site.exp
3224 @cat site.bak | sed \
3225 -e '1,/^## All variables above are.*##/ d' >> site.exp
3226 -@rm -f ./tmp?
3227
3228CHECK_TARGETS = check-gcc @check_languages@
3229
3230check-c++ : check-g++
3231check-f77 : check-g77
3232check-java :
3233
3234check: $(CHECK_TARGETS)
3235
3236# The idea is to parallelize testing of multilibs, for example:
3237# make -j3 check-gcc//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
3238# will run 3 concurrent sessions of check-gcc, eventually testing
3239# all 10 combinations. GNU make is required, as is a shell that expands
3240# alternations within braces.
3241check-gcc//% check-g++//% check-g77//% check-objc//%: site.exp
3242 target=`echo "$@" | sed 's,//.*,,'`; \
3243 variant=`echo "$@" | sed 's,^[^/]*//,,'`; \
3244 vardots=`echo "$$variant" | sed 's,/,.,g'`; \
3245 $(MAKE) TESTSUITEDIR="testsuite.$$vardots" \
3246 RUNTESTFLAGS="--target_board=$$variant $(RUNTESTFLAGS)" \
3247 "$$target"
3248
3249TESTSUITEDIR = testsuite
3250
3251$(TESTSUITEDIR)/site.exp: site.exp
3252 test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR)
3253 -rm -f $@
3254 sed '/set tmpdir/ s|testsuite|$(TESTSUITEDIR)|' < site.exp > $@
3255
3256check-g++: $(TESTSUITEDIR)/site.exp
3257 -(rootme=`${PWD}`; export rootme; \
3258 srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
3259 cd $(TESTSUITEDIR); \
3260 EXPECT=${EXPECT} ; export EXPECT ; \
3261 if [ -f $${rootme}/../expect/expect ] ; then \
3262 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
3263 export TCL_LIBRARY ; fi ; \
3264 $(RUNTEST) --tool g++ $(RUNTESTFLAGS))
3265
3266check-gcc: $(TESTSUITEDIR)/site.exp
3267 -(rootme=`${PWD}`; export rootme; \
3268 srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
3269 cd $(TESTSUITEDIR); \
3270 EXPECT=${EXPECT} ; export EXPECT ; \
3271 if [ -f $${rootme}/../expect/expect ] ; then \
3272 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
3273 export TCL_LIBRARY ; fi ; \
3274 $(RUNTEST) --tool gcc $(RUNTESTFLAGS))
3275
3276check-g77: $(TESTSUITEDIR)/site.exp
3277 -(rootme=`${PWD}`; export rootme; \
3278 srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
3279 cd $(TESTSUITEDIR); \
3280 EXPECT=${EXPECT} ; export EXPECT ; \
3281 if [ -f $${rootme}/../expect/expect ] ; then \
3282 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
3283 export TCL_LIBRARY ; fi ; \
3284 $(RUNTEST) --tool g77 $(RUNTESTFLAGS))
3285
3286check-objc: $(TESTSUITEDIR)/site.exp
3287 -(rootme=`${PWD}`; export rootme; \
3288 srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
3289 cd $(TESTSUITEDIR); \
3290 EXPECT=${EXPECT} ; export EXPECT ; \
3291 if [ -f $${rootme}/../expect/expect ] ; then \
3292 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
3293 export TCL_LIBRARY ; fi ; \
3294 $(RUNTEST) --tool objc $(RUNTESTFLAGS))
3295
3296check-consistency: testsuite/site.exp
3297 -rootme=`${PWD}`; export rootme; \
3298 srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
3299 cd testsuite; \
3300 EXPECT=${EXPECT} ; export EXPECT ; \
3301 if [ -f $${rootme}/../expect/expect ] ; then \
3302 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
3303 export TCL_LIBRARY ; fi ; \
3304 $(RUNTEST) --tool consistency $(RUNTESTFLAGS)
3305
3306# QMTest targets
3307
3308# The path to qmtest.
3309QMTEST_PATH=qmtest
3310
3311# The flags to pass to qmtest.
3312QMTESTFLAGS=
3313
3314# The flags to pass to "qmtest run".
3315QMTESTRUNFLAGS=
3316
3317# The command to use to invoke qmtest.
3318QMTEST=${QMTEST_PATH} ${QMTESTFLAGS}
3319
3320# The tests (or suites) to run.
3321QMTEST_GPP_TESTS=gpp
3322
3323# The subdirectory of the OBJDIR that will be used to store the QMTest
3324# test database configuration and that will be used for temporary
3325# scratch space during QMTest's execution.
3326QMTEST_DIR=qmtestsuite
3327
3328# Create the QMTest database configuration.
3329${QMTEST_DIR} stamp-qmtest:
3330 debug_options=""; \
3331 ${STAMP} empty.C; \
3332 for option in \
3333 -gdwarf-2 -gstabs -gstabs+ -gxcoff -gxcoff+ -gcoff; do \
3334 (./cc1plus -q $${option} empty.C 2>&1 | \
3335 grep "unknown or unsupported -g option" > /dev/null) || \
3336 debug_options="$${debug_options}$${option} "; done; \
3337 ${QMTEST} -D ${QMTEST_DIR} create-tdb \
3338 -c gcc_database.GCCDatabase \
3339 -a GCCDatabase.testsuite_root=`cd ${srcdir}/testsuite && pwd` \
3340 -a GCCDatabase.debug_options="$${debug_options}"
3341 rm -f empty.C empty.s
3342 $(STAMP) stamp-qmtest
3343
3344# Create the QMTest context file.
3345${QMTEST_DIR}/context: stamp-qmtest
3346 echo "GCCTest.flags=-B${objdir}" >> $@
3347 echo "GCCTest.objdir=${objdir}/.." >> $@
3348 echo "GCCTest.host=${host_canonical}" >> $@
3349 echo "GCCTest.target=${target}" >> $@
3350 echo "GCCTest.gcov=${objdir}/gcov" >> $@
3351 echo "GPPTest.gpp=${objdir}/g++" >> $@
3352 echo "DGTest.demangler=${objdir}/c++filt" >> $@
3353
3354# Run the G++ testsuite using QMTest.
3355qmtest-g++: ${QMTEST_DIR}/context ${QMTEST_DIR}/gpp-expected.qmr
3356 cd ${QMTEST_DIR} && ${QMTEST} run ${QMTESTRUNFLAGS} -C context \
3357 -o gpp.qmr -O gpp-expected.qmr \
3358 ${QMTEST_GPP_TESTS}
3359
3360# Use the QMTest GUI.
3361qmtest-gui: ${QMTEST_DIR}/context
3362 cd ${QMTEST_DIR} && ${QMTEST} gui -C context
3363
3364# Build the set of expected G++ failures.
3365${QMTEST_DIR}/gpp-expected.qmr: ${QMTEST_DIR}/context
3366 echo "Determining expected results..."
3367 cd ${QMTEST_DIR} && ${QMTEST} run ${QMTESTRUNFLAGS} -C context \
3368 -c "GCCTest.generate_xfails=1" -o gpp-expected.qmr \
3369 ${QMTEST_GPP_TESTS} \
3370 > /dev/null
3371
3372.PHONY: qmtest-g++
3373
3374# Run Paranoia on real.c.
3375
3376paranoia.o: $(srcdir)/../contrib/paranoia.cc $(CONFIG_H) $(SYSTEM_H) \
3377 real.h $(TREE_H)
3378 g++ -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
3379
3380paranoia: paranoia.o real.o $(LIBIBERTY)
3381 g++ -o $@ paranoia.o real.o $(LIBIBERTY)
3382
3383# These exist for maintenance purposes.
3384
3385# Update the tags table.
3386TAGS: lang.tags
3387 (cd $(srcdir); \
3388 incs= ; \
3389 list='$(SUBDIRS)'; for dir in $$list; do \
3390 if test -f $$dir/TAGS; then \
3391 incs="$$incs --include $$dir/TAGS"; \
3392 fi; \
3393 done; \
3394 mkdir tmp-tags; \
3395 mv -f c-parse.[ch] =*.[chy] tmp-tags; \
3396 etags *.y *.h *.c $$incs; \
3397 mv tmp-tags/* .; \
3398 rmdir tmp-tags)
3399
3400# A list of files to be destroyed during "lean" builds.
3401VOL_FILES=`echo $(BACKEND) $(OBJS) $(C_OBJS) $(LIBCPP_OBJS) *.c *.h gen*`
3402
3403# Flags to pass to stage2 and later recursive makes. Note that the
3404# WARN_CFLAGS setting can't be to the expansion of GCC_WARN_CFLAGS in
3405# the context of the stage_x rule.
3406STAGE2_FLAGS_TO_PASS = \
3407 ADAC="\$$(CC)" \
3408 GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
3409 CFLAGS="$(BOOT_CFLAGS)" \
3410 LDFLAGS="$(BOOT_LDFLAGS)" \
3411 WARN_CFLAGS="\$$(GCC_WARN_CFLAGS)" \
3412 WERROR="@WERROR@" \
3413 STRICT_WARN="$(STRICT2_WARN)" \
3414 libdir=$(libdir) \
3415 LANGUAGES="$(LANGUAGES)" \
3416 MAKEOVERRIDES= \
3417 OUTPUT_OPTION="-o \$$@"
3418
3419# Only build the C compiler for stage1, because that is the only one that
3420# we can guarantee will build with the native compiler, and also it is the
3421# only thing useful for building stage2. STAGE1_CFLAGS (via CFLAGS),
3422# MAKEINFO and MAKEINFOFLAGS are explicitly passed here to make them
3423# overrideable (for a bootstrap build stage1 also builds gcc.info).
3424stage1_build:
3425 $(MAKE) CC="$(CC)" libdir=$(libdir) LANGUAGES="$(BOOT_LANGUAGES)" \
3426 CFLAGS="$(STAGE1_CFLAGS)" MAKEINFO="$(MAKEINFO)" \
3427 GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
3428 MAKEINFOFLAGS="$(MAKEINFOFLAGS)" COVERAGE_FLAGS=
3429 $(STAMP) stage1_build
3430 echo stage1_build > stage_last
3431
3432stage1_copy: stage1_build
3433 $(MAKE) stage1
3434 $(STAMP) stage1_copy
3435 echo stage2_build > stage_last
3436
3437stage2_build: stage1_copy
3438 $(MAKE) CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" \
3439 STAGE_PREFIX=stage1/ \
3440 $(STAGE2_FLAGS_TO_PASS)
3441 $(STAMP) stage2_build
3442 echo stage2_build > stage_last
3443
3444stage2_copy: stage2_build
3445 $(MAKE) stage2
3446 $(STAMP) stage2_copy
3447 echo stage3_build > stage_last
3448
3449stage3_build: stage2_copy
3450 $(MAKE) CC="$(STAGE_CC_WRAPPER) stage2/xgcc$(exeext) -Bstage2/ -B$(build_tooldir)/bin/" \
3451 STAGE_PREFIX=stage2/ \
3452 $(STAGE2_FLAGS_TO_PASS)
3453 $(STAMP) stage3_build
3454 echo stage3_build > stage_last
3455
3456# For bootstrap4:
3457stage3_copy: stage3_build
3458 $(MAKE) stage3
3459 $(STAMP) stage3_copy
3460 echo stage4_build > stage_last
3461
3462stage4_build: stage3_copy
3463 $(MAKE) CC="$(STAGE_CC_WRAPPER) stage3/xgcc$(exeext) -Bstage3/ -B$(build_tooldir)/bin/" \
3464 STAGE_PREFIX=stage3/ \
3465 $(STAGE2_FLAGS_TO_PASS)
3466 $(STAMP) stage4_build
3467 echo stage4_build > stage_last
3468
3469# Additional steps for *-lean targets:
3470clean_s1: stage1_copy
3471 -(cd stage1 && rm -f $(VOL_FILES))
3472 $(STAMP) clean_s1
3473
3474clean_s2: stage2_copy
3475 -rm -rf stage1
3476 $(STAMP) clean_s2
3477
3478# The various entry points for bootstrapping.
3479
3480bootstrap: stage3_build
3481 @echo
3482 @echo Bootstrap complete - make \"quickstrap\" to redo last build,
3483 @echo \"restage1\" through \"restage3\" to rebuild specific stages,
3484 @echo \"restrap\" to redo the bootstrap from stage1, or
3485 @echo \"cleanstrap\" to redo the bootstrap from scratch.
3486
3487bootstrap-lean : clean_s1 clean_s2 stage3_build
3488 @echo
3489 @echo Bootstrap complete - make \"quickstrap\" to redo last build,
3490 @echo or \"cleanstrap\" to redo the bootstrap from scratch.
3491
3492bootstrap2: bootstrap
3493
3494bootstrap2-lean : bootstrap-lean
3495
3496bootstrap3 bootstrap3-lean: bootstrap
3497
3498bootstrap4 bootstrap4-lean: stage4_build
3499
3500unstage1 unstage2 unstage3 unstage4:
3501 -set -vx; stage=`echo $@ | sed -e 's/un//'`; \
3502 rm -f $$stage/as$(exeext); \
3503 rm -f $$stage/ld$(exeext); \
3504 rm -f $$stage/collect-ld$(exeext); \
3505 if test -d $$stage; then \
3506 mv $$stage/* . 2>/dev/null; \
3507 for i in `cd $$stage; echo *` ; do \
3508 if test -d $$stage/$$i; then \
3509 mv $$stage/$$i/* $$i/. 2>/dev/null; \
3510 else \
3511 mv $$stage/$$i .; \
3512 fi; \
3513 done \
3514 fi ; \
3515 rm -f $${stage}_build $${stage}_copy ;\
3516 echo $${stage}_build > stage_last
3517
3518restage1: unstage1
3519 $(MAKE) stage1_build
3520
3521restage2: unstage2
3522 $(MAKE) LANGUAGES="$(LANGUAGES)" stage2_build
3523
3524restage3: unstage3
3525 $(MAKE) LANGUAGES="$(LANGUAGES)" stage3_build
3526
3527restage4: unstage4
3528 $(MAKE) LANGUAGES="$(LANGUAGES)" stage4_build
3529
3530bubblestrap:
3531 if test -f stage3_build; then true; else \
3532 echo; echo You must \"make bootstrap\" first.; \
3533 exit 1; \
3534 fi
3535 for i in stage3 \
3536 unstage1 stage1_build stage1_copy \
3537 unstage2 stage2_build stage2_copy \
3538 unstage3 stage3_build ; \
3539 do \
3540 $(MAKE) LANGUAGES="$(LANGUAGES)" $$i || exit 1 ; \
3541 done
3542
3543quickstrap:
3544 if test -f stage_last ; then \
3545 LAST=`cat stage_last`; rm $$LAST; $(MAKE) LANGUAGES="$(LANGUAGES)" $$LAST; \
3546 else \
3547 $(MAKE) stage1_build; \
3548 fi
3549
3550cleanstrap:
3551 -$(MAKE) clean
3552 $(MAKE) LANGUAGES="$(LANGUAGES)" bootstrap
3553
3554unstrap:
3555 -rm -rf stage[234]*
3556 $(MAKE) unstage1
3557
3558# Differs from cleanstrap in that it starts from the earlier stage1 build,
3559# not from scratch.
3560restrap:
3561 $(MAKE) unstrap
3562 $(MAKE) LANGUAGES="$(LANGUAGES)" bootstrap
3563
3564# Compare the object files in the current directory with those in the
3565# stage2 directory.
3566
3567# ./ avoids bug in some versions of tail.
3568compare compare3 compare4 compare-lean compare3-lean compare4-lean: force
3569 -rm -f .bad_compare
3570 case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
3571 for file in *$(objext); do \
3572 tail +16c ./$$file > tmp-foo1; \
3573 tail +16c stage$$stage/$$file > tmp-foo2 \
3574 && (cmp tmp-foo1 tmp-foo2 > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
3575 done
3576 case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
3577 for dir in tmp-foo intl $(SUBDIRS); do \
3578 if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \
3579 for file in $$dir/*$(objext); do \
3580 tail +16c ./$$file > tmp-foo1; \
3581 tail +16c stage$$stage/$$file > tmp-foo2 \
3582 && (cmp tmp-foo1 tmp-foo2 > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
3583 done; \
3584 else true; fi; \
3585 done
3586 -rm -f tmp-foo*
3587 case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
3588 if [ -f .bad_compare ]; then \
3589 echo "Bootstrap comparison failure!"; \
3590 cat .bad_compare; \
3591 exit 1; \
3592 else \
3593 case "$@" in \
3594 *-lean ) rm -rf stage$$stage ;; \
3595 *) ;; \
3596 esac; true; \
3597 fi
3598
3599# Compare the object files in the current directory with those in the
3600# stage2 directory. Use gnu cmp (diffutils v2.4 or later) to avoid
3601# running tail and the overhead of twice copying each object file.
3602# An exit status of 1 is precisely the result we're looking for (other
3603# values mean other problems).
3604gnucompare gnucompare3 gnucompare4 gnucompare-lean gnucompare3-lean gnucompare4-lean: force
3605 -rm -f .bad_compare
3606 case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
3607 for file in *$(objext); do \
3608 cmp --ignore-initial=16 $$file stage$$stage/$$file > /dev/null 2>&1; \
3609 test $$? -eq 1 && echo $$file differs >> .bad_compare || true; \
3610 done
3611 case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
3612 for dir in tmp-foo intl $(SUBDIRS); do \
3613 if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \
3614 for file in $$dir/*$(objext); do \
3615 cmp --ignore-initial=16 $$file stage$$stage/$$file > /dev/null 2>&1; \
3616 test $$? -eq 1 && echo $$file differs >> .bad_compare || true; \
3617 done; \
3618 else true; fi; \
3619 done
3620 case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
3621 if [ -f .bad_compare ]; then \
3622 echo "Bootstrap comparison failure!"; \
3623 cat .bad_compare; \
3624 exit 1; \
3625 else \
3626 case "$@" in \
3627 *-lean ) rm -rf stage$$stage ;; \
3628 esac; true; \
3629 fi
3630
3631# Copy the object files from a particular stage into a subdirectory.
3632stage1-start:
3633 -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
3634 $(MAKE) -f libgcc.mk libgcc-stage-start stage=stage1
3635 -for dir in intl $(SUBDIRS) ; \
3636 do \
3637 if [ -d stage1/$$dir ] ; then true ; else mkdir stage1/$$dir ; fi ; \
3638 done
3639 -mv $(STAGESTUFF) stage1
3640 -mv intl/*$(objext) stage1/intl
3641# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
3642# dir will work properly.
3643 -if [ -f as$(exeext) ] ; then (cd stage1 && $(LN_S) ../as$(exeext) .) ; else true ; fi
3644 -if [ -f ld$(exeext) ] ; then (cd stage1 && $(LN_S) ../ld$(exeext) .) ; else true ; fi
3645 -if [ -f collect-ld$(exeext) ] ; then (cd stage1 && $(LN_S) ../collect-ld$(exeext) .) ; else true ; fi
3646 -rm -f stage1/libgcc.a stage1/libgcc_eh.a stage1/libgcov.a
3647 -cp libgcc.a stage1
3648 -$(RANLIB_FOR_TARGET) stage1/libgcc.a
3649 -cp libgcov.a stage1
3650 -$(RANLIB_FOR_TARGET) stage1/libgcov.a
3651 -if [ -f libgcc_eh.a ] ; then cp libgcc_eh.a stage1; \
3652 $(RANLIB_FOR_TARGET) stage1/libgcc_eh.a; \
3653 fi
3654 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
3655 cp stage1/$${f} . ; \
3656 else true; \
3657 fi; done
3658stage1: force stage1-start lang.stage1
3659 -for dir in . $(SUBDIRS) ; \
3660 do \
3661 rm -f $$dir/*$(coverageexts) ; \
3662 done
3663
3664stage2-start:
3665 -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
3666 $(MAKE) -f libgcc.mk libgcc-stage-start stage=stage2
3667 -for dir in intl $(SUBDIRS) ; \
3668 do \
3669 if [ -d stage2/$$dir ] ; then true ; else mkdir stage2/$$dir ; fi ; \
3670 done
3671 -mv $(STAGESTUFF) stage2
3672 -mv intl/*$(objext) stage2/intl
3673# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
3674# dir will work properly.
3675 -if [ -f as$(exeext) ] ; then (cd stage2 && $(LN_S) ../as$(exeext) .) ; else true ; fi
3676 -if [ -f ld$(exeext) ] ; then (cd stage2 && $(LN_S) ../ld$(exeext) .) ; else true ; fi
3677 -if [ -f collect-ld$(exeext) ] ; then (cd stage2 && $(LN_S) ../collect-ld$(exeext) .) ; else true ; fi
3678 -rm -f stage2/libgcc.a stage2/libgcov.a stage2/libgcc_eh.a
3679 -cp libgcc.a stage2
3680 -$(RANLIB_FOR_TARGET) stage2/libgcc.a
3681 -cp libgcov.a stage2
3682 -$(RANLIB_FOR_TARGET) stage2/libgcov.a
3683 -if [ -f libgcc_eh.a ] ; then cp libgcc_eh.a stage2; \
3684 $(RANLIB_FOR_TARGET) stage2/libgcc_eh.a; \
3685 fi
3686 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
3687 cp stage2/$${f} . ; \
3688 else true; \
3689 fi; done
3690stage2: force stage2-start lang.stage2
3691
3692stage3-start:
3693 -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
3694 $(MAKE) -f libgcc.mk libgcc-stage-start stage=stage3
3695 -for dir in intl $(SUBDIRS) ; \
3696 do \
3697 if [ -d stage3/$$dir ] ; then true ; else mkdir stage3/$$dir ; fi ; \
3698 done
3699 -mv $(STAGESTUFF) stage3
3700 -mv intl/*$(objext) stage3/intl
3701# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
3702# dir will work properly.
3703 -if [ -f as$(exeext) ] ; then (cd stage3 && $(LN_S) ../as$(exeext) .) ; else true ; fi
3704 -if [ -f ld$(exeext) ] ; then (cd stage3 && $(LN_S) ../ld$(exeext) .) ; else true ; fi
3705 -if [ -f collect-ld$(exeext) ] ; then (cd stage3 && $(LN_S) ../collect-ld$(exeext) .) ; else true ; fi
3706 -rm -f stage3/libgcc.a stage3/libgcov.a stage3/libgcc_eh.a
3707 -cp libgcc.a stage3
3708 -$(RANLIB_FOR_TARGET) stage3/libgcc.a
3709 -cp libgcov.a stage3
3710 -$(RANLIB_FOR_TARGET) stage3/libgcov.a
3711 -if [ -f libgcc_eh.a ] ; then cp libgcc_eh.a stage3; \
3712 $(RANLIB_FOR_TARGET) stage3/libgcc_eh.a; \
3713 fi
3714 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
3715 cp stage3/$${f} . ; \
3716 else true; \
3717 fi; done
3718stage3: force stage3-start lang.stage3
3719
3720stage4-start:
3721 -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
3722 $(MAKE) -f libgcc.mk libgcc-stage-start stage=stage4
3723 -for dir in intl $(SUBDIRS) ; \
3724 do \
3725 if [ -d stage4/$$dir ] ; then true ; else mkdir stage4/$$dir ; fi ; \
3726 done
3727 -mv $(STAGESTUFF) stage4
3728 -mv intl/*$(objext) stage4/intl
3729# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
3730# dir will work properly.
3731 -if [ -f as$(exeext) ] ; then (cd stage4 && $(LN_S) ../as$(exeext) .) ; else true ; fi
3732 -if [ -f ld$(exeext) ] ; then (cd stage4 && $(LN_S) ../ld$(exeext) .) ; else true ; fi
3733 -if [ -f collect-ld$(exeext) ] ; then (cd stage4 && $(LN_S) ../collect-ld$(exeext) .) ; else true ; fi
3734 -rm -f stage4/libgcc.a stage4/libgcov.a stage4/libgcc_eh.a
3735 -cp libgcc.a stage4
3736 -$(RANLIB_FOR_TARGET) stage4/libgcc.a
3737 -cp libgcov.a stage4
3738 -$(RANLIB_FOR_TARGET) stage4/libgcov.a
3739 -if [ -f libgcc_eh.a ] ; then cp libgcc_eh.a stage4; \
3740 $(RANLIB_FOR_TARGET) stage4/libgcc_eh.a; \
3741 fi
3742 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
3743 cp stage4/$${f} . ; \
3744 else true; \
3745 fi; done
3746stage4: force stage4-start lang.stage4
3747
3748# Copy just the executable files from a particular stage into a subdirectory,
3749# and delete the object files. Use this if you're just verifying a version
3750# that is pretty sure to work, and you are short of disk space.
3751risky-stage1: stage1
3752 -$(MAKE) clean
3753
3754risky-stage2: stage2
3755 -$(MAKE) clean
3756
3757risky-stage3: stage3
3758 -$(MAKE) clean
3759
3760risky-stage4: stage4
3761 -$(MAKE) clean
3762
3763#In GNU Make, ignore whether `stage*' exists.
3764.PHONY: stage1 stage2 stage3 stage4 clean maintainer-clean TAGS bootstrap
3765.PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
3766
3767force:
3768
3769# Rules for generating translated message descriptions.
3770# Disabled by autoconf if the tools are not available.
3771
3772XGETTEXT = @XGETTEXT@
3773GMSGFMT = @GMSGFMT@
3774MSGMERGE = msgmerge
3775
3776PACKAGE = @PACKAGE@
3777CATALOGS = @CATALOGS@
3778
3779.PHONY: build- install- build-po install-po update-po
3780
3781# Dummy rules to deal with dependencies produced by use of
3782# "build-@POSUB@" and "install-@POSUB@" above, when NLS is disabled.
3783build-: ; @true
3784install-: ; @true
3785
3786build-po: $(CATALOGS)
3787
3788# This notation should be acceptable to all Make implementations used
3789# by people who are interested in updating .po files.
3790update-po: $(CATALOGS:.gmo=.pox)
3791
3792# N.B. We do not attempt to copy these into $(srcdir). The snapshot
3793# script does that.
3794.po.gmo:
3795 -test -d po || mkdir po
3796 $(GMSGFMT) --statistics -o $@ $<
3797
3798# The new .po has to be gone over by hand, so we deposit it into
3799# build/po with a different extension.
3800# If build/po/$(PACKAGE).pot exists, use it (it was just created),
3801# else use the one in srcdir.
3802.po.pox:
3803 -test -d po || mkdir po
3804 $(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \
3805 then echo po/$(PACKAGE).pot; \
3806 else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@
3807
3808# This rule has to look for .gmo modules in both srcdir and
3809# the cwd, and has to check that we actually have a catalog
3810# for each language, in case they weren't built or included
3811# with the distribution.
3812install-po:
3813 $(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$(datadir)
3814 for cat in $(CATALOGS); do \
3815 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
3816 if [ -f $$cat ]; then :; \
3817 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
3818 else continue; \
3819 fi; \
3820 dir=$(localedir)/$$lang/LC_MESSAGES; \
3821 echo $(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$$dir; \
3822 $(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$$dir || exit 1; \
3823 echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
3824 $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
3825 done
3826
3827# Rule for regenerating the message template (gcc.pot).
3828# Instead of forcing everyone to edit POTFILES.in, which proved impractical,
3829# this rule has no dependencies and always regenerates gcc.pot. This is
3830# relatively harmless since the .po files do not directly depend on it.
3831# Note that exgettext has an awk script embedded in it which requires a
3832# fairly modern (POSIX-compliant) awk.
3833# The .pot file is left in the build directory.
3834$(PACKAGE).pot: po/$(PACKAGE).pot
3835po/$(PACKAGE).pot: force
3836 -test -d po || mkdir po
3837 $(MAKE) po-generated
3838 AWK=$(AWK) $(SHELL) $(srcdir)/po/exgettext \
3839 $(XGETTEXT) $(PACKAGE) $(srcdir)