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