]> gcc.gnu.org Git - gcc.git/blob - gcc/Makefile.in
64da030cdbd1c0c3c8190e34849290fb7948036b
[gcc.git] / gcc / Makefile.in
1 # Makefile for GNU C compiler.
2 # Copyright (C) 1987, 88, 90-97, 1998 Free Software Foundation, Inc.
3
4 #This file is part of GNU CC.
5
6 #GNU CC is free software; you can redistribute it and/or modify
7 #it under the terms of the GNU General Public License as published by
8 #the Free Software Foundation; either version 2, or (at your option)
9 #any later version.
10
11 #GNU CC is distributed in the hope that it will be useful,
12 #but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 #GNU General Public License for more details.
15
16 #You should have received a copy of the GNU General Public License
17 #along with GNU CC; see the file COPYING. If not, write to
18 #the Free Software Foundation, 59 Temple Place - Suite 330,
19 #Boston MA 02111-1307, USA.
20
21 # The targets for external use include:
22 # all, doc, proto, install, install-cross, install-cross-rest,
23 # uninstall, TAGS, mostlyclean, clean, distclean, maintainer-clean,
24 # stage1, stage2, stage3, stage4.
25
26 # Suppress smart makes who think they know how to automake Yacc files
27 .y.c:
28
29 # Directory where sources are, from where we are.
30 srcdir = @srcdir@
31 VPATH = @srcdir@
32
33 # Variables that exist for you to override.
34 # See below for how to change them for certain systems.
35
36 # List of language subdirectories.
37 # This is overridden by configure.
38 SUBDIRS =@subdirs@
39
40 # Selection of languages to be made.
41 # This is overridden by configure.
42 LANGUAGES = c proto gcov$(exeext) @all_languages@
43
44 # Selection of languages to be made during stage1 build.
45 # This is overridden by configure.
46 BOOT_LANGUAGES = c @all_boot_languages@
47
48 ALLOCA =
49 ALLOCA_FLAGS =
50 ALLOCA_FINISH = true
51
52 # Various ways of specifying flags for compilations:
53 # CFLAGS is for the user to override to, e.g., do a bootstrap with -O2.
54 # BOOT_CFLAGS is the value of CFLAGS to pass
55 # to the stage2 and stage3 compilations
56 # WARN_CFLAGS are the warning flags to pass to stage2 and stage3. It is
57 # separate from BOOT_CFLAGS because people tend to override optimization
58 # flags and we'd like them to still have warnings turned on. They are free
59 # to explicitly turn warnings off if they wish.
60 # XCFLAGS is used for most compilations but not when using the GCC just built.
61 # TCFLAGS is used for compilations with the GCC just built.
62 XCFLAGS =
63 TCFLAGS =
64 CFLAGS = -g
65 BOOT_CFLAGS = -O2 $(CFLAGS)
66 WARN_CFLAGS = -W -Wall
67 # These exists to be overridden by the x-* and t-* files, respectively.
68 X_CFLAGS =
69 T_CFLAGS =
70
71 X_CPPFLAGS =
72 T_CPPFLAGS =
73
74 CC = @CC@
75 # srcdir might be a relative pathname which won't be valid in a subdirectory,
76 # so we must use objdir/srcdir instead to make it safe. objdir is always
77 # a full pathname.
78 BISON = `if [ -f $(objdir)/../bison/bison ] ; then case $(srcdir) in \
79 /*) echo $(objdir)/../bison/bison -L $(srcdir)/../bison/ ;; \
80 *) echo $(objdir)/../bison/bison -L $(objdir)/$(srcdir)/../bison/ ;; \
81 esac else echo bison ; fi`
82 BISONFLAGS =
83 LEX = `if [ -f $(objdir)/../flex/flex ] ; then echo $(objdir)/../flex/flex ; else echo flex ; fi`
84 LEXFLAGS =
85 AR = ar
86 AR_FLAGS = rc
87 LN = @symbolic_link@
88 DLLTOOL = dlltool
89 SHELL = /bin/sh
90 # on sysV, define this as cp.
91 INSTALL = @INSTALL@
92 # Some systems may be missing symbolic links, regular links, or both.
93 # Allow configure to check this and use "ln -s", "ln", or "cp" as appropriate.
94 LN=@LN@
95 LN_S=@LN_S@
96 # These permit overriding just for certain files.
97 INSTALL_PROGRAM = @INSTALL_PROGRAM@
98 INSTALL_DATA = @INSTALL_DATA@
99 MAKEINFO = makeinfo
100 MAKEINFOFLAGS =
101 TEXI2DVI = texi2dvi
102 # For GNUmake: let us decide what gets passed to recursive makes.
103 MAKEOVERRIDES =
104 @SET_MAKE@
105
106 # Define this as & to perform parallel make on a Sequent.
107 # Note that this has some bugs, and it seems currently necessary
108 # to compile all the gen* files first by hand to avoid erroneous results.
109 P =
110
111 # How to invoke ranlib.
112 RANLIB = ranlib
113 # Test to use to see whether ranlib exists on the system.
114 RANLIB_TEST = [ -f /usr/bin/ranlib -o -f /bin/ranlib ]
115
116 # Compiler to use for compiling libgcc1.a.
117 # OLDCC should not be the GNU C compiler,
118 # since that would compile typical libgcc1.a functions such as mulsi3
119 # into infinite recursions.
120 OLDCC = cc
121
122 # CFLAGS for use with OLDCC, for compiling libgcc1.a.
123 # NOTE: -O does not work on some Unix systems!
124 CCLIBFLAGS = -O
125
126 # Version of ar to use when compiling libgcc1.a.
127 OLDAR = ar
128 OLDAR_FLAGS = qc
129
130 # Target to use when installing include directory. Either
131 # install-headers-tar or install-headers-cpio.
132 INSTALL_HEADERS_DIR = @build_install_headers_dir@
133
134 # Header files that are made available under the same name
135 # to programs compiled with GCC.
136 USER_H = $(srcdir)/ginclude/stdarg.h $(srcdir)/ginclude/stddef.h \
137 $(srcdir)/ginclude/varargs.h $(srcdir)/ginclude/va-alpha.h \
138 $(srcdir)/ginclude/va-h8300.h $(srcdir)/ginclude/va-i860.h \
139 $(srcdir)/ginclude/va-i960.h $(srcdir)/ginclude/va-mips.h \
140 $(srcdir)/ginclude/va-m88k.h $(srcdir)/ginclude/va-mn10200.h \
141 $(srcdir)/ginclude/va-mn10300.h $(srcdir)/ginclude/va-pa.h \
142 $(srcdir)/ginclude/va-pyr.h $(srcdir)/ginclude/va-sparc.h \
143 $(srcdir)/ginclude/va-clipper.h $(srcdir)/ginclude/va-spur.h \
144 $(srcdir)/ginclude/va-m32r.h $(srcdir)/ginclude/va-sh.h \
145 $(srcdir)/ginclude/va-v850.h $(srcdir)/ginclude/va-arc.h \
146 $(srcdir)/ginclude/iso646.h $(srcdir)/ginclude/va-ppc.h \
147 $(EXTRA_HEADERS) $(LANG_EXTRA_HEADERS) \
148 $(srcdir)/ginclude/proto.h $(srcdir)/ginclude/stdbool.h
149
150 # Target to use whe installing assert.h. Some systems may
151 # want to set this empty.
152 INSTALL_ASSERT_H = install-assert-h
153
154 # The GCC to use for compiling libgcc2.a, enquire, and libgcc1-test.
155 # Usually the one we just built.
156 # Don't use this as a dependency--use $(GCC_PASSES) or $(GCC_PARTS).
157 GCC_FOR_TARGET = ./xgcc -B./
158
159 # This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
160 # It omits XCFLAGS, and specifies -B./.
161 # It also specifies -I./include to find, e.g., stddef.h.
162 GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) -I./include $(TCFLAGS)
163
164 # Sed command to transform gcc to installed name. Overwritten by configure.
165 program_transform_name = @program_transform_name@
166 program_transform_cross_name = s,^,$(target_alias)-,
167
168 build_canonical = @build_canonical@
169 host_canonical = @host_canonical@
170
171 # Tools to use when building a cross-compiler.
172 # These are used because `configure' appends `cross-make'
173 # to the makefile when making a cross-compiler.
174
175 # Use the tools from the build tree, if they are available.
176
177 # objdir is set by configure.
178 objdir = @objdir@
179
180 AR_FOR_TARGET = ` \
181 if [ -f $(objdir)/../binutils/ar ] ; then \
182 echo $(objdir)/../binutils/ar ; \
183 else \
184 if [ "$(host_canonical)" = "$(target)" ] ; then \
185 echo ar; \
186 else \
187 t='$(program_transform_name)'; echo ar | sed -e $$t ; \
188 fi; \
189 fi`
190 AR_FOR_TARGET_FLAGS = rc
191 RANLIB_FOR_TARGET = ` \
192 if [ -f $(objdir)/../binutils/ranlib ] ; then \
193 echo $(objdir)/../binutils/ranlib ; \
194 else \
195 if [ "$(host_canonical)" = "$(target)" ] ; then \
196 echo ranlib; \
197 else \
198 t='$(program_transform_name)'; echo ranlib | sed -e $$t ; \
199 fi; \
200 fi`
201 RANLIB_TEST_FOR_TARGET = \
202 [ -f $(RANLIB_FOR_TARGET) ] \
203 || ( [ "$(host_canonical)" = "$(target)" ] \
204 && [ -f /usr/bin/ranlib -o -f /bin/ranlib ] )
205
206 # We always act like a cross-compiler, even when we're
207 # compiling native. This is because we want to use our own tools if
208 # we can. We don't just set RANLIB to a complicated expression,
209 # because the top level Makefile.in might override RANLIB_FOR_TARGET.
210 # These are from the FSF file "cross-make".
211 AR = $(AR_FOR_TARGET)
212 AR_FLAGS = $(AR_FOR_TARGET_FLAGS)
213 OLDAR = $(AR_FOR_TARGET)
214 OLDAR_FLAGS = $(AR_FOR_TARGET_FLAGS)
215 RANLIB = $(RANLIB_FOR_TARGET)
216 RANLIB_TEST = $(RANLIB_TEST_FOR_TARGET)
217
218 # Dir to search for system headers. Overridden by cross-make.
219 SYSTEM_HEADER_DIR = /usr/include
220
221 # Control whether to run fixproto.
222 STMP_FIXPROTO = stmp-fixproto
223
224 # Test to see whether <limits.h> exists in the system header files.
225 LIMITS_H_TEST = [ -f $(SYSTEM_HEADER_DIR)/limits.h ]
226
227 # There may be a premade insn-attrtab.c for this machine.
228 # (You could rebuild it with genattrtab as usual, but it takes a long time.)
229 # PREMADE_ATTRTAB is the file name of the file to use.
230 # PREMADE_ATTRTAB_MD is the md file it corresponds to.
231 PREMADE_ATTRTAB_MD = Makefile # Guaranteed not to cmp equal to md.
232 PREMADE_ATTRTAB =
233
234 target=@target@
235 target_alias=@target_alias@
236 xmake_file=@dep_host_xmake_file@
237 tmake_file=@dep_tmake_file@
238 out_file=$(srcdir)/config/@out_file@
239 out_object_file=@out_object_file@
240 md_file=$(srcdir)/config/@md_file@
241 tm_file=@tm_file_list@
242 build_xm_file=@build_xm_file_list@
243 host_xm_file=@host_xm_file_list@
244 lang_specs_files=@lang_specs_files@
245 lang_options_files=@lang_options_files@
246 GCC_THREAD_FILE=@thread_file@
247 GTHREAD_FLAGS=@gthread_flags@
248 version=@version@
249 mainversion=`sed -e 's/.*\"\([0-9]*\.[0-9]*\).*/\1/' < $(srcdir)/version.c`
250
251 # Common prefix for installation directories.
252 # NOTE: This directory must exist when you start installation.
253 prefix = @prefix@
254 # Directory in which to put localized header files. On the systems with
255 # gcc as the native cc, `local_prefix' may not be `prefix' which is
256 # `/usr'.
257 # NOTE: local_prefix *should not* default from prefix.
258 local_prefix = @local_prefix@
259 # Directory in which to put host dependent programs and libraries
260 exec_prefix = @exec_prefix@
261 # Directory in which to put the executable for the command `gcc'
262 bindir = @bindir@
263 # Directory in which to put the directories used by the compiler.
264 libdir = @libdir@
265 # Directory in which the compiler finds executables, libraries, etc.
266 libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(version)
267 # Directory in which the compiler finds g++ includes.
268 gxx_include_dir= @gxx_include_dir@
269 # Directory in which the old g++ header files may be found.
270 # The reason we use $(libdir)/g++-include rather than using libsubdir
271 # is for compatibility with older versions of libg++.
272 old_gxx_include_dir= $(libdir)/g++-include
273 # Directory to search for site-specific includes.
274 includedir = $(local_prefix)/include
275 # assertdir is overridden in cross-make.
276 # (But this currently agrees with what is in cross-make.)
277 assertdir = $(tooldir)/include
278 # where the info files go
279 infodir = @infodir@
280 # Extension (if any) to put in installed man-page filename.
281 manext = .1
282 objext = .o
283 exeext = @host_exeext@
284 build_exeext = @build_exeext@
285
286 # Directory in which to put man pages.
287 mandir = @mandir@/man1
288 # Directory in which to find other cross-compilation tools and headers.
289 # Used in install-cross.
290 tooldir = $(exec_prefix)/$(target_alias)
291 # Dir for temp files.
292 tmpdir = /tmp
293
294 # Additional system libraries to link with.
295 CLIB=
296
297 # Change this to a null string if obstacks are installed in the
298 # system library.
299 OBSTACK=obstack.o
300
301 # Configure will set these if you need vfprintf and possibly _doprnt support.
302 VFPRINTF=@vfprintf@
303 DOPRINT=@doprint@
304
305 # Specify the rule for actually making libgcc.a,
306 LIBGCC = libgcc.a
307 # and the rule for installing it.
308 INSTALL_LIBGCC = install-libgcc
309
310 # Specify the rule for actually making libgcc1.a.
311 # The value may be empty; that means to do absolutely nothing
312 # with or for libgcc1.a.
313 LIBGCC1 = libgcc1.a
314
315 # Specify the rule for making libgcc1.a for a cross-compiler.
316 # The default rule assumes that libgcc1.a is supplied by the user.
317 CROSS_LIBGCC1 = libgcc1.cross
318
319 # Specify the rule for actually making libgcc2.a.
320 LIBGCC2 = libgcc2.a
321
322 # Options to use when compiling libgcc2.a.
323 # -g1 causes output of debug info only for file-scope entities.
324 # we use this here because that should be enough, and also
325 # so that -g1 will be tested.
326 #
327 LIBGCC2_DEBUG_CFLAGS = -g1
328 LIBGCC2_CFLAGS = -O2 $(LIBGCC2_INCLUDES) $(GCC_CFLAGS) $(TARGET_LIBGCC2_CFLAGS) $(LIBGCC2_DEBUG_CFLAGS) $(GTHREAD_FLAGS) -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED @inhibit_libc@
329
330 # Additional options to use when compiling libgcc2.a.
331 # Some targets override this to -Iinclude
332 LIBGCC2_INCLUDES =
333
334 # Additional target-dependent options for compiling libgcc2.a.
335 TARGET_LIBGCC2_CFLAGS =
336
337 # Things which must be built before building libgcc2.a.
338 # Some targets override this to stmp-int-hdrs
339 LIBGCC2_DEPS =
340
341 # libgcc1-test target (must also be overridable for a target)
342 LIBGCC1_TEST = libgcc1-test
343
344 # List of extra executables that should be compiled for this target machine
345 # that are used for compiling from source code to object code.
346 # The rules for compiling them should be in the t-* file for the machine.
347 EXTRA_PASSES =@extra_passes@
348
349 # Like EXTRA_PASSES, but these are used when linking.
350 EXTRA_PROGRAMS = @extra_programs@
351
352 # List of extra object files that should be compiled for this target machine.
353 # The rules for compiling them should be in the t-* file for the machine.
354 EXTRA_PARTS = @extra_parts@
355
356 # List of extra object files that should be compiled and linked with
357 # compiler proper (cc1, cc1obj, cc1plus).
358 EXTRA_OBJS = @extra_objs@
359
360 # List of extra object files that should be compiled and linked with
361 # the gcc driver.
362 EXTRA_GCC_OBJS =@host_extra_gcc_objs@
363
364 # List of additional header files to install.
365 # Often this is edited directly by `configure'.
366 EXTRA_HEADERS =@extra_headers_list@
367
368 # Set this to `collect2' to enable use of collect2.
369 USE_COLLECT2 = @will_use_collect2@
370 MAYBE_USE_COLLECT2 = @maybe_use_collect2@
371 # It is convenient for configure to add the assignment at the beginning,
372 # so don't override it here.
373 USE_COLLECT2 = collect2$(exeext)
374
375 # List of extra C and assembler files to add to libgcc1.a.
376 # Assembler files should have names ending in `.asm'.
377 LIB1FUNCS_EXTRA =
378
379 # List of extra C and assembler files to add to libgcc2.a.
380 # Assembler files should have names ending in `.asm'.
381 LIB2FUNCS_EXTRA =
382
383 # Default float.h source to use for cross-compiler.
384 # This is overridden by configure.
385 CROSS_FLOAT_H=$(srcdir)/config/float-@float_format@.h
386
387 # We do not try to build float.h anymore. Let configure select the
388 # appropriate pre-built float.h file for the target.
389 FLOAT_H=$(srcdir)/config/float-@float_format@.h
390
391 # Program to convert libraries.
392 LIBCONVERT =
393
394 # Control whether header files are installed.
395 INSTALL_HEADERS=install-headers
396
397 # Options for tar when copying trees. So HPUX can override it.
398 TAROUTOPTS = xpBf
399
400 # Select which version of fixincludes to use (I.E. regular versus SVR4)
401 # This value is overridden directly by configure.
402 FIXINCLUDES = @fixincludes@
403
404 # Additional directories of header files to run fixincludes on.
405 # These should be directories searched automatically by default
406 # just as /usr/include is.
407 # *Do not* use this for directories that happen to contain
408 # header files, but are not searched automatically by default.
409 # On most systems, this is empty.
410 OTHER_FIXINCLUDES_DIRS=
411
412 # A list of all the language-specific executables.
413 # This is overridden by configure.
414 COMPILERS = cc1$(exeext) @all_compilers@
415
416 # List of things which should already be built whenever we try to use xgcc
417 # to compile anything (without linking).
418 GCC_PASSES=xgcc$(exeext) cc1$(exeext) cpp$(exeext) $(EXTRA_PASSES)
419
420 # List of things which should already be built whenever we try to use xgcc
421 # to link anything.
422 GCC_PARTS=$(GCC_PASSES) $(LIBGCC) $(EXTRA_PROGRAMS) $(USE_COLLECT2) $(EXTRA_PARTS)
423
424 # Directory to link to, when using the target `maketest'.
425 DIR = ../gcc
426
427 # Guaranteed to not exist when not passing md through cpp.
428 # This value is overridden directly by configure.
429 MD_FILE = md-cpp-not-used
430
431 # Flags to use when cross-building GCC.
432 # Prefix to apply to names of object files when using them
433 # to run on the machine we are compiling on.
434 HOST_PREFIX=
435 # Prefix to apply to names of object files when compiling them
436 # to run on the machine we are compiling on.
437 # The default for this variable is chosen to keep these rules
438 # out of the way of the other rules for compiling the same source files.
439 HOST_PREFIX_1=loser-
440 HOST_CC=$(CC)
441 HOST_CFLAGS=$(ALL_CFLAGS)
442 HOST_CLIB=$(CLIB)
443 HOST_LDFLAGS=$(LDFLAGS)
444 HOST_CPPFLAGS=$(ALL_CPPFLAGS)
445 HOST_ALLOCA=$(ALLOCA)
446 HOST_MALLOC=$(MALLOC)
447 HOST_OBSTACK=$(OBSTACK)
448 HOST_VFPRINTF=$(VFPRINTF)
449 HOST_DOPRINT=$(DOPRINT)
450
451 # Actual name to use when installing a native compiler.
452 GCC_INSTALL_NAME = `t='$(program_transform_name)'; echo gcc | sed -e $$t`
453
454 # Actual name to use when installing a cross-compiler.
455 GCC_CROSS_NAME = `t='$(program_transform_cross_name)'; echo gcc | sed -e $$t`
456
457 # Choose the real default target.
458 ALL=all.internal
459
460 # Choose the real install target.
461 INSTALL_TARGET=install-normal
462
463 # Setup the testing framework, if you have one
464 EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \
465 echo $${rootme}/../expect/expect ; \
466 else echo expect ; fi`
467
468 RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
469 echo $${srcdir}/../dejagnu/runtest ; \
470 else echo runtest; fi`
471 RUNTESTFLAGS =
472
473 # Extra symbols for fixproto to define when parsing headers.
474 FIXPROTO_DEFINES =
475
476 # Extra flags to use when compiling crt{begin,end}.o.
477 CRTSTUFF_T_CFLAGS =
478
479 # Extra flags to use when compiling [m]crt0.o.
480 CRT0STUFF_T_CFLAGS =
481
482 # "t" or nothing, for building multilibbed versions of, say, crtbegin.o.
483 T =
484
485 # End of variables for you to override.
486
487 # Definition of `all' is here so that new rules inserted by sed
488 # do not specify the default target.
489 # The real definition is under `all.internal' (for native compilers)
490 # or `all.cross' (for cross compilers).
491 all: all.indirect
492
493 # This tells GNU Make version 3 not to put all variables in the environment.
494 .NOEXPORT:
495
496 # sed inserts variable overrides after the following line.
497 ####target overrides
498 @target_overrides@
499
500 ####host overrides
501 @host_overrides@
502
503 ####cross overrides
504 @cross_defines@
505 @cross_overrides@
506
507 ####build overrides
508 @build_overrides@
509 #\f
510 # Now figure out from those variables how to compile and link.
511
512 all.indirect: $(ALL)
513
514 # IN_GCC tells obstack.h that we are using gcc's <stddef.h> file.
515 # ??? IN_GCC should be obsolete now.
516 INTERNAL_CFLAGS = $(CROSS) -DIN_GCC @extra_c_flags@
517
518 # This is the variable actually used when we compile.
519 ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS) \
520 @DEFS@ $(SCHED_CFLAGS)
521
522 # Likewise.
523 ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
524
525 # Even if ALLOCA is set, don't use it if compiling with GCC.
526 USE_ALLOCA= ${ALLOCA}
527 USE_HOST_ALLOCA= ` case "${HOST_ALLOCA}" in ?*) echo ${HOST_PREFIX}${HOST_ALLOCA} ;; esac `
528 USE_HOST_MALLOC= ` case "${HOST_MALLOC}" in ?*) echo ${HOST_PREFIX}${HOST_MALLOC} ;; esac `
529 USE_HOST_OBSTACK= ` case "${HOST_OBSTACK}" in ?*) echo ${HOST_PREFIX}${HOST_OBSTACK} ;; esac `
530 USE_HOST_VFPRINTF= ` case "${HOST_VFPRINTF}" in ?*) echo ${HOST_PREFIX}${HOST_VFPRINTF} ;; esac `
531 USE_HOST_DOPRINT= ` case "${HOST_DOPRINT}" in ?*) echo ${HOST_PREFIX}${HOST_DOPRINT} ;; esac `
532
533 # Dependency on obstack, alloca, malloc or whatever library facilities
534 # are not installed in the system libraries.
535 # We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
536 LIBDEPS= $(OBSTACK) $(ALLOCA) $(MALLOC) $(VFPRINTF) $(DOPRINT)
537
538 # Likewise, for use in the tools that must run on this machine
539 # even if we are cross-building GCC.
540 # We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
541 HOST_LIBDEPS= $(HOST_PREFIX)$(HOST_OBSTACK) $(HOST_PREFIX)$(HOST_ALLOCA) $(HOST_PREFIX)$(HOST_MALLOC) $(HOST_PREFIX)$(HOST_VFPRINTF) $(HOST_PREFIX)$(HOST_DOPRINT)
542
543 # How to link with both our special library facilities
544 # and the system's installed libraries.
545 LIBS = $(OBSTACK) $(USE_ALLOCA) $(MALLOC) $(VFPRINTF) $(DOPRINT) $(CLIB)
546
547 # Likewise, for use in the tools that must run on this machine
548 # even if we are cross-building GCC.
549 HOST_LIBS = $(USE_HOST_OBSTACK) $(USE_HOST_ALLOCA) $(USE_HOST_MALLOC) \
550 $(USE_HOST_VFPRINTF) $(USE_HOST_DOPRINT) $(HOST_CLIB)
551
552 HOST_RTL = $(HOST_PREFIX)rtl.o $(HOST_PREFIX)bitmap.o
553 HOST_RTLANAL = $(HOST_PREFIX)rtlanal.o
554 HOST_PRINT = $(HOST_PREFIX)print-rtl.o
555
556 # Specify the directories to be searched for header files.
557 # Both . and srcdir are used, in that order,
558 # so that tm.h and config.h will be found in the compilation
559 # subdirectory rather than in the source directory.
560 INCLUDES = -I. -I$(srcdir) -I$(srcdir)/config
561
562 # Always use -I$(srcdir)/config when compiling.
563 .c.o:
564 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $<
565
566 # This tells GNU make version 3 not to export all the variables
567 # defined in this file into the environment.
568 .NOEXPORT:
569 #\f
570 # Support for additional languages (other than c and objc).
571 # ??? objc can be supported this way too (leave for later).
572
573 # These next lines are overridden by configure.
574 LANG_MAKEFILES = @all_lang_makefiles@
575 LANG_STAGESTUFF = @all_stagestuff@
576 LANG_DIFF_EXCLUDES = @all_diff_excludes@
577 LANG_LIB2FUNCS = @all_lib2funcs@
578 LANG_EXTRA_HEADERS = @all_headers@
579
580 # Flags to pass to recursive makes.
581 # CC is set by configure. Hosts without symlinks need special handling
582 # because we need CC="stage1/xgcc -Bstage1/" to work in the language
583 # subdirectories.
584 # ??? The choices here will need some experimenting with.
585 FLAGS_TO_PASS = \
586 "AR_FLAGS=$(AR_FLAGS)" \
587 "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
588 "BISON=$(BISON)" \
589 "BISONFLAGS=$(BISONFLAGS)" \
590 "CC=@cc_set_by_configure@" \
591 "CFLAGS=$(CFLAGS)" \
592 "CLIB=$(CLIB)" \
593 "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
594 "LDFLAGS=$(LDFLAGS)" \
595 "LEX=$(LEX)" \
596 "LEXFLAGS=$(LEXFLAGS)" \
597 "LN=$(LN)" \
598 "LN_S=$(LN_S)" \
599 "MAKEINFO=$(MAKEINFO)" \
600 "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
601 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
602 "RANLIB_TEST_FOR_TARGET=$(RANLIB_TEST_FOR_TARGET)" \
603 "SHELL=$(SHELL)" \
604 "STAGE_PREFIX=@stage_prefix_set_by_configure@" \
605 "exeext=$(exeext)" \
606 "build_exeext=$(build_exeext)" \
607 "objext=$(objext)" \
608 "exec_prefix=$(exec_prefix)" \
609 "prefix=$(prefix)" \
610 "local_prefix=$(local_prefix)" \
611 "gxx_include_dir=$(gxx_include_dir)" \
612 "tooldir=$(tooldir)" \
613 "bindir=$(bindir)" \
614 "libsubdir=$(libsubdir)"
615 #\f
616 # Lists of files for various purposes.
617
618 # Language-specific object files for C and Objective C.
619 C_AND_OBJC_OBJS = c-lex.o c-pragma.o c-decl.o c-typeck.o c-convert.o \
620 c-aux-info.o c-common.o c-iterate.o @extra_c_objs@
621
622 # Language-specific object files for C.
623 C_OBJS = c-parse.o c-lang.o $(C_AND_OBJC_OBJS)
624
625 SCHED_PREFIX = @sched_prefix@
626 SCHED_CFLAGS = @sched_cflags@
627
628 # Language-independent object files.
629 OBJS = toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
630 function.o stmt.o except.o expr.o calls.o expmed.o explow.o optabs.o \
631 varasm.o rtl.o print-rtl.o rtlanal.o emit-rtl.o genrtl.o real.o regmove.o \
632 dbxout.o sdbout.o dwarfout.o dwarf2out.o xcoffout.o bitmap.o alias.o \
633 integrate.o jump.o cse.o loop.o unroll.o flow.o stupid.o combine.o \
634 regclass.o local-alloc.o global.o reload.o reload1.o caller-save.o gcse.o \
635 insn-peep.o reorg.o $(SCHED_PREFIX)sched.o final.o recog.o reg-stack.o \
636 insn-opinit.o insn-recog.o insn-extract.o insn-output.o insn-emit.o \
637 profile.o insn-attrtab.o $(out_object_file) getpwd.o $(EXTRA_OBJS) convert.o
638
639 # GEN files are listed separately, so they can be built before doing parallel
640 # makes for cc1 or cc1plus. Otherwise sequent parallel make attempts to load
641 # them before rtl.o is compiled.
642 GEN= genemit genoutput genrecog genextract genflags gencodes genconfig \
643 genpeep gengenrtl gencheck
644
645 CCCP=@cpp_main@
646
647 # Files to be copied away after each stage in building.
648 STAGESTUFF = *$(objext) insn-flags.h insn-config.h insn-codes.h \
649 insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
650 insn-attr.h insn-attrtab.c insn-opinit.c genrtl.c genrtl.h tree-check.h \
651 s-flags s-config s-codes s-mlib \
652 s-output s-recog s-emit s-extract s-peep \
653 s-attr s-attrtab s-opinit s-crt s-crtS s-crt0 \
654 genemit$(build_exeext) genoutput$(build_exeext) genrecog$(build_exeext) \
655 genextract$(build_exeext) genflags$(build_exeext) gencodes$(build_exeext) \
656 genconfig$(build_exeext) genpeep$(build_exeext) genattrtab$(build_exeext) \
657 genattr$(build_exeext) genopinit$(build_exeext) gengenrtl$(build_exeext) \
658 gencheck$(build_exeext) \
659 xgcc$(exeext) cc1$(exeext) cpp$(exeext) $(EXTRA_PASSES) \
660 $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross$(exeext) \
661 $(CCCP)$(exeext) cc1obj$(exeext) enquire$(exeext) \
662 protoize$(exeext) unprotoize$(exeext) \
663 specs collect2$(exeext) $(USE_COLLECT2) underscore.c \
664 gcov$(exeext) *.bp \
665 *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop \
666 *.dbr *.jump2 *.sched *.cse2 *.sched2 *.stack *.gcse \
667 *.[si] \
668 $(LANG_STAGESTUFF)
669
670 # Members of libgcc1.a.
671 LIB1FUNCS = _mulsi3 _udivsi3 _divsi3 _umodsi3 _modsi3 \
672 _lshrsi3 _ashrsi3 _ashlsi3 \
673 _divdf3 _muldf3 _negdf2 _adddf3 _subdf3 \
674 _fixdfsi _fixsfsi _floatsidf _floatsisf _truncdfsf2 _extendsfdf2 \
675 _addsf3 _negsf2 _subsf3 _mulsf3 _divsf3 \
676 _eqdf2 _nedf2 _gtdf2 _gedf2 _ltdf2 _ledf2 \
677 _eqsf2 _nesf2 _gtsf2 _gesf2 _ltsf2 _lesf2
678
679 # Library members defined in libgcc2.c.
680 LIB2FUNCS = _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 \
681 _lshrdi3 _ashldi3 _ashrdi3 _ffsdi2 \
682 _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2 _floatdidf _floatdisf \
683 _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi _fixunssfdi _fixsfdi \
684 _fixxfdi _fixunsxfdi _floatdixf _fixunsxfsi \
685 _fixtfdi _fixunstfdi _floatditf \
686 __gcc_bcmp _varargs __dummy _eprintf \
687 _bb _shtab _clear_cache _trampoline __main _exit \
688 _ctors _pure
689
690 LIB2FUNCS_EH = _eh
691
692 FPBIT_FUNCS = _pack_sf _unpack_sf _addsub_sf _mul_sf _div_sf \
693 _fpcmp_parts_sf _compare_sf _eq_sf _ne_sf _gt_sf _ge_sf \
694 _lt_sf _le_sf _si_to_sf _sf_to_si _negate_sf _make_sf \
695 _sf_to_df
696
697 DPBIT_FUNCS = _pack_df _unpack_df _addsub_df _mul_df _div_df \
698 _fpcmp_parts_df _compare_df _eq_df _ne_df _gt_df _ge_df \
699 _lt_df _le_df _si_to_df _df_to_si _negate_df _make_df \
700 _df_to_sf
701
702 # The files that "belong" in CONFIG_H are deliberately omitted
703 # because having them there would not be useful in actual practice.
704 # All they would do is cause complete recompilation every time
705 # one of the machine description files is edited.
706 # That may or may not be what one wants to do.
707 # If it is, rm *.o is an easy way to do it.
708 # CONFIG_H = $(host_xm_file) $(tm_file)
709 CONFIG_H =
710 RTL_BASE_H = rtl.h rtl.def gansidecl.h machmode.h machmode.def
711 RTL_H = $(RTL_BASE_H) genrtl.h
712 TREE_H = tree.h real.h tree.def gansidecl.h machmode.h machmode.def tree-check.h
713 BASIC_BLOCK_H = basic-block.h bitmap.h
714 DEMANGLE_H = demangle.h gansidecl.h
715 RECOG_H = recog.h gansidecl.h
716 #\f
717 # Language makefile fragments.
718
719 # The following targets define the interface between us and the languages.
720 #
721 # all.build, all.cross, start.encap, rest.encap,
722 # info, dvi,
723 # install-normal, install-common, install-info, install-man,
724 # uninstall, distdir,
725 # mostlyclean, clean, distclean, extraclean, maintainer-clean,
726 # stage1, stage2, stage3, stage4
727 #
728 # Each language is linked in with a series of hooks (since we can't use `::'
729 # targets). The name of each hooked is "lang.${target_name}" (eg: lang.info).
730 # Configure computes and adds these here.
731
732 ####language hooks
733 @language_hooks@
734
735 # sed inserts language fragments after the following line.
736 ####language fragments
737 @language_fragments@
738
739 # End of language makefile fragments.
740 #\f
741 # The only suffixes we want for implicit rules are .c and .o, so clear
742 # the list and add them. This speeds up GNU Make, and allows -r to work.
743 .SUFFIXES:
744 .SUFFIXES: .c .o
745
746 Makefile: $(srcdir)/Makefile.in config.status $(srcdir)/version.c \
747 $(xmake_file) $(tmake_file) $(LANG_MAKEFILES)
748 $(SHELL) $(srcdir)/configure.frag $(srcdir) "$(SUBDIRS)" \
749 "$(xmake_file)" "$(tmake_file)"
750 cp config.status config.run
751 $(SHELL) config.run
752 rm -f config.run
753
754 $(srcdir)/configure: $(srcdir)/configure.in
755 cd $(srcdir); autoconf
756
757 # cstamp-h.in controls rebuilding of config.in.
758 # It is named cstamp-h.in and not stamp-h.in so the mostlyclean rule doesn't
759 # delete it. A stamp file is needed as autoheader won't update the file if
760 # nothing has changed.
761 # It remains in the source directory and is part of the distribution.
762 # This follows what is done in shellutils, fileutils, etc.
763 # "echo timestamp" is used instead of touch to be consistent with other
764 # packages that use autoconf (??? perhaps also to avoid problems with patch?).
765 # ??? Newer versions have a maintainer mode that may be useful here.
766 $(srcdir)/config.in: $(srcdir)/cstamp-h.in
767 $(srcdir)/cstamp-h.in: $(srcdir)/configure.in $(srcdir)/acconfig.h
768 cd $(srcdir) && autoheader
769 @rm -f $(srcdir)/cstamp-h.in
770 echo timestamp > $(srcdir)/cstamp-h.in
771 auto-host.h: cstamp-h ; @true
772 cstamp-h: config.in config.status
773 CONFIG_HEADERS=auto-host.h:config.in $(SHELL) config.status
774
775 # Really, really stupid make features, such as SUN's KEEP_STATE, may force
776 # a target to build even if it is up-to-date. So we must verify that
777 # config.status does not exist before failing.
778 config.status: configure version.c
779 @if [ ! -f config.status ] ; then \
780 echo You must configure gcc. Look at the INSTALL file for details.; \
781 false; \
782 else \
783 $(SHELL) config.status --recheck; \
784 fi
785
786 all.internal: start.encap rest.encap
787 # This is what to compile if making a cross-compiler.
788 # Note that we can compile enquire using the cross-compiler just built,
789 # although we can't run it on this machine.
790 all.cross: native gcc-cross specs stmp-headers $(STMP_FIXPROTO) $(LIBGCC) \
791 $(LIBGCC1_TEST) $(EXTRA_PARTS) lang.all.cross
792 # This is what to compile if making gcc with a cross-compiler.
793 all.build: native xgcc$(exeext) $(EXTRA_PARTS) lang.all.build
794 # This is what must be made before installing GCC and converting libraries.
795 start.encap: native xgcc$(exeext) specs $(LIBGCC1) xlimits.h lang.start.encap
796 # These can't be made until after GCC can run.
797 rest.encap: stmp-headers $(STMP_FIXPROTO) $(LIBGCC) $(EXTRA_PARTS) lang.rest.encap
798 # This is what is made with the host's compiler
799 # whether making a cross compiler or not.
800 native: config.status auto-host.h cpp$(exeext) $(LANGUAGES) \
801 $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2)
802
803 # Define the names for selecting languages in LANGUAGES.
804 C c: cc1$(exeext)
805 PROTO: proto
806
807 # Tell GNU make these are phony targets.
808 .PHONY: C c PROTO proto
809
810 # On the target machine, finish building a cross compiler.
811 # This does the things that can't be done on the host machine.
812 rest.cross: $(LIBGCC) gfloat.h specs
813
814 # Verify that it works to compile and link libgcc1-test.
815 # If it does, then there are sufficient replacements for libgcc1.a.
816 libgcc1-test: libgcc1-test.o native $(GCC_PARTS)
817 @echo "Testing libgcc1. Ignore linker warning messages."
818 $(GCC_FOR_TARGET) $(GCC_CFLAGS) libgcc1-test.o -o libgcc1-test \
819 -nostartfiles -nostdlib `$(GCC_FOR_TARGET) --print-libgcc-file-name`
820 libgcc1-test.o: libgcc1-test.c native xgcc$(exeext)
821 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -c $(srcdir)/libgcc1-test.c
822
823 # Recompile all the language-independent object files.
824 # This is used only if the user explicitly asks for it.
825 compilations: ${OBJS}
826
827 # Create a list of the language-independent object files so the language
828 # subdirectories needn't mention their names explicitly.
829 stamp-objlist: $(OBJS)
830 echo " $(OBJS)" | sed -e 's, \([a-z0-9]\), ../\1,g' -e 's/\.o/$(objext)/g' >stamp-objlist
831
832 # We call this executable `xgcc' rather than `gcc'
833 # to avoid confusion if the current directory is in the path
834 # and CC is `gcc'. It is renamed to `gcc' when it is installed.
835 xgcc$(exeext): gcc.o version.o choose-temp.o pexecute.o prefix.o version.o \
836 $(LIBDEPS) $(EXTRA_GCC_OBJS)
837 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o prefix.o version.o \
838 choose-temp.o pexecute.o $(EXTRA_GCC_OBJS) $(LIBS)
839
840 # Dump a specs file to make -B./ read these specs over installed ones.
841 specs: xgcc$(exeext)
842 $(GCC_FOR_TARGET) -dumpspecs > tmp-specs
843 mv tmp-specs specs
844
845 # We do want to create an executable named `xgcc', so we can use it to
846 # compile libgcc2.a.
847 # Also create gcc-cross, so that install-common will install properly.
848 gcc-cross: xgcc$(exeext)
849 cp xgcc$(exeext) gcc-cross$(exeext)
850
851 cc1$(exeext): $(P) $(C_OBJS) $(OBJS) $(LIBDEPS)
852 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(C_OBJS) $(OBJS) $(LIBS)
853
854 # Copy float.h from its source.
855 gfloat.h: $(FLOAT_H)
856 -rm -f gfloat.h
857 cp $(FLOAT_H) gfloat.h
858
859 # Build the version of limits.h that we will install.
860 xlimits.h: glimits.h limitx.h limity.h
861 if $(LIMITS_H_TEST) ; then \
862 cat $(srcdir)/limitx.h $(srcdir)/glimits.h $(srcdir)/limity.h > tmp-xlimits.h; \
863 else \
864 cat $(srcdir)/glimits.h > tmp-xlimits.h; \
865 fi
866 mv tmp-xlimits.h xlimits.h
867 #\f
868 # Build libgcc.a.
869 # This is done in two parts because some functions, in libgcc1.c,
870 # must be compiled with something other than GCC,
871 # while the rest, in libgcc2.c, must be compiled with xgcc.
872 # That means we can't do libgcc2.c until after xgcc, cc1, etc.
873
874 # Use this as value of LIBGCC1 to cause conversion to GNU library format.
875 # LIBCONVERT should put its output in libgcc1.conv.
876 libgcc1.conv: libgcc1.a
877 $(LIBCONVERT) libgcc1.a libgcc1.conv
878
879 # Use this as value of LIBGCC1 to inhibit use of libgcc1.c entirely.
880 # Make an empty file instead.
881 libgcc1.null: $(GCC_PASSES)
882 echo "void __foo () {}" > dummy.c
883 $(GCC_FOR_TARGET) $(GCC_CFLAGS) -c dummy.c
884 $(OLDAR) $(OLDAR_FLAGS) libgcc1.null dummy$(objext)
885 rm -f dummy$(objext) dummy.c
886
887 # This is $(LIBGCC1) for a cross-compiler.
888 # We have no automatic way of building libgcc1.a,
889 # so it's up to the installer to find a way to do that.
890 # This rule deliberately does not depend on libgcc1.a
891 # so that it will fail if the installer hasn't provided it.
892 libgcc1.cross:
893 mv libgcc1.a libgcc1.cross || (echo You must find a way to make libgcc1.a; false)
894
895 # Compile the library of arithmetic subroutines with the native compiler.
896 # Don't compile it with GCC!
897 # (That would cause most arithmetic functions to call themselves.)
898 #
899 # NOTE: If you modify these rules substantially, please be sure to
900 # check at least config/i386/t-sco5 and possibly other makefile
901 # fragments.
902 libgcc1.a: libgcc1.c $(CONFIG_H) $(LIB1FUNCS_EXTRA) config.status
903 -rm -f tmplibgcc1.a
904 # Actually build it in tmplibgcc1.a, then rename at end,
905 # so that libgcc1.a itself remains nonexistent if compilation is aborted.
906 # -e causes any failing command to make this rule fail.
907 # -e doesn't work in certain shells, so we test $$? as well.
908 # lynx has a broken ar, it always complains when the initial library is
909 # empty, thus this command works only if we don't do -e
910 # There is a trailing backslash (\) deleted from the following line.
911 # set -e;
912 for name in $(LIB1FUNCS); \
913 do \
914 echo $${name}; \
915 rm -f $${name}$(objext); \
916 $(OLDCC) -DIN_LIBGCC1 $(CCLIBFLAGS) $(INCLUDES) -c -DL$${name} $(srcdir)/libgcc1.c; \
917 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
918 mv libgcc1$(objext) $${name}$(objext); \
919 $(OLDAR) $(OLDAR_FLAGS) tmplibgcc1.a $${name}$(objext); \
920 rm -f $${name}$(objext); \
921 done
922 # Some shells crash when a loop has no items.
923 # So make sure there is always at least one--`..'.
924 # Then ignore it.
925 # We don't use -e here because there are if statements
926 # that should not make the command give up when the if condition is false.
927 # Instead, we test for failure after each command where it matters.
928 for file in .. $(LIB1FUNCS_EXTRA); \
929 do \
930 if [ x$${file} != x.. ]; then \
931 name=`echo $${file} | sed -e 's/[.][cS]$$//' -e 's/[.]asm$$//'`; \
932 echo $${name}; \
933 if [ $${name}.asm = $${file} ]; then \
934 cp $${file} $${name}.s || exit 1; file=$${name}.s; \
935 else true; fi; \
936 $(OLDCC) -DIN_LIBGCC1 $(CCLIBFLAGS) $(INCLUDES) -c $${file}; \
937 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
938 $(OLDAR) $(OLDAR_FLAGS) tmplibgcc1.a $${name}$(objext); \
939 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
940 rm -f $${name}.s $${name}$(objext); \
941 else true; \
942 fi; \
943 done
944 -if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc1.a; else true; fi
945 mv tmplibgcc1.a libgcc1.a
946
947 # Build libgcc1.a from assembler source. LIB1ASMFUNCS is the list of
948 # functions. LIB1ASMSRC is the name of the source file in the config
949 # subdirectory.
950 libgcc1-asm.a: libgcc2.ready config.status $(srcdir)/config/$(LIB1ASMSRC)
951 -rm -f tmplibgcc1.a libgcc1.S
952 cp $(srcdir)/config/$(LIB1ASMSRC) libgcc1.S
953 # Actually build it in tmplibgcc1.a, then rename at end,
954 # so that libgcc1-asm.a itself remains nonexistent if compilation is aborted.
955 # -e causes any failing command to make this rule fail.
956 # -e doesn't work in certain shells, so we test $$? as well.
957 # lynx has a broken ar, it always complains when the initial library is
958 # empty, thus this command works only if we don't do -e
959 # There is a trailing backslash (\) deleted from the following line.
960 # set -e;
961 for name in $(LIB1ASMFUNCS); \
962 do \
963 echo $${name}; \
964 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} libgcc1.S; \
965 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
966 mv libgcc1$(objext) $${name}$(objext); \
967 $(AR) $(AR_FLAGS) tmplibgcc1.a $${name}$(objext); \
968 rm -f $${name}$(objext); \
969 done
970 -rm -f libgcc1.S
971 mv tmplibgcc1.a libgcc1-asm.a
972
973 # Generate assembly versions of the functions required for libgcc1.
974 # You'll still need to massage the code by hand (possibly hacking
975 # underscores and local labels) but this will get you started.
976 libgcc1.S: libgcc1.c $(CONFIG_H) config.status
977 -rm -f libgcc1.S
978 touch libgcc1.S
979 for name in $(LIB1FUNCS); \
980 do \
981 echo $${name}; \
982 $(OLDCC) -DIN_LIBGCC1 $(CCLIBFLAGS) $(INCLUDES) -S -DL$${name} $(srcdir)/libgcc1.c; \
983 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
984 echo '#ifdef ' L$${name} >> libgcc1.S; \
985 cat libgcc1.s >> libgcc1.S; \
986 echo '#endif /*' L$${name} '*/' >> libgcc1.S; \
987 echo "" >> libgcc1.S; \
988 done
989
990 # Compiling libgcc2.a requires making sure that cc1, etc. have been compiled.
991 # But recompiling cc1 should not force recompilation of libgcc2.a.
992 # If you want to force recompilation, delete libgcc2.a.
993 libgcc2.ready: $(GCC_PASSES) $(LIBGCC2_DEPS) stmp-int-hdrs $(STMP_FIXPROTO)
994 -if [ -f libgcc2.ready ] ; then \
995 true; \
996 else \
997 touch libgcc2.ready; \
998 fi
999
1000 LIB2ADD = $(srcdir)/frame.c $(LIB2FUNCS_EXTRA) $(LANG_LIB2FUNCS)
1001 libgcc2.a: libgcc2.c libgcc2.ready $(CONFIG_H) $(FPBIT) $(DPBIT) $(LIB2ADD) \
1002 machmode.h longlong.h frame.h gansidecl.h gbl-ctors.h config.status
1003 # Actually build it in tmplibgcc2.a, then rename at end,
1004 # so that libgcc2.a itself remains nonexistent if compilation is aborted.
1005 -rm -f tmplibgcc2.a
1006 # -e causes any failing command to make this rule fail.
1007 # -e doesn't work in certain shells, so we test $$? as well.
1008 # lynx has a broken ar, it always complains when the initial library is
1009 # empty, thus this command works only if we don't do -e
1010 # There is a trailing backslash (\) deleted from the following line.
1011 # set -e;
1012 for name in $(LIB2FUNCS); \
1013 do \
1014 echo $${name}; \
1015 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} \
1016 $(srcdir)/libgcc2.c -o $${name}$(objext); \
1017 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
1018 $(AR) $(AR_FLAGS) tmplibgcc2.a $${name}$(objext); \
1019 rm -f $${name}$(objext); \
1020 done
1021 for name in $(LIB2FUNCS_EH); \
1022 do \
1023 echo $${name}; \
1024 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -fexceptions $(INCLUDES) -c \
1025 -DL$${name} $(srcdir)/libgcc2.c -o $${name}$(objext); \
1026 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
1027 $(AR) $(AR_FLAGS) tmplibgcc2.a $${name}$(objext); \
1028 rm -f $${name}$(objext); \
1029 done
1030 if [ x$(FPBIT) != x ]; then \
1031 for name in $(FPBIT_FUNCS); \
1032 do \
1033 echo $${name}; \
1034 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} \
1035 -DFINE_GRAINED_LIBRARIES $(FPBIT) -o $${name}$(objext); \
1036 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
1037 $(AR) $(AR_FLAGS) tmplibgcc2.a $${name}$(objext); \
1038 rm -f $${name}$(objext); \
1039 done; \
1040 else true; fi;
1041 if [ x$(DPBIT) != x ]; then \
1042 for name in $(DPBIT_FUNCS); \
1043 do \
1044 echo $${name}; \
1045 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} \
1046 -DFINE_GRAINED_LIBRARIES $(DPBIT) -o $${name}$(objext); \
1047 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
1048 $(AR) $(AR_FLAGS) tmplibgcc2.a $${name}$(objext); \
1049 rm -f $${name}$(objext); \
1050 done; \
1051 else true; fi;
1052 # Some shells crash when a loop has no items.
1053 # So make sure there is always at least one--`..'.
1054 # Then ignore it.
1055 # We don't use -e here because there are if statements
1056 # that should not make the command give up when the if condition is false.
1057 # Instead, we test for failure after each command where it matters.
1058 for file in $(LIB2ADD); do \
1059 name=`echo $${file} | sed -e 's/[.][cSo]$$//' -e 's/[.]asm$$//' -e 's/[.]txt$$//'`; \
1060 oname=` echo $${name} | sed -e 's,.*/,,'`; \
1061 if [ $${name}.txt = $${file} ]; then \
1062 for f in .. `cat $${file}`; do if [ x$${f} != x.. ]; then \
1063 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
1064 AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" CC="$(CC)" \
1065 CFLAGS="$(CFLAGS)" HOST_PREFIX="$(HOST_PREFIX)" \
1066 HOST_PREFIX_1="$(HOST_PREFIX_1)" \
1067 LANGUAGES="$(LANGUAGES)" \
1068 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" $${f}; \
1069 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
1070 $(AR) $(AR_FLAGS) tmplibgcc2.a $${f}; \
1071 rm -f $${f}; \
1072 else true; \
1073 fi; done; \
1074 else \
1075 echo $${name}; \
1076 if [ $${name}.asm = $${file} ]; then \
1077 cp $${file} $${name}.s || exit 1; file=$${name}.s; \
1078 else true; fi; \
1079 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c $${file}; \
1080 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
1081 $(AR) $(AR_FLAGS) tmplibgcc2.a $${oname}$(objext); \
1082 rm -f $${name}.s $${oname}$(objext); \
1083 fi; \
1084 done
1085 mv tmplibgcc2.a libgcc2.a
1086 # These lines were deleted from above the mv command
1087 # because ranlibing libgcc.a itself should suffice.
1088 # -if [ x${HPUX_GAS} = x ] ; then \
1089 # if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc2.a; else true; fi; \
1090 # else true; fi
1091
1092 # Combine the various libraries into a single library, libgcc.a.
1093 libgcc.a: $(LIBGCC1) $(LIBGCC2)
1094 -rm -rf tmplibgcc.a libgcc.a tmpcopy
1095 mkdir tmpcopy
1096 -if [ x$(LIBGCC1) != x ]; \
1097 then (cd tmpcopy; $(AR) x ../$(LIBGCC1)); \
1098 else true; \
1099 fi
1100 # Some versions of ar (specifically the one in RISC/os 5.x), create an
1101 # unwritable table of contents file, and then print an error message when
1102 # the second ar command tries to overwrite this file. To avoid the error
1103 # message from ar, we make sure all files are writable.
1104 -(cd tmpcopy; chmod +w * > /dev/null 2>&1)
1105 (cd tmpcopy; $(AR) x ../$(LIBGCC2))
1106 (cd tmpcopy; $(AR) $(AR_FLAGS) ../tmplibgcc.a *$(objext))
1107 rm -rf tmpcopy
1108 -if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc.a; else true; fi
1109 # Actually build it in tmplibgcc.a, then rename at end,
1110 # so that libgcc.a itself remains nonexistent if compilation is aborted.
1111 mv tmplibgcc.a libgcc.a
1112
1113 # Use the genmultilib shell script to generate the information the gcc
1114 # driver program needs to select the library directory based on the
1115 # switches.
1116 multilib.h: s-mlib; @true
1117 s-mlib: $(srcdir)/genmultilib Makefile
1118 $(SHELL) $(srcdir)/genmultilib \
1119 "$(MULTILIB_OPTIONS)" \
1120 "$(MULTILIB_DIRNAMES)" \
1121 "$(MULTILIB_MATCHES)" \
1122 "$(MULTILIB_EXCEPTIONS)" \
1123 "$(MULTILIB_EXTRA_OPTS)" > tmp-mlib.h
1124 $(srcdir)/move-if-change tmp-mlib.h multilib.h
1125 touch s-mlib
1126
1127 # Build multiple copies of libgcc.a, one for each target switch.
1128 stmp-multilib: $(LIBGCC1) libgcc2.c libgcc2.ready $(CONFIG_H) \
1129 frame.h gansidecl.h \
1130 $(LIB2ADD) machmode.h longlong.h gbl-ctors.h config.status
1131 for i in `$(GCC_FOR_TARGET) --print-multi-lib`; do \
1132 dir=`echo $$i | sed -e 's/;.*$$//'`; \
1133 flags=`echo $$i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \
1134 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
1135 AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" CC="$(CC)" CFLAGS="$(CFLAGS)" \
1136 RANLIB="$(RANLIB)" RANLIB_TEST="$(RANLIB_TEST)" \
1137 LANGUAGES="$(LANGUAGES)" \
1138 HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \
1139 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS) $${flags}" \
1140 MULTILIB_CFLAGS="$${flags}" \
1141 LIBGCC1="$(LIBGCC1)" LIBGCC2="$(LIBGCC2)" \
1142 dir="$${dir}" stmp-multilib-sub; \
1143 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
1144 done
1145 touch stmp-multilib
1146
1147 # Subroutine of stmp-multilib so make -n works.
1148 stmp-multilib-sub:
1149 rm -f $(LIBGCC2)
1150 if [ -d $(dir) ]; then \
1151 cd $(dir); \
1152 rm -f libgcc.a $(EXTRA_MULTILIB_PARTS); \
1153 else true; \
1154 fi
1155 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
1156 AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" CC="$(CC)" CFLAGS="$(CFLAGS)" \
1157 HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \
1158 LANGUAGES="$(LANGUAGES)" \
1159 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" $(LIBGCC2)
1160 if [ x$(LIBGCC1) != xlibgcc1-asm.a ]; \
1161 then true; \
1162 else rm -f $(LIBGCC1); \
1163 fi
1164 if [ x$(LIBGCC1) != xlibgcc1-asm.a ]; \
1165 then true; \
1166 else \
1167 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
1168 AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" CC="$(CC)" CFLAGS="$(CFLAGS)" \
1169 HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \
1170 LANGUAGES="$(LANGUAGES)" \
1171 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" $(LIBGCC1); \
1172 fi
1173 rm -rf tmplibgcc.a tmpcopy
1174 mkdir tmpcopy
1175 if [ x$(LIBGCC1) != x ]; \
1176 then (cd tmpcopy; $(AR) x ../$(LIBGCC1)); \
1177 else true; \
1178 fi
1179 (cd tmpcopy; $(AR) x ../$(LIBGCC2))
1180 (cd tmpcopy; $(AR) $(AR_FLAGS) ../tmplibgcc.a *$(objext))
1181 rm -rf libgcc2.a tmpcopy
1182 if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc.a; else true; fi
1183 if [ -d $(dir) ]; then true; else mkdir $(dir); fi
1184 mv tmplibgcc.a $(dir)/libgcc.a
1185 for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
1186 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
1187 AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" CC="$(CC)" CFLAGS="$(CFLAGS)" \
1188 HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \
1189 LANGUAGES="$(LANGUAGES)" \
1190 MULTILIB_CFLAGS="$(MULTILIB_CFLAGS)" T="t" t$${f}; \
1191 mv t$${f} $(dir)/$${f}; \
1192 else true; \
1193 fi; done
1194
1195 # Compile two additional files that are linked with every program
1196 # linked using GCC on systems using COFF or ELF, for the sake of C++
1197 # constructors.
1198 $(T)crtbegin.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \
1199 defaults.h frame.h gbl-ctors.h
1200 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
1201 -finhibit-size-directive -fno-inline-functions -fno-exceptions $(CRTSTUFF_T_CFLAGS) \
1202 -c $(srcdir)/crtstuff.c -DCRT_BEGIN -o $(T)crtbegin$(objext)
1203
1204 $(T)crtend.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \
1205 defaults.h frame.h gbl-ctors.h
1206 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
1207 -finhibit-size-directive -fno-inline-functions -fno-exceptions $(CRTSTUFF_T_CFLAGS) \
1208 -c $(srcdir)/crtstuff.c -DCRT_END -o $(T)crtend$(objext)
1209
1210 # On some systems we also want to install versions of these files
1211 # compiled using PIC for use in shared libraries.
1212 crtbeginS.o crtendS.o: s-crtS ; @true
1213
1214 s-crtS: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \
1215 defaults.h frame.h gbl-ctors.h
1216 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(CRTSTUFF_T_CFLAGS_S) \
1217 -DCRT_BEGIN -DCRTSTUFFS_O -finhibit-size-directive -fno-inline-functions \
1218 -fno-exceptions -g0 -c $(srcdir)/crtstuff.c
1219 mv crtstuff$(objext) crtbeginS$(objext)
1220 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(CRTSTUFF_T_CFLAGS_S) \
1221 -DCRT_END -DCRTSTUFFS_O -finhibit-size-directive -fno-inline-functions \
1222 -fno-exceptions -g0 -c $(srcdir)/crtstuff.c -o crtendS$(objext)
1223 touch s-crtS
1224
1225 # Compile the start modules crt0.o and mcrt0.o that are linked with every program
1226 crt0.o: s-crt0 ; @true
1227 mcrt0.o: s-crt0; @true
1228
1229 s-crt0: $(CRT0_S) $(MCRT0_S) $(GCC_PASSES) $(CONFIG_H)
1230 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(CRT0STUFF_T_CFLAGS) \
1231 -o crt0.o -c $(CRT0_S)
1232 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(CRT0STUFF_T_CFLAGS) \
1233 -o mcrt0.o -c $(MCRT0_S)
1234 touch s-crt0
1235 #\f
1236 # Compiling object files from source files.
1237
1238 # Note that dependencies on obstack.h are not written
1239 # because that file is not part of GCC.
1240
1241 # C language specific files.
1242
1243 c-parse.o : $(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h \
1244 $(srcdir)/c-parse.h c-tree.h input.h flags.h system.h toplev.h
1245 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/c-parse.c
1246 $(srcdir)/c-parse.h: $(srcdir)/c-parse.c
1247 $(srcdir)/c-parse.c: $(srcdir)/c-parse.y
1248 cd $(srcdir); $(BISON) $(BISONFLAGS) -d c-parse.y -o c-parse.c
1249 $(srcdir)/c-parse.y: c-parse.in
1250 echo '/*WARNING: This file is automatically generated!*/' >tmp-c-parse.y
1251 sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
1252 -e "/^ifc$$/d" -e "/^end ifc$$/d" \
1253 $(srcdir)/c-parse.in >>tmp-c-parse.y
1254 $(srcdir)/move-if-change tmp-c-parse.y $(srcdir)/c-parse.y
1255
1256 $(srcdir)/c-gperf.h: c-parse.gperf
1257 gperf -p -j1 -i 1 -g -o -t -G -N is_reserved_word -k1,3,$$ \
1258 $(srcdir)/c-parse.gperf >tmp-gperf.h
1259 $(srcdir)/move-if-change tmp-gperf.h $(srcdir)/c-gperf.h
1260
1261 c-decl.o : c-decl.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-lex.h flags.h \
1262 output.h toplev.h
1263 c-typeck.o : c-typeck.c $(CONFIG_H) system.h $(TREE_H) c-tree.h flags.h \
1264 output.h expr.h insn-codes.h $(RTL_H) toplev.h
1265 c-lang.o : c-lang.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-lex.h toplev.h \
1266 output.h
1267 c-lex.o : c-lex.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) c-lex.h c-tree.h \
1268 $(srcdir)/c-parse.h input.h flags.h $(srcdir)/c-gperf.h c-pragma.h \
1269 toplev.h output.h
1270 c-aux-info.o : c-aux-info.c $(CONFIG_H) system.h $(TREE_H) c-tree.h flags.h
1271 c-convert.o : c-convert.c $(CONFIG_H) system.h $(TREE_H) flags.h toplev.h
1272 c-pragma.o: c-pragma.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) except.h \
1273 function.h defaults.h c-pragma.h toplev.h
1274 c-iterate.o: c-iterate.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) c-tree.h \
1275 flags.h toplev.h expr.h insn-codes.h
1276
1277 collect2$(exeext): collect2.o tlink.o hash.o cplus-dem.o underscore.o \
1278 version.o choose-temp.o $(LIBDEPS)
1279 # Don't try modifying collect2 (aka ld) in place--it might be linking this.
1280 -rm -f collect2$(exeext)
1281 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ collect2.o tlink.o hash.o \
1282 cplus-dem.o underscore.o version.o choose-temp.o $(LIBS)
1283
1284 collect2.o : collect2.c $(CONFIG_H) system.h gansidecl.h gstab.h obstack.h \
1285 $(DEMANGLE_H)
1286 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1287 -DTARGET_MACHINE=\"$(target_alias)\" $(MAYBE_USE_COLLECT2) \
1288 -c `echo $(srcdir)/collect2.c | sed 's,^\./,,'`
1289
1290 tlink.o: tlink.c $(DEMANGLE_H) hash.h $(CONFIG_H) system.h toplev.h
1291 hash.o: hash.c hash.h system.h toplev.h
1292 cplus-dem.o: cplus-dem.c $(DEMANGLE_H)
1293
1294 underscore.c: s-under ; @true
1295
1296 s-under: $(GCC_PASSES)
1297 echo "int xxy_us_dummy;" >tmp-dum.c
1298 $(GCC_FOR_TARGET) -S tmp-dum.c
1299 echo '/*WARNING: This file is automatically generated!*/' >tmp-under.c
1300 if grep _xxy_us_dummy tmp-dum.s > /dev/null ; then \
1301 echo "int prepends_underscore = 1;" >>tmp-under.c; \
1302 else \
1303 echo "int prepends_underscore = 0;" >>tmp-under.c; \
1304 fi
1305 $(srcdir)/move-if-change tmp-under.c underscore.c
1306 -rm -f tmp-dum.c tmp-dum.s
1307 touch s-under
1308
1309 # A file used by all variants of C.
1310
1311 c-common.o : c-common.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-lex.h \
1312 flags.h toplev.h output.h
1313
1314 # Language-independent files.
1315
1316 DRIVER_DEFINES = \
1317 -DSTANDARD_STARTFILE_PREFIX=\"$(libdir)/\" \
1318 -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc-lib/\" \
1319 -DDEFAULT_TARGET_VERSION=\"$(version)\" \
1320 -DDEFAULT_TARGET_MACHINE=\"$(target_alias)\" \
1321 -DTOOLDIR_BASE_PREFIX=\"$(exec_prefix)/\"
1322 gcc.o: gcc.c $(CONFIG_H) system.h gansidecl.h multilib.h Makefile \
1323 $(lang_specs_files)
1324 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1325 $(DRIVER_DEFINES) \
1326 -c `echo $(srcdir)/gcc.c | sed 's,^\./,,'`
1327
1328 tree-check.h: s-check ; @true
1329 s-check : tree.def gencheck $(srcdir)/move-if-change
1330 ./gencheck > tmp-check.h
1331 $(srcdir)/move-if-change tmp-check.h tree-check.h
1332 touch s-check
1333
1334 gencheck : gencheck.o tree.h tree.def $(HOST_LIBDEPS)
1335 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1336 gencheck.o $(HOST_LIBS)
1337
1338 gencheck.o : gencheck.c hconfig.h system.h
1339 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gencheck.c
1340
1341 dumpvers: dumpvers.c
1342
1343 version.o: version.c
1344 obstack.o: obstack.c $(CONFIG_H)
1345 choose-temp.o: choose-temp.c $(CONFIG_H) gansidecl.h system.h
1346 pexecute.o: pexecute.c $(CONFIG_H) system.h gansidecl.h
1347 prefix.o: prefix.c $(CONFIG_H) system.h gansidecl.h Makefile
1348 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1349 -DPREFIX=\"$(prefix)\" \
1350 -c `echo $(srcdir)/prefix.c | sed 's,^\./,,'`
1351
1352 convert.o: convert.c $(CONFIG_H) $(TREE_H) flags.h convert.h toplev.h
1353
1354 tree.o : tree.c $(CONFIG_H) system.h $(TREE_H) flags.h function.h toplev.h except.h
1355 print-tree.o : print-tree.c $(CONFIG_H) system.h $(TREE_H)
1356 stor-layout.o : stor-layout.c $(CONFIG_H) system.h $(TREE_H) flags.h \
1357 function.h expr.h insn-codes.h $(RTL_H) toplev.h except.h
1358 fold-const.o : fold-const.c $(CONFIG_H) system.h $(TREE_H) flags.h toplev.h
1359 toplev.o : toplev.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) \
1360 flags.h input.h insn-attr.h xcoffout.h defaults.h output.h \
1361 insn-codes.h insn-config.h recog.h Makefile toplev.h dwarfout.h \
1362 dwarf2out.h sdbout.h dbxout.h \
1363 $(lang_options_files)
1364 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(MAYBE_USE_COLLECT2) \
1365 -DTARGET_NAME=\"$(target_alias)\" \
1366 -c `echo $(srcdir)/toplev.c | sed 's,^\./,,'`
1367
1368 rtl.o : rtl.c $(CONFIG_H) system.h $(RTL_H) bitmap.h
1369
1370 print-rtl.o : print-rtl.c $(CONFIG_H) system.h $(RTL_H) bitmap.h
1371 rtlanal.o : rtlanal.c $(CONFIG_H) system.h $(RTL_H)
1372
1373 varasm.o : varasm.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) flags.h \
1374 function.h defaults.h insn-codes.h expr.h hard-reg-set.h regs.h \
1375 xcoffout.h output.h c-pragma.h toplev.h except.h dbxout.h sdbout.h
1376 function.o : function.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
1377 function.h insn-flags.h insn-codes.h expr.h regs.h hard-reg-set.h \
1378 insn-config.h $(RECOG_H) output.h toplev.h except.h
1379 stmt.o : stmt.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h function.h \
1380 insn-flags.h insn-config.h insn-codes.h hard-reg-set.h expr.h except.h \
1381 loop.h $(RECOG_H) toplev.h output.h
1382 except.o : except.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
1383 function.h insn-flags.h insn-codes.h expr.h regs.h hard-reg-set.h \
1384 insn-config.h $(RECOG_H) output.h except.h toplev.h
1385 expr.o : expr.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h function.h \
1386 regs.h insn-flags.h insn-codes.h expr.h insn-config.h $(RECOG_H) output.h \
1387 typeclass.h hard-reg-set.h toplev.h hard-reg-set.h except.h
1388 calls.o : calls.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h expr.h \
1389 insn-codes.h insn-flags.h regs.h toplev.h output.h
1390 expmed.o : expmed.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
1391 insn-flags.h insn-config.h insn-codes.h expr.h $(RECOG_H) real.h
1392 explow.o : explow.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
1393 hard-reg-set.h insn-config.h expr.h $(RECOG_H) insn-flags.h insn-codes.h
1394 optabs.o : optabs.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
1395 insn-flags.h insn-config.h insn-codes.h expr.h $(RECOG_H) reload.h
1396 dbxout.o : dbxout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) flags.h regs.h \
1397 insn-config.h reload.h gstab.h xcoffout.h defaults.h output.h dbxout.h \
1398 toplev.h
1399 sdbout.o : sdbout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) flags.h except.h \
1400 function.h expr.h output.h hard-reg-set.h regs.h defaults.h real.h \
1401 insn-config.h obstack.h xcoffout.h c-pragma.h sdbout.h insn-codes.h toplev.h
1402 dwarfout.o : dwarfout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) dwarf.h \
1403 flags.h insn-config.h reload.h output.h defaults.h toplev.h dwarfout.h
1404 dwarf2out.o : dwarf2out.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) dwarf2.h \
1405 flags.h insn-config.h insn-codes.h reload.h output.h defaults.h \
1406 hard-reg-set.h regs.h expr.h toplev.h dwarf2out.h
1407 xcoffout.o : xcoffout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) xcoffout.h \
1408 flags.h
1409 emit-rtl.o : emit-rtl.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
1410 except.h function.h regs.h insn-config.h insn-codes.h $(RECOG_H) real.h \
1411 expr.h obstack.h hard-reg-set.h bitmap.h
1412 real.o : real.c $(CONFIG_H) system.h $(TREE_H) toplev.h
1413 getpwd.o : getpwd.c $(CONFIG_H) system.h
1414
1415 integrate.o : integrate.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
1416 integrate.h insn-flags.h insn-config.h insn-codes.h expr.h real.h regs.h \
1417 function.h output.h $(RECOG_H) except.h toplev.h
1418
1419 jump.o : jump.c $(CONFIG_H) system.h $(RTL_H) flags.h hard-reg-set.h regs.h \
1420 insn-config.h insn-codes.h insn-flags.h $(RECOG_H) expr.h real.h except.h \
1421 toplev.h
1422 stupid.o : stupid.c $(CONFIG_H) system.h $(RTL_H) regs.h hard-reg-set.h \
1423 flags.h toplev.h
1424
1425 cse.o : cse.c $(CONFIG_H) system.h $(RTL_H) regs.h hard-reg-set.h flags.h \
1426 real.h insn-config.h insn-codes.h $(RECOG_H) expr.h toplev.h output.h
1427 gcse.o : gcse.c $(CONFIG_H) system.h $(RTL_H) regs.h hard-reg-set.h flags.h \
1428 real.h insn-config.h insn-codes.h $(RECOG_H) expr.h basic-block.h output.h
1429 profile.o : profile.c $(CONFIG_H) system.h $(RTL_H) flags.h insn-flags.h \
1430 gcov-io.h $(TREE_H) output.h regs.h toplev.h
1431 loop.o : loop.c $(CONFIG_H) system.h $(RTL_H) flags.h loop.h insn-config.h \
1432 insn-flags.h insn-codes.h regs.h hard-reg-set.h $(RECOG_H) expr.h real.h \
1433 toplev.h
1434 unroll.o : unroll.c $(CONFIG_H) system.h $(RTL_H) insn-config.h insn-codes.h \
1435 integrate.h regs.h $(RECOG_H) flags.h expr.h loop.h toplev.h
1436 flow.o : flow.c $(CONFIG_H) system.h $(RTL_H) flags.h insn-config.h \
1437 $(BASIC_BLOCK_H) regs.h hard-reg-set.h output.h toplev.h
1438 combine.o : combine.c $(CONFIG_H) system.h $(RTL_H) flags.h \
1439 insn-config.h insn-flags.h insn-codes.h insn-attr.h regs.h expr.h \
1440 $(BASIC_BLOCK_H) $(RECOG_H) real.h hard-reg-set.h toplev.h
1441 regclass.o : regclass.c $(CONFIG_H) system.h $(RTL_H) hard-reg-set.h flags.h \
1442 $(BASIC_BLOCK_H) regs.h insn-config.h $(RECOG_H) reload.h real.h toplev.h \
1443 output.h
1444 local-alloc.o : local-alloc.c $(CONFIG_H) system.h $(RTL_H) flags.h \
1445 $(BASIC_BLOCK_H) regs.h hard-reg-set.h insn-config.h $(RECOG_H) output.h \
1446 insn-attr.h toplev.h
1447 bitmap.o : bitmap.c $(CONFIG_H) system.h $(RTL_H) flags.h $(BASIC_BLOCK_H) \
1448 regs.h
1449 global.o : global.c $(CONFIG_H) system.h $(RTL_H) flags.h \
1450 $(BASIC_BLOCK_H) regs.h hard-reg-set.h insn-config.h output.h toplev.h
1451
1452 reload.o : reload.c $(CONFIG_H) system.h $(RTL_H) flags.h output.h expr.h \
1453 reload.h $(RECOG_H) hard-reg-set.h insn-config.h insn-codes.h regs.h \
1454 real.h toplev.h
1455 reload1.o : reload1.c $(CONFIG_H) system.h $(RTL_H) real.h flags.h expr.h \
1456 reload.h regs.h hard-reg-set.h insn-config.h insn-flags.h insn-codes.h \
1457 $(BASIC_BLOCK_H) $(RECOG_H) output.h toplev.h
1458 caller-save.o : caller-save.c $(CONFIG_H) system.h $(RTL_H) flags.h \
1459 regs.h hard-reg-set.h insn-codes.h insn-config.h $(BASIC_BLOCK_H) \
1460 $(RECOG_H) reload.h expr.h toplev.h
1461 reorg.o : reorg.c $(CONFIG_H) system.h $(RTL_H) conditions.h hard-reg-set.h \
1462 $(BASIC_BLOCK_H) regs.h insn-config.h insn-codes.h insn-attr.h \
1463 insn-flags.h $(RECOG_H) flags.h output.h expr.h
1464 alias.o : alias.c $(CONFIG_H) system.h $(RTL_H) flags.h hard-reg-set.h regs.h \
1465 insn-codes.h toplev.h
1466 regmove.o : regmove.c $(CONFIG_H) system.h $(RTL_H) insn-config.h \
1467 insn-codes.h recog.h output.h reload.h regs.h hard-reg-set.h flags.h \
1468 expr.h insn-flags.h $(BASIC_BLOCK_H) toplev.h
1469 $(SCHED_PREFIX)sched.o : $(SCHED_PREFIX)sched.c $(CONFIG_H) system.h $(RTL_H) \
1470 $(BASIC_BLOCK_H) regs.h hard-reg-set.h flags.h insn-config.h insn-attr.h \
1471 toplev.h
1472 final.o : final.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h regs.h \
1473 $(RECOG_H) conditions.h insn-config.h insn-attr.h except.h real.h output.h \
1474 hard-reg-set.h insn-flags.h insn-codes.h gstab.h xcoffout.h defaults.h \
1475 toplev.h reload.h dwarfout.h dwarf2out.h sdbout.h dbxout.h
1476 recog.o : recog.c $(CONFIG_H) system.h $(RTL_H) \
1477 regs.h $(RECOG_H) hard-reg-set.h flags.h insn-config.h insn-attr.h \
1478 insn-flags.h insn-codes.h real.h
1479 reg-stack.o : reg-stack.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) \
1480 regs.h hard-reg-set.h flags.h insn-config.h insn-flags.h toplev.h
1481
1482 $(out_object_file): $(out_file) $(CONFIG_H) $(TREE_H) \
1483 $(RTL_H) regs.h hard-reg-set.h real.h insn-config.h conditions.h \
1484 insn-flags.h output.h insn-attr.h insn-codes.h system.h toplev.h
1485 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(out_file)
1486
1487 # Build auxiliary files that support ecoff format.
1488 mips-tfile: mips-tfile.o version.o $(LIBDEPS)
1489 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ mips-tfile.o version.o $(LIBS)
1490
1491 mips-tfile.o : mips-tfile.c $(CONFIG_H) $(RTL_H) system.h
1492
1493 mips-tdump: mips-tdump.o version.o $(LIBDEPS)
1494 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ mips-tdump.o version.o $(LIBS)
1495
1496 mips-tdump.o : mips-tdump.c $(CONFIG_H) $(RTL_H) system.h
1497
1498 # Build file to support OSF/rose half-pic format.
1499 halfpic.o: halfpic.c $(CONFIG_H) $(RTL_H) $(TREE_H) system.h
1500
1501 # Normally this target is not used; but it is used if you
1502 # define ALLOCA=alloca.o. In that case, you must get a suitable alloca.c
1503 # from the GNU Emacs distribution.
1504 alloca.o: alloca.c
1505 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(ALLOCA_FLAGS) \
1506 -c `echo $(srcdir)/alloca.c | sed 's,^\./,,'`
1507 $(ALLOCA_FINISH)
1508 #\f
1509 # Generate header and source files from the machine description,
1510 # and compile them.
1511
1512 .PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
1513 insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
1514 insn-attr.h insn-attrtab.c
1515
1516 # The following pair of rules has this effect:
1517 # genconfig is run only if the md has changed since genconfig was last run;
1518 # but the file insn-config.h is touched only when its contents actually change.
1519
1520 # Each of the other insn-* files is handled by a similar pair of rules.
1521
1522 # This causes an anomaly in the results of make -n
1523 # because insn-* is older than s-*
1524 # and thus make -n thinks that insn-* will be updated
1525 # and force recompilation of things that depend on it.
1526 # We use move-if-change precisely to avoid such recompilation.
1527 # But there is no way to teach make -n that it will be avoided.
1528
1529 # Each of the insn-*.[ch] rules has a semicolon at the end,
1530 # for otherwise the system Make on SunOS 4.1 never tries
1531 # to recompile insn-*.o. To avoid problems and extra noise from
1532 # versions of make which don't like empty commands (nothing after the
1533 # trailing `;'), we call true for each.
1534
1535 insn-config.h: s-config ; @true
1536 s-config : $(md_file) genconfig $(srcdir)/move-if-change
1537 ./genconfig $(md_file) > tmp-config.h
1538 $(srcdir)/move-if-change tmp-config.h insn-config.h
1539 touch s-config
1540
1541 insn-flags.h: s-flags ; @true
1542 s-flags : $(md_file) genflags $(srcdir)/move-if-change
1543 ./genflags $(md_file) > tmp-flags.h
1544 $(srcdir)/move-if-change tmp-flags.h insn-flags.h
1545 touch s-flags
1546
1547 insn-codes.h: s-codes ; @true
1548 s-codes : $(md_file) gencodes $(srcdir)/move-if-change
1549 ./gencodes $(md_file) > tmp-codes.h
1550 $(srcdir)/move-if-change tmp-codes.h insn-codes.h
1551 touch s-codes
1552
1553 insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h real.h output.h \
1554 insn-config.h insn-flags.h insn-codes.h system.h
1555 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-emit.c
1556
1557 insn-emit.c: s-emit ; @true
1558 s-emit : $(md_file) genemit $(srcdir)/move-if-change
1559 ./genemit $(md_file) > tmp-emit.c
1560 $(srcdir)/move-if-change tmp-emit.c insn-emit.c
1561 touch s-emit
1562
1563 insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h $(RECOG_H) \
1564 real.h output.h flags.h system.h
1565 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-recog.c
1566
1567 insn-recog.c: s-recog ; @true
1568 s-recog : $(md_file) genrecog $(srcdir)/move-if-change
1569 ./genrecog $(md_file) > tmp-recog.c
1570 $(srcdir)/move-if-change tmp-recog.c insn-recog.c
1571 touch s-recog
1572
1573 insn-opinit.o : insn-opinit.c $(CONFIG_H) $(RTL_H) insn-codes.h insn-flags.h \
1574 insn-config.h flags.h $(RECOG_H) expr.h reload.h system.h
1575 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-opinit.c
1576
1577 insn-opinit.c: s-opinit ; @true
1578 s-opinit : $(md_file) genopinit $(srcdir)/move-if-change
1579 ./genopinit $(md_file) > tmp-opinit.c
1580 $(srcdir)/move-if-change tmp-opinit.c insn-opinit.c
1581 touch s-opinit
1582
1583 insn-extract.o : insn-extract.c $(CONFIG_H) $(RTL_H) system.h
1584 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-extract.c
1585
1586 insn-extract.c: s-extract ; @true
1587 s-extract : $(md_file) genextract $(srcdir)/move-if-change
1588 ./genextract $(md_file) > tmp-extract.c
1589 $(srcdir)/move-if-change tmp-extract.c insn-extract.c
1590 touch s-extract
1591
1592 insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h output.h real.h system.h
1593 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-peep.c
1594
1595 insn-peep.c: s-peep ; @true
1596 s-peep : $(md_file) genpeep $(srcdir)/move-if-change
1597 ./genpeep $(md_file) > tmp-peep.c
1598 $(srcdir)/move-if-change tmp-peep.c insn-peep.c
1599 touch s-peep
1600
1601 insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) regs.h real.h output.h \
1602 insn-attr.h insn-config.h system.h
1603 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-attrtab.c
1604
1605 insn-attr.h: s-attr ; @true
1606 s-attr : $(md_file) genattr $(srcdir)/move-if-change
1607 ./genattr $(md_file) > tmp-attr.h
1608 $(srcdir)/move-if-change tmp-attr.h insn-attr.h
1609 touch s-attr
1610
1611 insn-attrtab.c: s-attrtab ; @true
1612 s-attrtab : $(md_file) genattrtab $(srcdir)/move-if-change
1613 if cmp -s $(PREMADE_ATTRTAB_MD) $(md_file); \
1614 then \
1615 echo Using $(PREMADE_ATTRTAB); \
1616 cp $(PREMADE_ATTRTAB) tmp-attrtab.c; \
1617 else \
1618 ./genattrtab $(md_file) > tmp-attrtab.c; \
1619 fi
1620 $(srcdir)/move-if-change tmp-attrtab.c insn-attrtab.c
1621 touch s-attrtab
1622
1623 insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) regs.h real.h conditions.h \
1624 hard-reg-set.h insn-config.h insn-flags.h insn-attr.h output.h $(RECOG_H) \
1625 insn-codes.h system.h
1626 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c
1627
1628 insn-output.c: s-output ; @true
1629 s-output : $(md_file) genoutput $(srcdir)/move-if-change
1630 ./genoutput $(md_file) > tmp-output.c
1631 $(srcdir)/move-if-change tmp-output.c insn-output.c
1632 touch s-output
1633
1634 genrtl.o : genrtl.c $(CONFIG_H) $(RTL_H) system.h
1635 genrtl.c genrtl.h : s-genrtl
1636 @true # force gnu make to recheck modification times.
1637
1638 s-genrtl: gengenrtl $(srcdir)/move-if-change $(RTL_BASE_H)
1639 ./gengenrtl tmp-genrtl.h tmp-genrtl.c
1640 $(srcdir)/move-if-change tmp-genrtl.h genrtl.h
1641 $(srcdir)/move-if-change tmp-genrtl.c genrtl.c
1642 touch s-genrtl
1643
1644 #\f
1645 # Compile the programs that generate insn-* from the machine description.
1646 # They are compiled with $(HOST_CC), and associated libraries,
1647 # since they need to run on this machine
1648 # even if GCC is being compiled to run on some other machine.
1649
1650 # $(CONFIG_H) is omitted from the deps of the gen*.o
1651 # because these programs don't really depend on anything
1652 # about the target machine. They do depend on config.h itself,
1653 # since that describes the host machine.
1654
1655 # Pass the md file through cpp if the target requests it.
1656 $(MD_FILE): $(MD_DEPS)
1657 rm -f $@
1658 $(MD_CPP) $(MD_CPPFLAGS) $(md_file) | sed 's/^# /; /g' > tmp-$@
1659 mv tmp-$@ $@
1660
1661 genconfig : genconfig.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBDEPS)
1662 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1663 genconfig.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBS)
1664
1665 genconfig.o : genconfig.c $(RTL_H) $(build_xm_file) system.h
1666 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genconfig.c
1667
1668 genflags : genflags.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBDEPS)
1669 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1670 genflags.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBS)
1671
1672 genflags.o : genflags.c $(RTL_H) $(build_xm_file) system.h
1673 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genflags.c
1674
1675 gencodes : gencodes.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBDEPS)
1676 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1677 gencodes.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBS)
1678
1679 gencodes.o : gencodes.c $(RTL_H) $(build_xm_file) system.h
1680 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gencodes.c
1681
1682 genemit : genemit.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBDEPS)
1683 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1684 genemit.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBS)
1685
1686 genemit.o : genemit.c $(RTL_H) $(build_xm_file) system.h
1687 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genemit.c
1688
1689 genopinit : genopinit.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBDEPS)
1690 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1691 genopinit.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBS)
1692
1693 genopinit.o : genopinit.c $(RTL_H) $(build_xm_file) system.h
1694 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genopinit.c
1695
1696 genrecog : genrecog.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBDEPS)
1697 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1698 genrecog.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBS)
1699
1700 genrecog.o : genrecog.c $(RTL_H) $(build_xm_file) system.h
1701 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genrecog.c
1702
1703 genextract : genextract.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBDEPS)
1704 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1705 genextract.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBS)
1706
1707 genextract.o : genextract.c $(RTL_H) $(build_xm_file) system.h insn-config.h
1708 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genextract.c
1709
1710 genpeep : genpeep.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBDEPS)
1711 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1712 genpeep.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBS)
1713
1714 genpeep.o : genpeep.c $(RTL_H) $(build_xm_file) system.h
1715 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genpeep.c
1716
1717 genattr : genattr.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBDEPS)
1718 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1719 genattr.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBS)
1720
1721 genattr.o : genattr.c $(RTL_H) $(build_xm_file) system.h
1722 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattr.c
1723
1724 genattrtab : genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_RTLANAL) $(HOST_LIBDEPS)
1725 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1726 genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_RTLANAL) $(HOST_LIBS)
1727
1728 genattrtab.o : genattrtab.c $(RTL_H) $(build_xm_file) system.h insn-config.h
1729 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattrtab.c
1730
1731 genoutput : genoutput.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBDEPS)
1732 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1733 genoutput.o $(HOST_RTL) $(HOST_PRINT) $(HOST_LIBS)
1734
1735 genoutput.o : genoutput.c $(RTL_H) $(build_xm_file) system.h
1736 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genoutput.c
1737
1738 gengenrtl : gengenrtl.o $(HOST_LIBDEPS)
1739 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1740 gengenrtl.o $(HOST_LIBS)
1741
1742 gengenrtl.o : gengenrtl.c $(RTL_BASE_H) system.h
1743 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gengenrtl.c
1744
1745 #\f
1746 # Compile the libraries to be used by gen*.
1747 # If we are not cross-building, gen* use the same .o's that cc1 will use,
1748 # and HOST_PREFIX_1 is `foobar', just to ensure these rules don't conflict
1749 # with the rules for rtl.o, alloca.o, etc.
1750 $(HOST_PREFIX_1)rtl.o: $(srcdir)/rtl.c $(CONFIG_H) system.h $(RTL_H) bitmap.h
1751 rm -f $(HOST_PREFIX)rtl.c
1752 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtl.c > $(HOST_PREFIX)rtl.c
1753 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtl.c
1754
1755 $(HOST_PREFIX_1)print-rtl.o: $(srcdir)/print-rtl.c $(CONFIG_H) $(RTL_H)
1756 rm -f $(HOST_PREFIX)print-rtl.c
1757 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/print-rtl.c > $(HOST_PREFIX)print-rtl.c
1758 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)print-rtl.c
1759
1760 $(HOST_PREFIX_1)bitmap.o: $(srcdir)/bitmap.c $(CONFIG_H) system.h $(RTL_H) \
1761 flags.h $(BASIC_BLOCK_H) regs.h
1762 rm -f $(HOST_PREFIX)bitmap.c
1763 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/bitmap.c > $(HOST_PREFIX)bitmap.c
1764 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)bitmap.c
1765
1766 $(HOST_PREFIX_1)rtlanal.o: $(srcdir)/rtlanal.c $(CONFIG_H) $(RTL_H)
1767 rm -f $(HOST_PREFIX)rtlanal.c
1768 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtlanal.c > $(HOST_PREFIX)rtlanal.c
1769 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtlanal.c
1770
1771 $(HOST_PREFIX_1)alloca.o: alloca.c
1772 rm -f $(HOST_PREFIX)alloca.c
1773 cp $(srcdir)/alloca.c $(HOST_PREFIX)alloca.c
1774 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)alloca.c
1775
1776 $(HOST_PREFIX_1)obstack.o: obstack.c
1777 rm -f $(HOST_PREFIX)obstack.c
1778 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/obstack.c > $(HOST_PREFIX)obstack.c
1779 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)obstack.c
1780
1781 $(HOST_PREFIX_1)vfprintf.o: vfprintf.c
1782 rm -f $(HOST_PREFIX)vfprintf.c
1783 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/vfprintf.c > $(HOST_PREFIX)vfprintf.c
1784 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)vfprintf.c
1785
1786 $(HOST_PREFIX_1)doprint.o: doprint.c
1787 rm -f $(HOST_PREFIX)doprint.c
1788 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/doprint.c > $(HOST_PREFIX)doprint.c
1789 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)doprint.c
1790
1791 $(HOST_PREFIX_1)malloc.o: malloc.c
1792 rm -f $(HOST_PREFIX)malloc.c
1793 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/malloc.c > $(HOST_PREFIX)malloc.c
1794 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)malloc.c
1795
1796 # This satisfies the dependency that we get if you cross-compile a compiler
1797 # that does not need to compile alloca, malloc or whatever.
1798 $(HOST_PREFIX_1):
1799 touch $(HOST_PREFIX_1)
1800
1801 #\f
1802 # Remake cpp and protoize.
1803
1804 # Making the preprocessor
1805 cpp$(exeext): $(CCCP)$(exeext)
1806 -rm -f cpp$(exeext)
1807 $(LN) $(CCCP)$(exeext) cpp$(exeext)
1808 cccp$(exeext): cccp.o cexp.o version.o prefix.o $(LIBDEPS)
1809 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ cccp.o cexp.o prefix.o \
1810 version.o $(LIBS)
1811 cexp.o: $(srcdir)/cexp.c $(CONFIG_H) system.h gansidecl.h
1812 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/cexp.c
1813 $(srcdir)/cexp.c: $(srcdir)/cexp.y
1814 cd $(srcdir); $(BISON) -o cexp.c cexp.y
1815
1816 cccp.o: cccp.c $(CONFIG_H) pcp.h version.c config.status system.h gansidecl.h
1817 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1818 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1819 -DGPLUSPLUS_INCLUDE_DIR=\"$(gxx_include_dir)\" \
1820 -DOLD_GPLUSPLUS_INCLUDE_DIR=\"$(old_gxx_include_dir)\" \
1821 -DLOCAL_INCLUDE_DIR=\"$(includedir)\" \
1822 -DCROSS_INCLUDE_DIR=\"$(tooldir)/sys-include\" \
1823 -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
1824 -c `echo $(srcdir)/cccp.c | sed 's,^\./,,'`
1825
1826 cppmain$(exeext): cppmain.o cpplib.o cpphash.o cppalloc.o cpperror.o cppexp.o \
1827 prefix.o version.o $(LIBDEPS)
1828 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ cppmain.o cpplib.o cpphash.o \
1829 cppalloc.o cpperror.o cppexp.o prefix.o version.o $(LIBS)
1830
1831 cppmain.o: cppmain.c $(CONFIG_H) cpplib.h system.h gansidecl.h
1832
1833 cpplib.o: cpplib.c $(CONFIG_H) cpplib.h cpphash.h config.status system.h \
1834 gansidecl.h
1835 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1836 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1837 -DGPLUSPLUS_INCLUDE_DIR=\"$(gxx_include_dir)\" \
1838 -DOLD_GPLUSPLUS_INCLUDE_DIR=\"$(old_gxx_include_dir)\" \
1839 -DLOCAL_INCLUDE_DIR=\"$(includedir)\" \
1840 -DCROSS_INCLUDE_DIR=\"$(tooldir)/sys-include\" \
1841 -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
1842 -c `echo $(srcdir)/cpplib.c | sed 's,^\./,,'`
1843
1844 cpperror.o: cpperror.c $(CONFIG_H) cpplib.h system.h gansidecl.h
1845
1846 cppexp.o: cppexp.c $(CONFIG_H) cpplib.h system.h gansidecl.h
1847
1848 cpphash.o: cpphash.c cpplib.h cpphash.h $(CONFIG_H) system.h gansidecl.h
1849
1850 cppalloc.o: cppalloc.c $(CONFIG_H) cpplib.h system.h gansidecl.h
1851
1852 # Note for the stamp targets, we run the program `true' instead of
1853 # having an empty command (nothing following the semicolon).
1854
1855 proto: config.status protoize$(exeext) unprotoize$(exeext) SYSCALLS.c.X
1856
1857 protoize$(exeext): protoize.o getopt.o getopt1.o getpwd.o version.o \
1858 pexecute.o choose-temp.o $(LIBDEPS)
1859 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \
1860 protoize.o getopt.o getopt1.o getpwd.o version.o \
1861 pexecute.o choose-temp.o $(LIBS)
1862
1863 unprotoize$(exeext): unprotoize.o getopt.o getopt1.o getpwd.o version.o \
1864 pexecute.o choose-temp.o $(LIBDEPS)
1865 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \
1866 unprotoize.o getopt.o getopt1.o getpwd.o version.o \
1867 pexecute.o choose-temp.o $(LIBS)
1868
1869 protoize.o: protoize.c getopt.h $(CONFIG_H) system.h
1870 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1871 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1872 -DGPLUSPLUS_INCLUDE_DIR=\"$(gxx_include_dir)\" \
1873 -DCROSS_INCLUDE_DIR=\"$(tooldir)/sys-include\" \
1874 -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
1875 -DLOCAL_INCLUDE_DIR=\"$(includedir)\" \
1876 -DSTD_PROTO_DIR=\"$(libsubdir)\" \
1877 $(srcdir)/protoize.c
1878
1879 unprotoize.o: unprotoize.c protoize.c getopt.h $(CONFIG_H) system.h
1880 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1881 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1882 -DGPLUSPLUS_INCLUDE_DIR=\"$(gxx_include_dir)\" \
1883 -DCROSS_INCLUDE_DIR=\"$(tooldir)/sys-include\" \
1884 -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
1885 -DLOCAL_INCLUDE_DIR=\"$(includedir)\" \
1886 -DSTD_PROTO_DIR=\"$(libsubdir)\" \
1887 $(srcdir)/unprotoize.c
1888
1889 getopt.o: getopt.c getopt.h
1890 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/getopt.c
1891 getopt1.o: getopt1.c getopt.h
1892 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/getopt1.c
1893
1894 # This info describes the target machine, so compile with GCC just built.
1895 SYSCALLS.c.X: $(srcdir)/sys-types.h $(srcdir)/sys-protos.h $(GCC_PASSES) \
1896 stmp-int-hdrs
1897 -rm -f SYSCALLS.c tmp-SYSCALLS.s
1898 cat $(srcdir)/sys-types.h $(srcdir)/sys-protos.h > SYSCALLS.c
1899 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1900 -aux-info $@ -S -o tmp-SYSCALLS.s SYSCALLS.c
1901 -rm -f SYSCALLS.c tmp-SYSCALLS.s
1902
1903
1904 test-protoize-simple: ./protoize ./unprotoize $(GCC_PASSES)
1905 -rm -f tmp-proto.[cso]
1906 cp $(srcdir)/protoize.c tmp-proto.c
1907 chmod u+w tmp-proto.c
1908 ./protoize -N -B ./ -x getopt.h -c "-B./ -Wall -Wwrite-strings \
1909 $(CFLAGS) $(INCLUDES) \
1910 -DGCC_INCLUDE_DIR=0 \
1911 -DGPLUSPLUS_INCLUDE_DIR=0 \
1912 -DCROSS_INCLUDE_DIR=0 \
1913 -DTOOL_INCLUDE_DIR=0 \
1914 -DSTD_PROTO_DIR=0" tmp-proto.c
1915 @echo '**********' Expect 400 lines of differences.
1916 -diff $(srcdir)/protoize.c tmp-proto.c > tmp-proto.diff
1917 -wc -l tmp-proto.diff
1918 ./unprotoize -N -x getopt.h -c "-B./ -Wall -Wwrite-strings \
1919 $(CFLAGS) $(INCLUDES) \
1920 -DGCC_INCLUDE_DIR=0 \
1921 -DGPLUSPLUS_INCLUDE_DIR=0 \
1922 -DCROSS_INCLUDE_DIR=0 \
1923 -DTOOL_INCLUDE_DIR=0 \
1924 -DSTD_PROTO_DIR=0" tmp-proto.c
1925 @echo Expect zero differences.
1926 diff $(srcdir)/protoize.c tmp-proto.c | cat
1927 -rm -f tmp-proto.[cs] tmp-proto$(objext)
1928
1929 gcov.o: gcov.c gcov-io.h system.h
1930
1931 # Only one of 'gcov' or 'gcov.exe' is actually built, depending
1932 # upon whether $(exeext) is empty or not.
1933 gcov$(exeext): gcov.o $(LIBDEPS)
1934 $(CC) $(ALL_CFLAGS) $(LDFLAGS) gcov.o $(LIBS) -o $@
1935 #\f
1936 # Build the include directory. The stamp files are stmp-* rather than
1937 # s-* so that mostlyclean does not force the include directory to
1938 # be rebuilt.
1939
1940 # Build the include directory including float.h (which no longer depends upon
1941 # enquire).
1942 stmp-int-hdrs: stmp-fixinc $(USER_H) xlimits.h gfloat.h
1943 # Copy in the headers provided with gcc.
1944 # The sed command gets just the last file name component;
1945 # this is necessary because VPATH could add a dirname.
1946 # Using basename would be simpler, but some systems don't have it.
1947 # The touch command is here to workaround an AIX/Linux NFS bug.
1948 for file in .. $(USER_H); do \
1949 if [ X$$file != X.. ]; then \
1950 realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
1951 touch include/$$realfile; \
1952 rm -f include/$$realfile; \
1953 cp $$file include; \
1954 chmod a+r include/$$realfile; \
1955 fi; \
1956 done
1957 rm -f include/limits.h
1958 cp xlimits.h include/limits.h
1959 chmod a+r include/limits.h
1960 rm -f include/float.h
1961 if [ -s gfloat.h ]; then \
1962 cp gfloat.h include/float.h && \
1963 chmod a+r include/float.h; \
1964 else :; fi
1965 # Install the README
1966 rm -f include/README
1967 cp $(srcdir)/README-fixinc include/README
1968 chmod a+r include/README
1969 touch $@
1970
1971 # Now that gfloat.h no longer depends upon enquire, this is actually a no-op.
1972 stmp-headers:
1973 touch $@
1974
1975 fixinc.sh :
1976 DEST=`cd $(srcdir) ; pwd`/$@ CC=$(CC) MAKE=$(MAKE) CFLAGS="$(CFLAGS)" \
1977 export DEST CC MAKE CFLAGS ; \
1978 echo DEST=$$DEST CC=$$CC MAKE=$$MAKE CFLAGS=$$CFLAGS ; \
1979 cd ../contrib/fixinc ; \
1980 $(SHELL) mkfixinc.sh $(target) $$DEST
1981
1982 # Build fixed copies of system files.
1983 stmp-fixinc: $(FIXINCLUDES) gsyslimits.h
1984 rm -rf include
1985 mkdir include
1986 if [ x$(FIXINCLUDES) != xMakefile.in ]; \
1987 then \
1988 for dir in $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS); do \
1989 if [ -d $$dir ]; \
1990 then \
1991 $(SHELL) $(srcdir)/$(FIXINCLUDES) include $$dir; \
1992 else true; fi; \
1993 done; \
1994 rm -f include/assert.h; \
1995 cp $(srcdir)/assert.h include/assert.h; \
1996 chmod a+r include/assert.h; \
1997 else true; \
1998 fi
1999 rm -f include/syslimits.h
2000 if [ -f include/limits.h ]; then \
2001 mv include/limits.h include/syslimits.h; \
2002 else \
2003 cp $(srcdir)/gsyslimits.h include/syslimits.h; \
2004 fi
2005 chmod a+r include/syslimits.h
2006 touch stmp-fixinc
2007
2008 # Files related to the fixproto script.
2009
2010 deduced.h: $(GCC_PASSES) $(srcdir)/scan-types.sh stmp-int-hdrs
2011 if [ -d $(SYSTEM_HEADER_DIR) ]; \
2012 then \
2013 CC="$(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -I. -I$(srcdir) -Iinclude -I${SYSTEM_HEADER_DIR}"; \
2014 export CC; \
2015 $(SHELL) $(srcdir)/scan-types.sh "$(srcdir)" >tmp-deduced.h; \
2016 mv tmp-deduced.h deduced.h; \
2017 else \
2018 touch deduced.h; \
2019 fi
2020
2021 gen-protos: gen-protos.o scan.o cppalloc.o $(HOST_LIBDEPS)
2022 ${HOST_CC} $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
2023 gen-protos.o scan.o cppalloc.o $(HOST_LIBS)
2024
2025 gen-protos.o: gen-protos.c scan.h $(build_xm_file) system.h
2026 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gen-protos.c
2027
2028 scan.o: scan.c scan.h $(build_xm_file) system.h
2029 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/scan.c
2030
2031 xsys-protos.h: $(GCC_PASSES) $(srcdir)/sys-protos.h deduced.h gen-protos Makefile
2032 cat deduced.h $(srcdir)/sys-protos.h > tmp-fixtmp.c
2033 mv tmp-fixtmp.c fixtmp.c
2034 $(GCC_FOR_TARGET) fixtmp.c -w -U__SIZE_TYPE__ -U__PTRDIFF_TYPE__ -U__WCHAR_TYPE__ -E \
2035 | sed -e 's/ / /g' -e 's/ *(/ (/g' -e 's/ [ ]*/ /g' -e 's/( )/()/' \
2036 | ./gen-protos >xsys-protos.hT
2037 mv xsys-protos.hT xsys-protos.h
2038 rm -rf fixtmp.c
2039
2040 fix-header: fix-header.o scan-decls.o scan.o xsys-protos.h $(HOST_LIBDEPS) \
2041 cpplib.o cpphash.o cppalloc.o cppexp.o cpperror.o prefix.o version.o
2042 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ fix-header.o \
2043 scan-decls.o scan.o cpplib.o cpphash.o cppalloc.o prefix.o \
2044 version.o cppexp.o $(HOST_LIBS)
2045
2046 fix-header.o: fix-header.c obstack.h scan.h xsys-protos.h $(build_xm_file) \
2047 system.h cpplib.h cpphash.h
2048 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/fix-header.c
2049
2050 scan-decls.o: scan-decls.c scan.h cpplib.h $(build_xm_file) system.h gansidecl.h
2051 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/scan-decls.c
2052
2053 # stmp-fixproto depends on this, not on fix-header directly.
2054 # The idea is to make sure fix-header gets built,
2055 # but not rerun fixproto after each stage
2056 # just because fix-header's mtime has changed.
2057 fixhdr.ready: fix-header
2058 -if [ -f fixhdr.ready ] ; then \
2059 true; \
2060 else \
2061 touch fixhdr.ready; \
2062 fi
2063
2064 # stmp-headers is to make sure fixincludes has already finished.
2065 # The if statement is so that we don't run fixproto a second time
2066 # if it has already been run on the files in `include'.
2067 stmp-fixproto: fixhdr.ready fixproto stmp-headers
2068 @echo "Various warnings and error messages from fixproto are normal"
2069 -if [ -d include ] ; then true; else mkdir include; fi
2070 -if [ -f include/fixed ] ; then true; \
2071 else \
2072 : This line works around a 'make' bug in BSDI 1.1.; \
2073 FIXPROTO_DEFINES="$(FIXPROTO_DEFINES)"; export FIXPROTO_DEFINES; \
2074 if [ -d $(SYSTEM_HEADER_DIR) ] ; then \
2075 $(SHELL) ${srcdir}/fixproto include include $(SYSTEM_HEADER_DIR); \
2076 else true; fi; \
2077 touch include/fixed; \
2078 fi
2079 touch stmp-fixproto
2080 #\f
2081 # Remake the info files.
2082
2083 doc: info
2084 info: cpp.info gcc.info lang.info
2085
2086 cpp.info: $(srcdir)/cpp.texi
2087 $(MAKEINFO) $(MAKEINFOFLAGS) -I$(srcdir) -o cpp.info $(srcdir)/cpp.texi
2088
2089 gcc.info: $(srcdir)/gcc.texi $(srcdir)/extend.texi $(srcdir)/install.texi \
2090 $(srcdir)/invoke.texi $(srcdir)/md.texi $(srcdir)/rtl.texi \
2091 $(srcdir)/tm.texi $(srcdir)/gcov.texi
2092 $(MAKEINFO) $(MAKEINFOFLAGS) -I$(srcdir) -o gcc.info $(srcdir)/gcc.texi
2093
2094 dvi: gcc.dvi cpp.dvi lang.dvi
2095
2096 # This works with GNU Make's default rule.
2097 gcc.dvi: $(srcdir)/gcc.texi $(srcdir)/extend.texi $(srcdir)/install.texi \
2098 $(srcdir)/invoke.texi $(srcdir)/md.texi $(srcdir)/rtl.texi \
2099 $(srcdir)/tm.texi $(srcdir)/gcov.texi
2100 TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex gcc.texi
2101 texindex gcc.??
2102 TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex gcc.texi
2103
2104 cpp.dvi: $(srcdir)/cpp.texi
2105 TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex cpp.texi
2106 texindex cpp.??
2107 TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex cpp.texi
2108
2109
2110 INSTALL: $(srcdir)/install1.texi $(srcdir)/install.texi
2111 cd $(srcdir); $(MAKEINFO) -D INSTALLONLY --no-header \
2112 --no-split -o INSTALL install1.texi
2113 #\f
2114 # Deletion of files made during compilation.
2115 # There are four levels of this:
2116 # `mostlyclean', `clean', `distclean' and `maintainer-clean'.
2117 # `mostlyclean' is useful while working on a particular type of machine.
2118 # It deletes most, but not all, of the files made by compilation.
2119 # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
2120 # `clean' deletes everything made by running `make all'.
2121 # `distclean' also deletes the files made by config.
2122 # `maintainer-clean' also deletes everything that could be regenerated
2123 # automatically, except for `configure'.
2124 # We remove as much from the language subdirectories as we can
2125 # (less duplicated code).
2126
2127
2128 mostlyclean: lang.mostlyclean
2129 -rm -f $(STAGESTUFF)
2130 # Delete the temporary source copies for cross compilation.
2131 -rm -f $(HOST_PREFIX_1)rtl.c $(HOST_PREFIX_1)rtlanal.c
2132 -rm -f $(HOST_PREFIX_1)alloca.c $(HOST_PREFIX_1)malloc.c
2133 -rm -f $(HOST_PREFIX_1)obstack.c
2134 # Delete the temp files made in the course of building libgcc.a.
2135 -rm -f tmplibgcc* tmpcopy xlimits.h libgcc1-test
2136 for name in $(LIB1FUNCS); do rm -f $${name}.c; done
2137 # Delete other built files.
2138 -rm -f t-float.h-cross xsys-protos.hT fp-bit.c dp-bit.c
2139 # Delete the stamp and temporary files.
2140 -rm -f s-* tmp-* stamp-* stmp-*
2141 -rm -f */stamp-* */tmp-*
2142 # Delete debugging dump files.
2143 -rm -f *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop
2144 -rm -f *.dbr *.jump2 *.sched *.cse2 *.sched2 *.stack *.addressof
2145 -rm -f *.regmove *.mach *.bp *.gcse
2146 -rm -f */*.greg */*.lreg */*.combine */*.flow */*.cse */*.jump */*.rtl
2147 -rm -f */*.tree */*.loop */*.dbr */*.jump2 */*.sched */*.cse2
2148 -rm -f */*.sched2 */*.stack */*.regmove */*.gcse
2149 # Delete some files made during installation.
2150 -rm -f specs gfloat.h float.h-* enquire SYSCALLS.c.X SYSCALLS.c
2151 -rm -f collect collect2 mips-tfile mips-tdump alloca.s
2152 # Delete files generated for fixproto
2153 -rm -rf fix-header xsys-protos.h deduced.h tmp-deduced.h \
2154 gen-protos fixproto.list fixtmp.* fixhdr.ready
2155 # Delete unwanted output files from TeX.
2156 -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg
2157 -rm -f */*.toc */*.log */*.vr */*.fn */*.cp */*.tp */*.ky */*.pg
2158 # Delete sorted indices we don't actually use.
2159 -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
2160 # Delete core dumps.
2161 -rm -f core */core
2162 -rm -f *.bp */*.bp
2163
2164 # Delete all files made by compilation
2165 # that don't exist in the distribution.
2166 clean: mostlyclean lang.clean
2167 # It may not be quite desirable to delete unprotoize.c here,
2168 # but the spec for `make clean' requires it.
2169 # Using unprotoize.c is not quite right in the first place,
2170 # but what better way is there?
2171 -rm -f libgcc.a libgcc1.a libgcc1-asm.a libgcc2.a libgcc2.ready
2172 -rm -f libgcc1.null
2173 -rm -f *.dvi
2174 -rm -f */*.dvi
2175 -if [ -f md.pre-cpp ]; then \
2176 rm -f md ; \
2177 fi
2178 # Delete the include directory.
2179 -rm -rf include
2180 # Delete files used by the "multilib" facility (including libgcc subdirs).
2181 -rm -f multilib.h tmpmultilib*
2182 -if [ "x$(MULTILIB_DIRNAMES)" != x ] ; then \
2183 rm -rf $(MULTILIB_DIRNAMES); \
2184 else if [ "x$(MULTILIB_OPTIONS)" != x ] ; then \
2185 rm -rf `echo $(MULTILIB_OPTIONS) | sed -e 's/\// /g'`; \
2186 fi ; fi
2187 -rm -fr stage1 stage2 stage3 stage4
2188
2189 # Delete all files that users would normally create
2190 # while building and installing GCC.
2191 distclean: clean lang.distclean
2192 -rm -f tm.h config.h auto-host.h auto-build.h tconfig.h hconfig.h
2193 -rm -f md cstamp-h
2194 -rm -f config.status config.run config.cache config.bak
2195 -rm -f Make-lang Make-hooks Make-host Make-target
2196 -rm -f Makefile specs.h options.h *.oaux
2197 -rm -f gthr-default.h
2198 -rm -f */stage1 */stage2 */stage3 */stage4 */include
2199 -rm -f c-parse.output
2200 -rm -f *.asm
2201 -rm -f float.h
2202 -rm -f site.exp site.bak testsuite/site.exp testsuite/site.bak
2203 -rm -f testsuite/{gcc,g++}.{log,sum}
2204
2205 # Delete anything likely to be found in the source directory
2206 # that shouldn't be in the distribution.
2207 extraclean: distclean lang.extraclean
2208 -rm -rf =* ./"#"* *~* config/=* config/"#"* config/*~*
2209 -rm -f patch* *.orig *.rej config/patch* config/*.orig config/*.rej
2210 -rm -f config/*/=* config/*/"#"* config/*/*~*
2211 -rm -f config/*/*.orig config/*/*.rej
2212 -rm -f *.dvi *.ps *.oaux *.d *.[zZ] *.gz
2213 -rm -f *.tar *.xtar *diff *.diff.* *.tar.* *.xtar.* *diffs
2214 -rm -f *lose config/*lose config/*/*lose
2215 -rm -f *.s *.s[0-9] *.i config/ChangeLog
2216 -rm -f */=* */"#"* */*~*
2217 -rm -f */patch* */*.orig */*.rej
2218 -rm -f */*.dvi */*.oaux */*.d */*.[zZ] */*.gz
2219 -rm -f */*.tar */*.xtar */*diff */*.diff.* */*.tar.* */*.xtar.* */*diffs
2220 -rm -f */*lose */*.s */*.s[0-9] */*.i
2221
2222 # Get rid of every file that's generated from some other file, except for `configure'.
2223 # Most of these files ARE PRESENT in the GCC distribution.
2224 maintainer-clean:
2225 @echo 'This command is intended for maintainers to use; it'
2226 @echo 'deletes files that may need special tools to rebuild.'
2227 $(MAKE) distclean lang.maintainer-clean
2228 -rm -f c-parse.y c-gperf.h
2229 -rm -f c-parse.c c-parse.h c-parse.output
2230 -rm -f cexp.c cexp.output TAGS
2231 -rm -f cpp.info* cpp.??s cpp.*aux
2232 -rm -f gcc.info* gcc.??s gcc.*aux
2233 #\f
2234 # Entry points `install' and `uninstall'.
2235 # Also use `install-collect2' to install collect2 when the config files don't.
2236
2237 # The semicolon is to prevent the install.sh -> install default rule
2238 # from doing anything. Having it run true helps avoid problems and
2239 # noise from versions of make which don't like to have null commands.
2240 install: $(INSTALL_TARGET) ; @true
2241
2242 # Copy the compiler files into directories where they will be run.
2243 # Install the driver last so that the window when things are
2244 # broken is small.
2245 install-normal: install-common $(INSTALL_HEADERS) $(INSTALL_LIBGCC) \
2246 install-man install-info lang.install-normal install-driver
2247
2248 # Do nothing while making gcc with a cross-compiler. The person who
2249 # makes gcc for the target machine has to know how to put a complete
2250 # gcc together by hand.
2251 install-build: force
2252 @echo You have to install gcc on your target machine by hand.
2253
2254 # Run this on the target machine
2255 # to finish installation of cross compiler.
2256 install-cross-rest: install-float-h-cross
2257
2258 # Install float.h for cross compiler.
2259 # Run this on the target machine!
2260 install-float-h-cross: installdirs
2261 # if [ -f enquire ] ; then true; else false; fi
2262 # Note: don't use -. We should fail right away if enquire was not made.
2263 ./enquire -f > $(tmpdir)/float.h
2264 -rm -f $(libsubdir)/include/float.h
2265 $(INSTALL_DATA) $(tmpdir)/float.h $(libsubdir)/include/float.h
2266 -rm -f $(tmpdir)/float.h
2267 chmod a-x $(libsubdir)/include/float.h
2268
2269 # Create the installation directories.
2270 installdirs:
2271 -if [ -d $(prefix) ] ; then true ; else mkdir $(prefix) ; chmod a+rx $(prefix) ; fi
2272 -if [ -d $(exec_prefix) ] ; then true ; else mkdir $(exec_prefix) ; chmod a+rx $(exec_prefix) ; fi
2273 -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; chmod a+rx $(libdir) ; fi
2274 -if [ -d $(libdir)/gcc-lib ] ; then true ; else mkdir $(libdir)/gcc-lib ; chmod a+rx $(libdir)/gcc-lib ; fi
2275 # This dir isn't currently searched by cpp.
2276 # -if [ -d $(libdir)/gcc-lib/include ] ; then true ; else mkdir $(libdir)/gcc-lib/include ; chmod a+rx $(libdir)/gcc-lib/include ; fi
2277 -fdir= ; for dir in `echo $(libsubdir) | tr '/' ' '`; do \
2278 fdir=$${fdir}/$${dir}; \
2279 if [ -d $${fdir} ] ; then true ; else mkdir $${fdir}; chmod a+rx $${fdir}; fi ; \
2280 done
2281 -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; chmod a+rx $(bindir) ; fi
2282 -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; chmod a+rx $(includedir) ; fi
2283 -if [ -d $(tooldir) ] ; then true ; else mkdir $(tooldir) ; chmod a+rx $(tooldir) ; fi
2284 -if [ -d $(assertdir) ] ; then true ; else mkdir $(assertdir) ; chmod a+rx $(assertdir) ; fi
2285 -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; chmod a+rx $(infodir) ; fi
2286 # We don't use mkdir -p to create the parents of mandir,
2287 # because some systems don't support it.
2288 # Instead, we use this technique to create the immediate parent of mandir.
2289 -parent=`echo $(mandir)|sed -e 's@/[^/]*$$@@'`; \
2290 if [ -d $$parent ] ; then true ; else mkdir $$parent ; chmod a+rx $$parent ; fi
2291 -if [ -d $(mandir) ] ; then true ; else mkdir $(mandir) ; chmod a+rx $(mandir) ; fi
2292
2293 # Install the compiler executables built during cross compilation.
2294 install-common: native installdirs $(EXTRA_PARTS) lang.install-common
2295 for file in $(COMPILERS); do \
2296 if [ -f $$file ] ; then \
2297 rm -f $(libsubdir)/$$file; \
2298 $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
2299 else true; \
2300 fi; \
2301 done
2302 for file in $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
2303 if [ x"$$file" != x.. ]; then \
2304 rm -f $(libsubdir)/$$file; \
2305 $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
2306 else true; fi; \
2307 done
2308 for file in $(EXTRA_PARTS) ..; do \
2309 if [ x"$$file" != x.. ]; then \
2310 rm -f $(libsubdir)/$$file; \
2311 $(INSTALL_DATA) $$file $(libsubdir)/$$file; \
2312 chmod a-x $(libsubdir)/$$file; \
2313 else true; fi; \
2314 done
2315 # Don't mess with specs if it doesn't exist yet.
2316 -if [ -f specs ] ; then \
2317 rm -f $(libsubdir)/specs; \
2318 $(INSTALL_DATA) specs $(libsubdir)/specs; \
2319 chmod a-x $(libsubdir)/specs; \
2320 fi
2321 # Install protoize if it was compiled.
2322 -if [ -f protoize$(exeext) ]; \
2323 then \
2324 rm -f $(bindir)/protoize$(exeext); \
2325 $(INSTALL_PROGRAM) protoize$(exeext) $(bindir)/protoize$(exeext); \
2326 rm -f $(bindir)/unprotoize$(exeext); \
2327 $(INSTALL_PROGRAM) unprotoize$(exeext) $(bindir)/unprotoize$(exeext); \
2328 rm -f $(libsubdir)/SYSCALLS.c.X; \
2329 $(INSTALL_DATA) SYSCALLS.c.X $(libsubdir)/SYSCALLS.c.X; \
2330 chmod a-x $(libsubdir)/SYSCALLS.c.X; \
2331 fi
2332 -rm -f $(libsubdir)/cpp$(exeext)
2333 $(INSTALL_PROGRAM) cpp$(exeext) $(libsubdir)/cpp$(exeext)
2334 # Install gcov if it was compiled.
2335 -if [ -f gcov$(exeext) ]; \
2336 then \
2337 rm -f $(bindir)/gcov$(exeext); \
2338 $(INSTALL_PROGRAM) gcov$(exeext) $(bindir)/gcov$(exeext); \
2339 chmod a+x $(bindir)/gcov$(exeext); \
2340 fi
2341
2342 # Install the driver program as $(target_alias)-gcc
2343 # and also as either gcc (if native) or $(tooldir)/bin/gcc.
2344 install-driver: xgcc$(exeext)
2345 -if [ -f gcc-cross$(exeext) ] ; then \
2346 rm -f $(bindir)/$(GCC_CROSS_NAME)$(exeext); \
2347 $(INSTALL_PROGRAM) gcc-cross$(exeext) $(bindir)/$(GCC_CROSS_NAME)$(exeext); \
2348 if [ -d $(tooldir)/bin/. ] ; then \
2349 rm -f $(tooldir)/bin/gcc$(exeext); \
2350 $(INSTALL_PROGRAM) gcc-cross$(exeext) $(tooldir)/bin/gcc$(exeext); \
2351 else true; fi; \
2352 else \
2353 rm -f $(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
2354 $(INSTALL_PROGRAM) xgcc$(exeext) $(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
2355 rm -f $(bindir)/$(target_alias)-gcc-1$(exeext); \
2356 $(LN) $(bindir)/$(GCC_INSTALL_NAME)$(exeext) $(bindir)/$(target_alias)-gcc-1$(exeext); \
2357 mv $(bindir)/$(target_alias)-gcc-1$(exeext) $(bindir)/$(target_alias)-gcc$(exeext); \
2358 fi
2359
2360 # Install the info files.
2361 # $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir
2362 # to do the install. The sed rule was copied from stmp-int-hdrs.
2363 install-info: doc installdirs lang.install-info
2364 -rm -f $(infodir)/cpp.info* $(infodir)/gcc.info*
2365 for f in cpp.info* gcc.info*; do \
2366 realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
2367 $(INSTALL_DATA) $$f $(infodir)/$$realfile; \
2368 if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
2369 install-info --dir-file=$(infodir)/dir $(infodir)/$$realfile; \
2370 else true; fi; \
2371 done
2372 -chmod a-x $(infodir)/cpp.info* $(infodir)/gcc.info*
2373
2374 # Install the man pages.
2375 install-man: installdirs $(srcdir)/gcc.1 $(srcdir)/cccp.1 lang.install-man
2376 -if [ -f gcc-cross$(exeext) ] ; then \
2377 rm -f $(mandir)/$(GCC_CROSS_NAME)$(manext); \
2378 $(INSTALL_DATA) $(srcdir)/gcc.1 $(mandir)/$(GCC_CROSS_NAME)$(manext); \
2379 chmod a-x $(mandir)/$(GCC_CROSS_NAME)$(manext); \
2380 else \
2381 rm -f $(mandir)/$(GCC_INSTALL_NAME)$(manext); \
2382 $(INSTALL_DATA) $(srcdir)/gcc.1 $(mandir)/$(GCC_INSTALL_NAME)$(manext); \
2383 chmod a-x $(mandir)/$(GCC_INSTALL_NAME)$(manext); \
2384 fi
2385 -rm -f $(mandir)/cccp$(manext)
2386 -$(INSTALL_DATA) $(srcdir)/cccp.1 $(mandir)/cccp$(manext)
2387 -chmod a-x $(mandir)/cccp$(manext)
2388
2389 # Install the library.
2390 install-libgcc: libgcc.a installdirs
2391 -if [ -f libgcc.a ] ; then \
2392 rm -f $(libsubdir)/libgcc.a; \
2393 $(INSTALL_DATA) libgcc.a $(libsubdir)/libgcc.a; \
2394 if $(RANLIB_TEST) ; then \
2395 (cd $(libsubdir); $(RANLIB) libgcc.a); else true; fi; \
2396 chmod a-x $(libsubdir)/libgcc.a; \
2397 else true; fi
2398
2399 # Install multiple versions of libgcc.a.
2400 install-multilib: stmp-multilib installdirs
2401 for i in `$(GCC_FOR_TARGET) --print-multi-lib`; do \
2402 dir=`echo $$i | sed -e 's/;.*$$//'`; \
2403 if [ -d $(libsubdir)/$${dir} ]; then true; else mkdir $(libsubdir)/$${dir}; fi; \
2404 for f in libgcc.a $(EXTRA_MULTILIB_PARTS); do \
2405 rm -f $(libsubdir)/$${dir}/$${f}; \
2406 $(INSTALL_DATA) $${dir}/$${f} $(libsubdir)/$${dir}/$${f}; \
2407 done; \
2408 if $(RANLIB_TEST); then \
2409 (cd $(libsubdir)/$${dir}; $(RANLIB) libgcc.a); else true; fi; \
2410 chmod a-x $(libsubdir)/$${dir}/libgcc.a; \
2411 done
2412
2413 # Install all the header files built in the include subdirectory.
2414 install-headers: install-include-dir $(INSTALL_HEADERS_DIR) $(INSTALL_ASSERT_H)
2415 # Fix symlinks to absolute paths in the installed include directory to
2416 # point to the installed directory, not the build directory.
2417 # Don't need to use LN_S here since we really do need ln -s and no substitutes.
2418 -files=`cd $(libsubdir)/include; find . -type l -print 2>/dev/null`; \
2419 if [ $$? -eq 0 ]; then \
2420 dir=`cd include; pwd`; \
2421 for i in $$files; do \
2422 dest=`ls -ld $(libsubdir)/include/$$i | sed -n 's/.*-> //p'`; \
2423 if expr "$$dest" : "$$dir.*" > /dev/null; then \
2424 rm -f $(libsubdir)/include/$$i; \
2425 ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(libsubdir)/include/$$i; \
2426 fi; \
2427 done; \
2428 fi
2429
2430 # Create or recreate the gcc private include file directory.
2431 install-include-dir: installdirs
2432 -rm -rf $(libsubdir)/include
2433 mkdir $(libsubdir)/include
2434 -chmod a+rx $(libsubdir)/include
2435
2436 # Install the include directory using tar.
2437 install-headers-tar: stmp-headers $(STMP_FIXPROTO) install-include-dir
2438 (cd include; \
2439 tar -cf - .; exit 0) | (cd $(libsubdir)/include; tar $(TAROUTOPTS) - )
2440 # /bin/sh on some systems returns the status of the first tar,
2441 # and that can lose with GNU tar which always writes a full block.
2442 # So use `exit 0' to ignore its exit status.
2443
2444 # Install the include directory using cpio.
2445 install-headers-cpio: stmp-headers $(STMP_FIXPROTO) install-include-dir
2446 (cd include; find . -print) | (cd include; cpio -pdum $(libsubdir)/include)
2447
2448 # Put assert.h where it won't override GNU libc's assert.h.
2449 # It goes in a dir that is searched after GNU libc's headers;
2450 # thus, the following conditionals are no longer needed.
2451 # But it's not worth deleting them now.
2452 ## Don't replace the assert.h already there if it is not from GCC.
2453 ## This code would be simpler if it tested for -f ... && ! grep ...
2454 ## but supposedly the ! operator is missing in sh on some systems.
2455 install-assert-h: assert.h installdirs
2456 if [ -f $(assertdir)/assert.h ]; \
2457 then \
2458 if grep "__eprintf" $(assertdir)/assert.h >/dev/null; \
2459 then \
2460 rm -f $(assertdir)/assert.h; \
2461 $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
2462 chmod a-x $(assertdir)/assert.h; \
2463 else true; \
2464 fi; \
2465 else \
2466 rm -f $(assertdir)/assert.h; \
2467 $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
2468 chmod a-x $(assertdir)/assert.h; \
2469 fi
2470
2471 # Use this target to install the program `collect2' under the name `collect2'.
2472 install-collect2: collect2 installdirs
2473 $(INSTALL_PROGRAM) collect2$(exeext) $(libsubdir)/collect2$(exeext)
2474 # Install the driver program as $(libsubdir)/gcc for collect2.
2475 $(INSTALL_PROGRAM) xgcc$(exeext) $(libsubdir)/gcc$(exeext)
2476
2477 # Cancel installation by deleting the installed files.
2478 uninstall: lang.uninstall
2479 -rm -rf $(libsubdir)
2480 -rm -rf $(bindir)/$(GCC_INSTALL_NAME)$(exeext)
2481 -rm -rf $(bindir)/$(GCC_CROSS_NAME)$(exeext)
2482 -rm -rf $(bindir)/protoize$(exeext)
2483 -rm -rf $(bindir)/unprotoize$(exeext)
2484 -rm -rf $(mandir)/$(GCC_INSTALL_NAME)$(manext)
2485 -rm -rf $(mandir)/$(GCC_CROSS_NAME)$(manext)
2486 -rm -rf $(mandir)/cccp$(manext)
2487 -rm -rf $(mandir)/protoize$(manext)
2488 -rm -rf $(mandir)/unprotoize$(manext)
2489 #\f
2490 # These targets are for the dejagnu testsuites. The file site.exp
2491 # contains global variables that all the testsuites will use.
2492
2493 # Set to $(target_alias)/ for cross.
2494 target_subdir = @target_subdir@
2495
2496 site.exp: ./config.status Makefile
2497 @echo "Making a new config file..."
2498 -@rm -f ./tmp?
2499 @touch site.exp
2500 -@mv site.exp site.bak
2501 @echo "## these variables are automatically generated by make ##" > ./tmp0
2502 @echo "# Do not edit here. If you wish to override these values" >> ./tmp0
2503 @echo "# add them to the last section" >> ./tmp0
2504 @echo "set rootme \"`pwd`\"" >> ./tmp0
2505 @echo "set srcdir \"`cd ${srcdir}; pwd`\"" >> ./tmp0
2506 @echo "set host_triplet $(host_canonical)" >> ./tmp0
2507 @echo "set build_triplet $(build_canonical)" >> ./tmp0
2508 @echo "set target_triplet $(target)" >> ./tmp0
2509 @echo "set target_alias $(target_alias)" >> ./tmp0
2510 # CFLAGS is set even though it's empty to show we reserve the right to set it.
2511 @echo "set CFLAGS \"\"" >> ./tmp0
2512 @echo "set CXXFLAGS \"-I$(objdir)/../$(target_subdir)libio -I\$$srcdir/../libg++/src -I\$$srcdir/../libio -I\$$srcdir/../libstdc++ -I\$$srcdir/../libstdc++/stl -L$(objdir)/../$(target_subdir)libg++ -L$(objdir)/../$(target_subdir)libstdc++\"" >> ./tmp0
2513 # If newlib has been configured, we need to pass -B to gcc so it can find
2514 # newlib's crt0.o if it exists. This will cause a "path prefix not used"
2515 # message if it doesn't, but the testsuite is supposed to ignore the message -
2516 # it's too difficult to tell when to and when not to pass -B (not all targets
2517 # have crt0's). We could only add the -B if ../newlib/crt0.o exists, but that
2518 # seems like too selective a test.
2519 # ??? Another way to solve this might be to rely on linker scripts. Then
2520 # theoretically the -B won't be needed.
2521 # We also need to pass -L ../ld so that the linker can find ldscripts.
2522 @if [ -d $(objdir)/../$(target_subdir)newlib ] ; then \
2523 echo "set newlib_cflags \"-I$(objdir)/../$(target_subdir)newlib/targ-include -I\$$srcdir/../newlib/libc/include\"" >> ./tmp0; \
2524 echo "set newlib_ldflags \"-B$(objdir)/../$(target_subdir)newlib/\"" >> ./tmp0; \
2525 echo "append CFLAGS \" \$$newlib_cflags\"" >> ./tmp0; \
2526 echo "append CXXFLAGS \" \$$newlib_cflags\"" >> ./tmp0; \
2527 echo "append LDFLAGS \" \$$newlib_ldflags\"" >> ./tmp0; \
2528 else true; \
2529 fi
2530 @if [ -d $(objdir)/../ld ] ; then \
2531 echo "append LDFLAGS \" -L$(objdir)/../ld\"" >> ./tmp0; \
2532 else true; \
2533 fi
2534 echo "set tmpdir $(objdir)/testsuite" >> ./tmp0
2535 @echo "set srcdir \"\$${srcdir}/testsuite\"" >> ./tmp0
2536 @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./tmp0
2537 @cat ./tmp0 > site.exp
2538 @cat site.bak | sed \
2539 -e '1,/^## All variables above are.*##/ d' >> site.exp
2540 -@rm -f ./tmp?
2541
2542 CHECK_TARGETS = check-gcc check-g++ check-g77
2543
2544 check: $(CHECK_TARGETS)
2545
2546 testsuite/site.exp: site.exp
2547 if [ -d testsuite ]; then \
2548 true; \
2549 else \
2550 mkdir testsuite; \
2551 fi
2552 rm -rf testsuite/site.exp
2553 cp site.exp testsuite/site.exp
2554
2555 check-g++: testsuite/site.exp
2556 -rootme=`pwd`; export rootme; \
2557 srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
2558 cd testsuite; \
2559 EXPECT=${EXPECT} ; export EXPECT ; \
2560 if [ -f $${rootme}/../expect/expect ] ; then \
2561 TCL_LIBRARY=$${srcdir}/../tcl/library ; \
2562 export TCL_LIBRARY ; fi ; \
2563 $(RUNTEST) --tool g++ $(RUNTESTFLAGS)
2564
2565 check-gcc: testsuite/site.exp
2566 -rootme=`pwd`; export rootme; \
2567 srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
2568 cd testsuite; \
2569 EXPECT=${EXPECT} ; export EXPECT ; \
2570 if [ -f $${rootme}/../expect/expect ] ; then \
2571 TCL_LIBRARY=$${srcdir}/../tcl/library ; \
2572 export TCL_LIBRARY ; fi ; \
2573 $(RUNTEST) --tool gcc $(RUNTESTFLAGS)
2574
2575 check-g77: testsuite/site.exp
2576 -rootme=`pwd`; export rootme; \
2577 srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
2578 cd testsuite; \
2579 EXPECT=${EXPECT} ; export EXPECT ; \
2580 if [ -f $${rootme}/../expect/expect ] ; then \
2581 TCL_LIBRARY=$${srcdir}/../tcl/library ; \
2582 export TCL_LIBRARY ; fi ; \
2583 $(RUNTEST) --tool g77 $(RUNTESTFLAGS)
2584
2585 # These exist for maintenance purposes.
2586
2587 # Update the tags table.
2588 TAGS: force
2589 cd $(srcdir); \
2590 mkdir tmp-tags; \
2591 mv -f c-parse.[ch] cexp.c =*.[chy] tmp-tags; \
2592 etags *.y *.h *.c; \
2593 mv tmp-tags/* .; \
2594 rmdir tmp-tags
2595
2596 # Create the distribution tar.gz file.
2597 dist: tmp-gcc.xtar
2598 gzip --best < tmp-gcc.xtar > tmp-gcc.xtar.gz
2599 mv tmp-gcc.xtar.gz gcc-$(version).tar.gz
2600
2601 tmp-gcc.xtar: distdir
2602 # Make the distribution.
2603 tar -chf tmp-gcc.xtar gcc-$(version)
2604
2605 distdir-cvs: force
2606 if [ -d $(srcdir)/CVS ]; then cvs -r update; fi
2607
2608 # This target exists to do the initial work before the language specific
2609 # stuff gets done.
2610 distdir-start: doc $(srcdir)/INSTALL $(srcdir)/c-parse.y $(srcdir)/c-gperf.h \
2611 $(srcdir)/c-parse.c $(srcdir)/cexp.c $(srcdir)/config.in \
2612 $(srcdir)/version.c TAGS
2613 @if grep -s "for version ${mainversion}" gcc.texi > /dev/null; \
2614 then true; \
2615 else echo "You must update the version number in \`gcc.texi'"; sleep 10;\
2616 fi
2617 # Update the version number in README
2618 awk '$$1 " " $$2 " " $$3 == "This directory contains" \
2619 { $$6 = version; print $$0 } \
2620 $$1 " " $$2 " " $$3 != "This directory contains"' \
2621 version=$(version) README > tmp.README
2622 mv tmp.README README
2623 -rm -rf gcc-$(version) tmp
2624 # Put all the files in a temporary subdirectory
2625 # which has the name that we want to have in the tar file.
2626 mkdir tmp
2627 mkdir tmp/config
2628 mkdir tmp/ginclude
2629 for file in *[0-9a-zA-Z+]; do \
2630 $(LN) $$file tmp; \
2631 done
2632 cd config; \
2633 for file in *[0-9a-zA-Z+]; do \
2634 if test -d $$file && test "$$file" != RCS && test "$$file" != CVS; then \
2635 mkdir ../tmp/config/$$file; \
2636 cd $$file; \
2637 for subfile in *[0-9a-zA-Z+]; do \
2638 $(LN) $$subfile ../../tmp/config/$$file; \
2639 done; \
2640 cd ..; \
2641 else \
2642 $(LN) $$file ../tmp/config; \
2643 fi; \
2644 done
2645 cd ginclude; \
2646 for file in *[0-9a-zA-Z+]; do \
2647 $(LN) $$file ../tmp/ginclude; \
2648 done
2649 cd objc; \
2650 for file in *[0-9a-zA-Z+]; do \
2651 $(LN) $$file ../tmp/objc; \
2652 done
2653 $(LN) .gdbinit tmp
2654
2655 # Finish making `distdir', after the languages have done their thing.
2656 distdir-finish:
2657 mv tmp gcc-$(version)
2658 # Get rid of everything we don't want in the distribution. We'd want
2659 # this to use Makefile.in, but it doesn't have the `lang.foo' targets
2660 # expanded.
2661 cd gcc-$(version); make extraclean VERSION_DEP=
2662
2663 distdir: distdir-cvs distdir-start lang.distdir distdir-finish
2664
2665 # make diff oldversion=M.N
2666 # creates a diff file between an older distribution and this one.
2667 # The -P option assumes this is GNU diff.
2668 diff:
2669 diff -rc2P -x c-parse.y -x c-parse.c -x c-parse.h -x c-gperf.h \
2670 -x cexp.c -x -x TAGS -x INSTALL \
2671 -x configure -x config.in \
2672 -x "gcc.??" -x "gcc.??s" -x gcc.aux -x "gcc.info*" \
2673 -x "cpp.??" -x "cpp.??s" -x cpp.aux -x "cpp.info*" \
2674 $(LANG_DIFF_EXCLUDES) \
2675 gcc-$(oldversion) gcc-$(version) > gcc-$(oldversion)-$(version).diff
2676
2677 bootstrap bootstrap-lean: force
2678 # Only build the C compiler for stage1, because that is the only one that
2679 # we can guarantee will build with the native compiler, and also it is the
2680 # only thing useful for building stage2.
2681 $(MAKE) CC="$(CC)" libdir=$(libdir) LANGUAGES="$(BOOT_LANGUAGES)"
2682 $(MAKE) stage1
2683 # This used to define ALLOCA as empty, but that would lead to bad results
2684 # for a subsequent `make install' since that would not have ALLOCA empty.
2685 # To prevent `make install' from compiling alloca.o and then relinking cc1
2686 # because alloca.o is newer, we permit these recursive makes to compile
2687 # alloca.o. Then cc1 is newer, so it won't have to be relinked.
2688 $(MAKE) CC="stage1/xgcc$(exeext) -Bstage1/" CFLAGS="$(WARN_CFLAGS) $(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage1/ LANGUAGES="$(LANGUAGES)"
2689 $(MAKE) stage2
2690 -if test $@ = bootstrap-lean; then rm -rf stage1; else true; fi
2691 $(MAKE) CC="stage2/xgcc$(exeext) -Bstage2/" CFLAGS="$(WARN_CFLAGS) $(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage2/ LANGUAGES="$(LANGUAGES)"
2692
2693 bootstrap2 bootstrap2-lean: force
2694 $(MAKE) CC="stage1/xgcc$(exeext) -Bstage1/" CFLAGS="$(WARN_CFLAGS) $(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage1/ LANGUAGES="$(LANGUAGES)"
2695 $(MAKE) stage2
2696 -if test $@ = bootstrap2-lean; then rm -rf stage1; else true; fi
2697 $(MAKE) CC="stage2/xgcc$(exeext) -Bstage2/" CFLAGS="$(WARN_CFLAGS) $(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage2/ LANGUAGES="$(LANGUAGES)"
2698
2699 bootstrap3 bootstrap3-lean: force
2700 $(MAKE) CC="stage2/xgcc$(exeext) -Bstage2/" CFLAGS="$(WARN_CFLAGS) $(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage2/ LANGUAGES="$(LANGUAGES)"
2701
2702 bootstrap4 bootstrap4-lean: force
2703 $(MAKE) CC="stage3/xgcc$(exeext) -Bstage3/" CFLAGS="$(WARN_CFLAGS) $(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage3/ LANGUAGES="$(LANGUAGES)"
2704
2705 # Compare the object files in the current directory with those in the
2706 # stage2 directory.
2707
2708 # ./ avoids bug in some versions of tail.
2709 compare compare3 compare4 compare-lean compare3-lean compare4-lean: force
2710 -rm -f .bad_compare
2711 case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
2712 for file in *$(objext); do \
2713 tail +16c ./$$file > tmp-foo1; \
2714 tail +16c stage$$stage/$$file > tmp-foo2 \
2715 && (cmp tmp-foo1 tmp-foo2 > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
2716 done
2717 case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
2718 for dir in tmp-foo $(SUBDIRS); do \
2719 if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \
2720 for file in $$dir/*$(objext); do \
2721 tail +16c ./$$file > tmp-foo1; \
2722 tail +16c stage$$stage/$$file > tmp-foo2 \
2723 && (cmp tmp-foo1 tmp-foo2 > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
2724 done; \
2725 fi; \
2726 done
2727 -rm -f tmp-foo*
2728 case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
2729 if [ -f .bad_compare ]; then \
2730 echo "Bootstrap comparison failure!"; \
2731 cat .bad_compare; \
2732 exit 1; \
2733 else \
2734 case "$@" in \
2735 *-lean ) rm -rf stage$$stage ;; \
2736 *) ;; \
2737 esac; true; \
2738 fi
2739
2740 # Compare the object files in the current directory with those in the
2741 # stage2 directory. Use gnu cmp (diffutils v2.4 or later) to avoid
2742 # running tail and the overhead of twice copying each object file.
2743
2744 gnucompare gnucompare3 gnucompare4 gnucompare-lean gnucompare3-lean gnucompare4-lean: force
2745 -rm -f .bad_compare
2746 case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
2747 for file in *$(objext); do \
2748 (cmp --ignore-initial=16 $$file stage$$stage/$$file > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
2749 done
2750 case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
2751 for dir in tmp-foo $(SUBDIRS); do \
2752 if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \
2753 for file in $$dir/*$(objext); do \
2754 (cmp --ignore-initial=16 $$file stage$$stage/$$file > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
2755 done; \
2756 fi; \
2757 done
2758 case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
2759 if [ -f .bad_compare ]; then \
2760 echo "Bootstrap comparison failure!"; \
2761 cat .bad_compare; \
2762 exit 1; \
2763 else \
2764 case "$@" in \
2765 *-lean ) rm -rf stage$$stage ;; \
2766 esac; true; \
2767 fi
2768
2769 # Copy the object files from a particular stage into a subdirectory.
2770 stage1-start:
2771 -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
2772 -for dir in . $(SUBDIRS) ; \
2773 do \
2774 if [ -d stage1/$$dir ] ; then true ; else mkdir stage1/$$dir ; fi ; \
2775 done
2776 -mv $(STAGESTUFF) stage1
2777 # Copy as/ld if they exist to stage dir, so that running xgcc from the stage
2778 # dir will work properly.
2779 -if [ -f as$(exeext) ] ; then $(LN_S) ../as$(exeext) stage1 ; else true ; fi
2780 -if [ -f ld$(exeext) ] ; then $(LN_S) ../ld$(exeext) stage1 ; else true ; fi
2781 -if [ -f collect-ld$(exeext) ] ; then $(LN_S) ../collect-ld$(exeext) stage1 ; else true ; fi
2782 -rm -f stage1/libgcc.a
2783 -cp libgcc.a stage1
2784 -if $(RANLIB_TEST) ; then $(RANLIB) stage1/libgcc.a; else true; fi
2785 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
2786 cp stage1/$${f} . ; \
2787 else true; \
2788 fi; done
2789 stage1: force stage1-start lang.stage1
2790
2791 stage2-start:
2792 -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
2793 -for dir in . $(SUBDIRS) ; \
2794 do \
2795 if [ -d stage2/$$dir ] ; then true ; else mkdir stage2/$$dir ; fi ; \
2796 done
2797 -mv $(STAGESTUFF) stage2
2798 # Copy as/ld if they exist to stage dir, so that running xgcc from the stage
2799 # dir will work properly.
2800 -if [ -f as$(exeext) ] ; then $(LN_S) ../as$(exeext) stage2 ; else true ; fi
2801 -if [ -f ld$(exeext) ] ; then $(LN_S) ../ld$(exeext) stage2 ; else true ; fi
2802 -if [ -f collect-ld ] ; then $(LN_S) ../collect-ld$(exeext) stage2 ; else true ; fi
2803 -rm -f stage2/libgcc.a
2804 -cp libgcc.a stage2
2805 -if $(RANLIB_TEST) ; then $(RANLIB) stage2/libgcc.a; else true; fi
2806 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
2807 cp stage2/$${f} . ; \
2808 else true; \
2809 fi; done
2810 stage2: force stage2-start lang.stage2
2811
2812 stage3-start:
2813 -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
2814 -for dir in . $(SUBDIRS) ; \
2815 do \
2816 if [ -d stage3/$$dir ] ; then true ; else mkdir stage3/$$dir ; fi ; \
2817 done
2818 -mv $(STAGESTUFF) stage3
2819 # Copy as/ld if they exist to stage dir, so that running xgcc from the stage
2820 # dir will work properly.
2821 -if [ -f as$(exeext) ] ; then $(LN_S) ../as$(exeext) stage3 ; else true ; fi
2822 -if [ -f ld$(exeext) ] ; then $(LN_S) ../ld$(exeext) stage3 ; else true ; fi
2823 -if [ -f collect-ld$(exeext) ] ; then $(LN_S) ../collect-ld$(exeext) stage3 ; else true ; fi
2824 -rm -f stage3/libgcc.a
2825 -cp libgcc.a stage3
2826 -if $(RANLIB_TEST) ; then $(RANLIB) stage3/libgcc.a; else true; fi
2827 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
2828 cp stage3/$${f} . ; \
2829 else true; \
2830 fi; done
2831 stage3: force stage3-start lang.stage3
2832
2833 stage4-start:
2834 -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
2835 -for dir in . $(SUBDIRS) ; \
2836 do \
2837 if [ -d stage4/$$dir ] ; then true ; else mkdir stage4/$$dir ; fi ; \
2838 done
2839 -mv $(STAGESTUFF) stage4
2840 # Copy as/ld if they exist to stage dir, so that running xgcc from the stage
2841 # dir will work properly.
2842 -if [ -f as$(exeext) ] ; then $(LN_S) ../as$(exeext) stage4 ; else true ; fi
2843 -if [ -f ld$(exeext) ] ; then $(LN_S) ../ld$(exeext) stage4 ; else true ; fi
2844 -if [ -f collect-ld$(exeext) ] ; then $(LN_S) ../collect-ld$(exeext) stage4 ; else true ; fi
2845 -rm -f stage4/libgcc.a
2846 -cp libgcc.a stage4
2847 -if $(RANLIB_TEST) ; then $(RANLIB) stage4/libgcc.a; else true; fi
2848 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
2849 cp stage4/$${f} . ; \
2850 else true; \
2851 fi; done
2852 stage4: force stage4-start lang.stage4
2853
2854 # Copy just the executable files from a particular stage into a subdirectory,
2855 # and delete the object files. Use this if you're just verifying a version
2856 # that is pretty sure to work, and you are short of disk space.
2857 risky-stage1: stage1
2858 -make clean
2859
2860 risky-stage2: stage2
2861 -make clean
2862
2863 risky-stage3: stage3
2864 -make clean
2865
2866 risky-stage4: stage4
2867 -make clean
2868
2869 #In GNU Make, ignore whether `stage*' exists.
2870 .PHONY: stage1 stage2 stage3 stage4 clean maintainer-clean TAGS bootstrap
2871 .PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
2872
2873 force:
2874
2875 # ---
2876 # The enquire rules are still useful for building new float-anything.h.
2877 # Special flags for compiling enquire.
2878 # We disable optimization to make floating point more reliable.
2879 ENQUIRE_CFLAGS = -DNO_MEM -DNO_LONG_DOUBLE_IO -O0
2880 ENQUIRE_LDFLAGS = $(LDFLAGS)
2881
2882 # Enquire target (This is a variable so that a target can choose not to
2883 # build it.)
2884 ENQUIRE = enquire
2885
2886 # Test to see whether <float.h> exists in the system header files,
2887 # and is not derived from GCC.
2888 FLOAT_H_TEST = \
2889 [ -f $(SYSTEM_HEADER_DIR)/float.h ] && \
2890 if grep 'ifndef _FLOAT_H___' $(SYSTEM_HEADER_DIR)/float.h >/dev/null; \
2891 then false; \
2892 else :; fi
2893 # We pretend to not having a usable <float.h>, hence disable the FLOAT_H_TEST
2894 # to ensure, we're emitting a full blown <float.h> ourselves.
2895 FLOAT_H_TEST = false
2896
2897 # Used to compile enquire with standard cc, but have forgotten why.
2898 # Let's try with GCC.
2899 enquire: enquire.o $(GCC_PARTS)
2900 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ENQUIRE_LDFLAGS) enquire.o -o $@
2901 enquire.o: $(srcdir)/enquire.c $(GCC_PASSES) stmp-int-hdrs
2902 if $(FLOAT_H_TEST); then \
2903 rm -f include/float.h; \
2904 SYS_FLOAT_H_WRAP=1; \
2905 else :; \
2906 SYS_FLOAT_H_WRAP=0; \
2907 fi; \
2908 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(ENQUIRE_CFLAGS) \
2909 -DSYS_FLOAT_H_WRAP=$$SYS_FLOAT_H_WRAP \
2910 -I. -c $(srcdir)/enquire.c
2911
2912 # Create float.h source for the native machine.
2913 # Make it empty if we can use the system float.h without changes.
2914 float.h-nat: enquire
2915 -./enquire -f > tmp-float.h
2916 grep '#define [^_]' tmp-float.h >/dev/null || true > tmp-float.h
2917 mv tmp-float.h float.h-nat
2918
2919 # Create a dummy float.h source for a cross-compiler.
2920 # ??? This isn't used anymore. Should we create config/float-unkn.h
2921 # and make that the default float_format in configure?
2922 float.h-cross:
2923 echo "#ifndef __GCC_FLOAT_NOT_NEEDED" > t-float.h-cross
2924 echo "#error float.h values not known for cross-compiler" >> t-float.h-cross
2925 echo "#endif" >> t-float.h-cross
2926 mv t-float.h-cross float.h-cross
2927
This page took 0.205276 seconds and 4 git commands to generate.