]>
Commit | Line | Data |
---|---|---|
73458fb7 NN |
1 | # Makefile for GNU Compiler Collection |
2 | # Run 'configure' to generate Makefile from Makefile.in | |
3 | ||
818ab71a | 4 | # Copyright (C) 1987-2016 Free Software Foundation, Inc. |
79d8453e | 5 | |
1322177d | 6 | #This file is part of GCC. |
79d8453e | 7 | |
1322177d | 8 | #GCC is free software; you can redistribute it and/or modify |
79d8453e | 9 | #it under the terms of the GNU General Public License as published by |
9dcd6f09 | 10 | #the Free Software Foundation; either version 3, or (at your option) |
79d8453e RS |
11 | #any later version. |
12 | ||
1322177d | 13 | #GCC is distributed in the hope that it will be useful, |
79d8453e RS |
14 | #but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | #GNU General Public License for more details. | |
17 | ||
18 | #You should have received a copy of the GNU General Public License | |
9dcd6f09 NC |
19 | #along with GCC; see the file COPYING3. If not see |
20 | #<http://www.gnu.org/licenses/>. | |
79d8453e RS |
21 | |
22 | # The targets for external use include: | |
455c8f48 | 23 | # all, doc, install, install-cross, install-cross-rest, install-strip, |
8b1f719a | 24 | # uninstall, TAGS, mostlyclean, clean, distclean, maintainer-clean. |
79d8453e | 25 | |
6c80a645 | 26 | # This is the default target. |
73458fb7 NN |
27 | # Set by autoconf to "all.internal" for a native build, or |
28 | # "all.cross" to build a cross compiler. | |
29 | all: @ALL@ | |
30 | ||
31 | # Depend on this to specify a phony target portably. | |
32 | force: | |
33 | ||
34 | # This tells GNU make version 3 not to export the variables | |
35 | # defined in this file into the environment (and thus recursive makes). | |
36 | .NOEXPORT: | |
37 | # And this tells it not to automatically pass command-line variables | |
38 | # to recursive makes. | |
39 | MAKEOVERRIDES = | |
6c80a645 | 40 | |
03787dfd | 41 | # Suppress smart makes who think they know how to automake yacc and flex file |
2e494f70 | 42 | .y.c: |
03787dfd | 43 | .l.c: |
2e494f70 | 44 | |
73458fb7 NN |
45 | # The only suffixes we want for implicit rules are .c and .o, so clear |
46 | # the list and add them. This speeds up GNU Make, and allows -r to work. | |
47 | # For i18n support, we also need .gmo, .po, .pox. | |
48 | # This must come before the language makefile fragments to allow them to | |
49 | # add suffixes and rules of their own. | |
50 | .SUFFIXES: | |
9469b9b2 | 51 | .SUFFIXES: .c .cc .o .po .pox .gmo |
73458fb7 NN |
52 | |
53 | # ------------------------------- | |
54 | # Standard autoconf-set variables | |
55 | # ------------------------------- | |
56 | ||
4665e56c NN |
57 | build=@build@ |
58 | host=@host@ | |
47e62307 | 59 | host_noncanonical=@host_noncanonical@ |
73458fb7 | 60 | target=@target@ |
e165d61b | 61 | target_noncanonical:=@target_noncanonical@ |
73458fb7 | 62 | |
85c64bbe BS |
63 | # Normally identical to target_noncanonical, except for compilers built |
64 | # as accelerator targets. | |
65 | real_target_noncanonical:=@real_target_noncanonical@ | |
66 | accel_dir_suffix = @accel_dir_suffix@ | |
67 | ||
73458fb7 | 68 | # Sed command to transform gcc to installed name. |
e165d61b | 69 | program_transform_name := @program_transform_name@ |
73458fb7 NN |
70 | |
71 | # ----------------------------- | |
72 | # Directories used during build | |
73 | # ----------------------------- | |
74 | ||
75 | # Directory where sources are, from where we are. | |
76 | srcdir = @srcdir@ | |
ad3a7ce3 | 77 | gcc_docdir = @srcdir@/doc |
71cbe2c1 KC |
78 | |
79 | # Directory where sources are, absolute. | |
80 | abs_srcdir = @abs_srcdir@ | |
81 | abs_docdir = @abs_srcdir@/doc | |
3859c32a | 82 | |
96a58590 L |
83 | # Directory where sources are, relative to here. |
84 | top_srcdir = @top_srcdir@ | |
85 | ||
5da9128a PB |
86 | # Top build directory for this package, relative to here. |
87 | top_builddir = . | |
3bbd5a19 | 88 | |
da0f6381 PB |
89 | # The absolute path to the current directory. |
90 | objdir := $(shell pwd) | |
73458fb7 | 91 | |
215c351a | 92 | host_subdir=@host_subdir@ |
71b5d516 | 93 | build_subdir=@build_subdir@ |
3bbd5a19 | 94 | target_subdir=@target_subdir@ |
57255173 | 95 | build_libsubdir=@build_libsubdir@ |
71b5d516 | 96 | |
3bbd5a19 | 97 | # Top build directory for the "Cygnus tree", relative to $(top_builddir). |
215c351a | 98 | ifeq ($(host_subdir),.) |
3bbd5a19 | 99 | toplevel_builddir := .. |
215c351a | 100 | else |
3bbd5a19 | 101 | toplevel_builddir := ../.. |
215c351a PB |
102 | endif |
103 | ||
3bbd5a19 PB |
104 | build_objdir := $(toplevel_builddir)/$(build_subdir) |
105 | build_libobjdir := $(toplevel_builddir)/$(build_libsubdir) | |
106 | target_objdir := $(toplevel_builddir)/$(target_subdir) | |
107 | ||
65455962 KC |
108 | # -------- |
109 | # Defined vpaths | |
110 | # -------- | |
111 | ||
112 | # Directory where sources are, from where we are. | |
113 | VPATH = @srcdir@ | |
114 | ||
5340bbea | 115 | # We define a vpath for the sources of the .texi files here because they |
65455962 KC |
116 | # are split between multiple directories and we would rather use one implicit |
117 | # pattern rule for everything. | |
118 | # This vpath could be extended within the Make-lang fragments. | |
119 | ||
d683ec81 PB |
120 | vpath %.texi $(gcc_docdir) |
121 | vpath %.texi $(gcc_docdir)/include | |
65455962 | 122 | |
73458fb7 NN |
123 | # -------- |
124 | # UNSORTED | |
125 | # -------- | |
126 | ||
5a6b6a9f OH |
127 | # Extra flags to pass to indicate cross compilation, which |
128 | # might be used or tested by Make-lang fragments. | |
129 | CROSS=@CROSS@ | |
130 | ||
79d8453e RS |
131 | # Variables that exist for you to override. |
132 | # See below for how to change them for certain systems. | |
133 | ||
013a2ee0 | 134 | # List of language subdirectories. |
19361834 | 135 | SUBDIRS =@subdirs@ build |
013a2ee0 | 136 | |
79d8453e | 137 | # Selection of languages to be made. |
cc11cc9b | 138 | CONFIG_LANGUAGES = @all_selected_languages@ |
c77556a5 RX |
139 | LANGUAGES = c gcov$(exeext) gcov-dump$(exeext) gcov-tool$(exeext) \ |
140 | $(CONFIG_LANGUAGES) | |
79d8453e | 141 | |
00afcaa0 | 142 | # Default values for variables overridden in Makefile fragments. |
78faa32d | 143 | # CFLAGS is for the user to override to, e.g., do a cross build with -O2. |
b8dad04b | 144 | # TCFLAGS is used for compilations with the GCC just built. |
00afcaa0 PB |
145 | # T_CFLAGS is used for all compilations and is overridden by t-* files. |
146 | T_CFLAGS = | |
b8dad04b | 147 | TCFLAGS = |
ec6c7392 | 148 | CFLAGS = @CFLAGS@ |
00020c16 | 149 | CXXFLAGS = @CXXFLAGS@ |
cc11cc9b | 150 | LDFLAGS = @LDFLAGS@ |
b8dad04b | 151 | |
459260ec DM |
152 | # Should we build position-independent host code? |
153 | PICFLAG = @PICFLAG@ | |
154 | ||
22aa533e NS |
155 | # Flags to determine code coverage. When coverage is disabled, this will |
156 | # contain the optimization flags, as you normally want code coverage | |
e61a2eb7 | 157 | # without optimization. |
22aa533e | 158 | COVERAGE_FLAGS = @coverage_flags@ |
160e2e4f | 159 | coverageexts = .{gcda,gcno} |
22aa533e | 160 | |
8b1f719a | 161 | # The warning flags are separate from CFLAGS because people tend to |
5b67ad6f DA |
162 | # override optimization flags and we'd like them to still have warnings |
163 | # turned on. These flags are also used to pass other stage dependent | |
164 | # flags from configure. The user is free to explicitly turn these flags | |
165 | # off if they wish. | |
b8dad04b | 166 | # LOOSE_WARN are the warning flags to use when compiling something |
8dd9a120 | 167 | # which is only compiled with gcc, such as libgcc. |
00020c16 | 168 | # C_LOOSE_WARN is similar, but with C-only warnings. |
8b1f719a | 169 | # STRICT_WARN are the additional warning flags to |
8dd9a120 | 170 | # apply to the back end and some front ends, which may be compiled |
8b1f719a | 171 | # with other compilers. |
00020c16 | 172 | # C_STRICT_WARN is similar, with C-only warnings. |
3bbd5a19 | 173 | LOOSE_WARN = @loose_warn@ |
00020c16 | 174 | C_LOOSE_WARN = @c_loose_warn@ |
8b1f719a | 175 | STRICT_WARN = @strict_warn@ |
00020c16 | 176 | C_STRICT_WARN = @c_strict_warn@ |
b8dad04b | 177 | |
204250d2 RH |
178 | # This is set by --enable-checking. The idea is to catch forgotten |
179 | # "extern" tags in header files. | |
180 | NOCOMMON_FLAG = @nocommon_flag@ | |
181 | ||
e9411247 MM |
182 | NOEXCEPTION_FLAGS = @noexception_flags@ |
183 | ||
4c0cca18 UW |
184 | ALIASING_FLAGS = @aliasing_flags@ |
185 | ||
73e232f0 | 186 | # This is set by --disable-maintainer-mode (default) to "#" |
a88fdc2a NP |
187 | # FIXME: 'MAINT' will always be set to an empty string, no matter if |
188 | # --disable-maintainer-mode is used or not. This is because the | |
189 | # following will expand to "MAINT := " in maintainer mode, and to | |
190 | # "MAINT := #" in non-maintainer mode, but because '#' starts a comment, | |
191 | # they mean exactly the same thing for make. | |
e9c4897b | 192 | MAINT := @MAINT@ |
73e232f0 | 193 | |
a88fdc2a NP |
194 | # The following provides the variable ENABLE_MAINTAINER_RULES that can |
195 | # be used in language Make-lang.in makefile fragments to enable | |
196 | # maintainer rules. So, ENABLE_MAINTAINER_RULES is 'true' in | |
197 | # maintainer mode, and '' otherwise. | |
198 | @MAINT@ ENABLE_MAINTAINER_RULES = true | |
199 | ||
414d23ae HPN |
200 | # These are set by --enable-checking=valgrind. |
201 | RUN_GEN = @valgrind_command@ | |
202 | VALGRIND_DRIVER_DEFINES = @valgrind_path_defines@ | |
203 | ||
b8dad04b ZW |
204 | # This is how we control whether or not the additional warnings are applied. |
205 | .-warn = $(STRICT_WARN) | |
9a43b902 | 206 | build-warn = $(STRICT_WARN) |
00020c16 | 207 | GCC_WARN_CFLAGS = $(LOOSE_WARN) $(C_LOOSE_WARN) $($(@D)-warn) $(if $(filter-out $(STRICT_WARN),$($(@D)-warn)),,$(C_STRICT_WARN)) $(NOCOMMON_FLAG) $($@-warn) |
703245d7 | 208 | GCC_WARN_CXXFLAGS = $(LOOSE_WARN) $($(@D)-warn) $(NOCOMMON_FLAG) $($@-warn) |
dd859b8a | 209 | |
89a42ac8 ZW |
210 | # These files are to have specific diagnostics suppressed, or are not to |
211 | # be subject to -Werror: | |
87f85ea0 | 212 | # flex output may yield harmless "no previous prototype" warnings |
406176be | 213 | build/gengtype-lex.o-warn = -Wno-error |
f142b5bc | 214 | gengtype-lex.o-warn = -Wno-error |
c77556a5 RX |
215 | libgcov-util.o-warn = -Wno-error |
216 | libgcov-driver-tool.o-warn = -Wno-error | |
217 | libgcov-merge-tool.o-warn = -Wno-error | |
da42b278 RB |
218 | gimple-match.o-warn = -Wno-unused |
219 | generic-match.o-warn = -Wno-unused | |
2ae1d1b8 | 220 | dfp.o-warn = -Wno-strict-aliasing |
b8dad04b ZW |
221 | |
222 | # All warnings have to be shut off in stage1 if the compiler used then | |
223 | # isn't gcc; configure determines that. WARN_CFLAGS will be either | |
00020c16 ILT |
224 | # $(GCC_WARN_CFLAGS), or nothing. Similarly, WARN_CXXFLAGS will be |
225 | # either $(GCC_WARN_CXXFLAGS), or nothing. | |
b8dad04b | 226 | WARN_CFLAGS = @warn_cflags@ |
00020c16 | 227 | WARN_CXXFLAGS = @warn_cxxflags@ |
b8dad04b | 228 | |
f5d394a6 DB |
229 | CPPFLAGS = @CPPFLAGS@ |
230 | ||
ab87f8c8 | 231 | AWK = @AWK@ |
b614ee64 | 232 | CC = @CC@ |
00020c16 | 233 | CXX = @CXX@ |
1e608388 | 234 | BISON = @BISON@ |
0777e4c6 | 235 | BISONFLAGS = |
1e608388 ZW |
236 | FLEX = @FLEX@ |
237 | FLEXFLAGS = | |
f6a874ac | 238 | AR = @AR@ |
79d8453e | 239 | AR_FLAGS = rc |
f6a874ac | 240 | NM = @NM@ |
6822468a | 241 | RANLIB = @RANLIB@ |
343a6100 | 242 | RANLIB_FLAGS = @ranlib_flags@ |
73458fb7 | 243 | |
ed2eaa9f ILT |
244 | # Libraries to use on the host. |
245 | HOST_LIBS = @HOST_LIBS@ | |
246 | ||
00020c16 | 247 | # The name of the compiler to use. |
00020c16 ILT |
248 | COMPILER = $(CXX) |
249 | COMPILER_FLAGS = $(CXXFLAGS) | |
ed2eaa9f ILT |
250 | # If HOST_LIBS is set, then the user is controlling the libraries to |
251 | # link against. In that case, link with $(CC) so that the -lstdc++ | |
252 | # library is not introduced. If HOST_LIBS is not set, link with | |
253 | # $(CXX) to pick up -lstdc++. | |
254 | ifeq ($(HOST_LIBS),) | |
00020c16 ILT |
255 | LINKER = $(CXX) |
256 | LINKER_FLAGS = $(CXXFLAGS) | |
ed2eaa9f ILT |
257 | else |
258 | LINKER = $(CC) | |
259 | LINKER_FLAGS = $(CFLAGS) | |
260 | endif | |
7980bfb8 | 261 | |
5148d2e3 L |
262 | NO_PIE_CFLAGS = @NO_PIE_CFLAGS@ |
263 | NO_PIE_FLAG = @NO_PIE_FLAG@ | |
264 | ||
428b3812 | 265 | # We don't want to compile the compilers with -fPIE, it make PCH fail. |
5148d2e3 | 266 | COMPILER += $(NO_PIE_CFLAGS) |
428b3812 L |
267 | |
268 | # Link with -no-pie since we compile the compiler with -fno-PIE. | |
5148d2e3 | 269 | LINKER += $(NO_PIE_FLAG) |
428b3812 | 270 | |
427b248d JM |
271 | # Like LINKER, but use a mutex for serializing front end links. |
272 | ifeq (@DO_LINK_MUTEX@,true) | |
273 | LLINKER = $(SHELL) $(srcdir)/lock-and-run.sh linkfe.lck $(LINKER) | |
274 | else | |
275 | LLINKER = $(LINKER) | |
276 | endif | |
277 | ||
25e08379 PP |
278 | THIN_ARCHIVE_SUPPORT = @thin_archive_support@ |
279 | ||
280 | USE_THIN_ARCHIVES = no | |
281 | ifeq ($(THIN_ARCHIVE_SUPPORT),yes) | |
282 | ifeq ($(AR_FLAGS),rc) | |
283 | ifeq ($(RANLIB_FLAGS),) | |
284 | USE_THIN_ARCHIVES = yes | |
285 | endif | |
286 | endif | |
287 | endif | |
288 | ||
73458fb7 NN |
289 | # ------------------------------------------- |
290 | # Programs which operate on the build machine | |
291 | # ------------------------------------------- | |
292 | ||
b41e09a7 | 293 | SHELL = @SHELL@ |
1e6347d8 RO |
294 | # pwd command to use. Allow user to override default by setting PWDCMD in |
295 | # the environment to account for automounters. The make variable must not | |
296 | # be called PWDCMD, otherwise the value set here is passed to make | |
297 | # subprocesses and overrides the setting from the user's environment. | |
8c90b13a L |
298 | # Don't use PWD since it is a common shell environment variable and we |
299 | # don't want to corrupt it. | |
300 | PWD_COMMAND = $${PWDCMD-pwd} | |
79d8453e | 301 | # on sysV, define this as cp. |
3c18ea24 | 302 | INSTALL = @INSTALL@ |
ac64120e JW |
303 | # Some systems may be missing symbolic links, regular links, or both. |
304 | # Allow configure to check this and use "ln -s", "ln", or "cp" as appropriate. | |
305 | LN=@LN@ | |
306 | LN_S=@LN_S@ | |
79d8453e | 307 | # These permit overriding just for certain files. |
fca9d4b0 MH |
308 | INSTALL_PROGRAM = @INSTALL_PROGRAM@ |
309 | INSTALL_DATA = @INSTALL_DATA@ | |
7c1e8336 | 310 | INSTALL_SCRIPT = @INSTALL@ |
455c8f48 RW |
311 | install_sh = $(SHELL) $(srcdir)/../install-sh |
312 | INSTALL_STRIP_PROGRAM = $(install_sh) -c -s | |
09fa0705 | 313 | MAKEINFO = @MAKEINFO@ |
a541f69d | 314 | MAKEINFOFLAGS = --no-split |
d8984b6e | 315 | TEXI2DVI = texi2dvi |
b5422ad7 | 316 | TEXI2PDF = texi2pdf |
9d65c5cb | 317 | TEXI2HTML = $(MAKEINFO) --html |
fd939e46 | 318 | TEXI2POD = perl $(srcdir)/../contrib/texi2pod.pl |
b361b153 | 319 | POD2MAN = pod2man --center="GNU" --release="gcc-$(version)" --date=$(shell sed 's/\(....\)\(..\)\(..\)/\1-\2-\3/' <$(DATESTAMP)) |
5262d6b6 | 320 | # Some versions of `touch' (such as the version on Solaris 2.8) |
d9835ae8 | 321 | # do not correctly set the timestamp due to buggy versions of `utime' |
5262d6b6 | 322 | # in the kernel. So, we use `echo' instead. |
d9835ae8 | 323 | STAMP = echo timestamp > |
703fdf5a RW |
324 | # If necessary (e.g., when using the MSYS shell on Microsoft Windows) |
325 | # translate the shell's notion of absolute pathnames to the native | |
326 | # spelling. | |
a0e527e3 | 327 | build_file_translate = @build_file_translate@ |
d9835ae8 | 328 | |
73458fb7 NN |
329 | # Make sure the $(MAKE) variable is defined. |
330 | @SET_MAKE@ | |
331 | ||
947c6b00 NN |
332 | # Locate mkinstalldirs. |
333 | mkinstalldirs=$(SHELL) $(srcdir)/../mkinstalldirs | |
334 | ||
a4e4a2d6 RW |
335 | # write_entries_to_file - writes each entry in a list |
336 | # to the specified file. Entries are written in chunks of | |
073a8998 | 337 | # $(write_entries_to_file_split) to accommodate systems with |
a4e4a2d6 RW |
338 | # severe command-line-length limitations. |
339 | # Parameters: | |
340 | # $(1): variable containing entries to iterate over | |
341 | # $(2): output file | |
342 | write_entries_to_file_split = 50 | |
343 | write_entries_to_file = $(shell rm -f $(2) || :) $(shell touch $(2)) \ | |
344 | $(foreach range, \ | |
345 | $(shell i=1; while test $$i -le $(words $(1)); do \ | |
346 | echo $$i; i=`expr $$i + $(write_entries_to_file_split)`; done), \ | |
1b77ee03 MM |
347 | $(shell echo "$(wordlist $(range), \ |
348 | $(shell expr $(range) + $(write_entries_to_file_split) - 1), $(1))" \ | |
2fdb618d | 349 | | tr ' ' '\012' >> $(2))) |
a4e4a2d6 | 350 | |
35485da9 DM |
351 | # The jit documentation looks better if built with sphinx, but can be |
352 | # built with texinfo if sphinx is not available. | |
353 | # configure sets "doc_build_sys" to "sphinx" or "texinfo" accordingly | |
354 | doc_build_sys=@doc_build_sys@ | |
355 | ||
73458fb7 NN |
356 | # -------- |
357 | # UNSORTED | |
358 | # -------- | |
359 | ||
043378c3 | 360 | # Dependency tracking stuff. |
54c09437 | 361 | CXXDEPMODE = @CXXDEPMODE@ |
043378c3 TT |
362 | DEPDIR = @DEPDIR@ |
363 | depcomp = $(SHELL) $(srcdir)/../depcomp | |
364 | ||
c11c795e TT |
365 | # In the past we used AC_PROG_CC_C_O and set this properly, but |
366 | # it was discovered that this hadn't worked in a long time, so now | |
367 | # we just hard-code. | |
368 | OUTPUT_OPTION = -o $@ | |
73458fb7 | 369 | |
b8dad04b ZW |
370 | # This is where we get zlib from. zlibdir is -L../zlib and zlibinc is |
371 | # -I../zlib, unless we were configured with --with-system-zlib, in which | |
372 | # case both are empty. | |
373 | ZLIB = @zlibdir@ -lz | |
374 | ZLIBINC = @zlibinc@ | |
79d8453e | 375 | |
6de9cd9a DN |
376 | # How to find GMP |
377 | GMPLIBS = @GMPLIBS@ | |
378 | GMPINC = @GMPINC@ | |
379 | ||
e357a5e0 | 380 | # How to find isl. |
eae1a5d4 | 381 | ISLLIBS = @ISLLIBS@ |
33ad93b9 | 382 | ISLINC = @ISLINC@ |
f8bf9252 | 383 | |
d7f09764 DN |
384 | # Set to 'yes' if the LTO front end is enabled. |
385 | enable_lto = @enable_lto@ | |
386 | ||
de3f621b | 387 | # Compiler and flags needed for plugin support |
de3f621b JR |
388 | PLUGINCC = @CXX@ |
389 | PLUGINCFLAGS = @CXXFLAGS@ | |
eeb971c9 EB |
390 | |
391 | # Libs and linker options needed for plugin support | |
68a607d8 DN |
392 | PLUGINLIBS = @pluginlibs@ |
393 | ||
bf016de8 RAE |
394 | enable_plugin = @enable_plugin@ |
395 | ||
459260ec DM |
396 | enable_host_shared = @enable_host_shared@ |
397 | ||
85c64bbe BS |
398 | enable_as_accelerator = @enable_as_accelerator@ |
399 | ||
6046b0ed | 400 | CPPLIB = ../libcpp/libcpp.a |
4f4e53dd PB |
401 | CPPINC = -I$(srcdir)/../libcpp/include |
402 | ||
909e2256 | 403 | # Where to find decNumber |
79b87c74 | 404 | enable_decimal_float = @enable_decimal_float@ |
909e2256 | 405 | DECNUM = $(srcdir)/../libdecnumber |
79b87c74 MM |
406 | DECNUMFMT = $(srcdir)/../libdecnumber/$(enable_decimal_float) |
407 | DECNUMINC = -I$(DECNUM) -I$(DECNUMFMT) -I../libdecnumber | |
909e2256 JG |
408 | LIBDECNUMBER = ../libdecnumber/libdecnumber.a |
409 | ||
d83697f4 ILT |
410 | # The backtrace library. |
411 | BACKTRACE = $(srcdir)/../libbacktrace | |
412 | BACKTRACEINC = -I$(BACKTRACE) | |
413 | LIBBACKTRACE = ../libbacktrace/.libs/libbacktrace.a | |
414 | ||
ba1811f1 | 415 | # Target to use when installing include directory. Either |
ff3aaf17 | 416 | # install-headers-tar, install-headers-cpio or install-headers-cp. |
3c18ea24 | 417 | INSTALL_HEADERS_DIR = @build_install_headers_dir@ |
ba1811f1 | 418 | |
d7371761 RK |
419 | # Header files that are made available under the same name |
420 | # to programs compiled with GCC. | |
b7f0fff2 | 421 | USER_H = $(srcdir)/ginclude/float.h \ |
d57a4b98 RH |
422 | $(srcdir)/ginclude/iso646.h \ |
423 | $(srcdir)/ginclude/stdarg.h \ | |
424 | $(srcdir)/ginclude/stdbool.h \ | |
425 | $(srcdir)/ginclude/stddef.h \ | |
426 | $(srcdir)/ginclude/varargs.h \ | |
0f996086 | 427 | $(srcdir)/ginclude/stdfix.h \ |
bbceee64 | 428 | $(srcdir)/ginclude/stdnoreturn.h \ |
d19fa6b5 | 429 | $(srcdir)/ginclude/stdalign.h \ |
39b2468c | 430 | $(srcdir)/ginclude/stdatomic.h \ |
d57a4b98 | 431 | $(EXTRA_HEADERS) |
d7371761 | 432 | |
9b91e436 KT |
433 | USER_H_INC_NEXT_PRE = @user_headers_inc_next_pre@ |
434 | USER_H_INC_NEXT_POST = @user_headers_inc_next_post@ | |
435 | ||
fa958513 | 436 | # The GCC to use for compiling crt*.o. |
bf428f48 | 437 | # Usually the one we just built. |
fa958513 | 438 | # Don't use this as a dependency--use $(GCC_PASSES). |
4977bab6 | 439 | GCC_FOR_TARGET = $(STAGE_CC_WRAPPER) ./xgcc -B./ -B$(build_tooldir)/bin/ -isystem $(build_tooldir)/include -isystem $(build_tooldir)/sys-include -L$(objdir)/../ld |
79d8453e | 440 | |
c875f596 DN |
441 | # Set if the compiler was configured with --with-build-sysroot. |
442 | SYSROOT_CFLAGS_FOR_TARGET = @SYSROOT_CFLAGS_FOR_TARGET@ | |
443 | ||
79d8453e | 444 | # This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET. |
da0f6381 | 445 | # It specifies -B./. |
3c9a2b55 | 446 | # It also specifies -isystem ./include to find, e.g., stddef.h. |
00020c16 | 447 | GCC_CFLAGS=$(CFLAGS_FOR_TARGET) $(INTERNAL_CFLAGS) $(T_CFLAGS) $(LOOSE_WARN) $(C_LOOSE_WARN) -Wold-style-definition $($@-warn) -isystem ./include $(TCFLAGS) |
79d8453e | 448 | |
73458fb7 NN |
449 | # --------------------------------------------------- |
450 | # Programs which produce files for the target machine | |
451 | # --------------------------------------------------- | |
7e717196 | 452 | |
4ac29b33 | 453 | AR_FOR_TARGET := $(shell \ |
7e717196 JL |
454 | if [ -f $(objdir)/../binutils/ar ] ; then \ |
455 | echo $(objdir)/../binutils/ar ; \ | |
456 | else \ | |
4665e56c | 457 | if [ "$(host)" = "$(target)" ] ; then \ |
f6a874ac | 458 | echo $(AR); \ |
7e717196 | 459 | else \ |
455c8f48 | 460 | t='$(program_transform_name)'; echo ar | sed -e "$$t" ; \ |
7e717196 | 461 | fi; \ |
4ac29b33 | 462 | fi) |
5262d6b6 | 463 | AR_FLAGS_FOR_TARGET = |
7bde2862 GK |
464 | AR_CREATE_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) rc |
465 | AR_EXTRACT_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) x | |
ed0db39f | 466 | LIPO_FOR_TARGET = lipo |
9f18db39 | 467 | ORIGINAL_AS_FOR_TARGET = @ORIGINAL_AS_FOR_TARGET@ |
4ac29b33 | 468 | RANLIB_FOR_TARGET := $(shell \ |
7e717196 JL |
469 | if [ -f $(objdir)/../binutils/ranlib ] ; then \ |
470 | echo $(objdir)/../binutils/ranlib ; \ | |
471 | else \ | |
4665e56c | 472 | if [ "$(host)" = "$(target)" ] ; then \ |
6dd05d08 | 473 | echo $(RANLIB); \ |
7e717196 | 474 | else \ |
455c8f48 | 475 | t='$(program_transform_name)'; echo ranlib | sed -e "$$t" ; \ |
7e717196 | 476 | fi; \ |
4ac29b33 | 477 | fi) |
9f18db39 PB |
478 | ORIGINAL_LD_FOR_TARGET = @ORIGINAL_LD_FOR_TARGET@ |
479 | ORIGINAL_NM_FOR_TARGET = @ORIGINAL_NM_FOR_TARGET@ | |
480 | NM_FOR_TARGET = ./nm | |
ed0db39f | 481 | STRIP_FOR_TARGET := $(shell \ |
455c8f48 RW |
482 | if [ -f $(objdir)/../binutils/strip-new ] ; then \ |
483 | echo $(objdir)/../binutils/strip-new ; \ | |
ed0db39f GK |
484 | else \ |
485 | if [ "$(host)" = "$(target)" ] ; then \ | |
486 | echo strip; \ | |
487 | else \ | |
455c8f48 | 488 | t='$(program_transform_name)'; echo strip | sed -e "$$t" ; \ |
ed0db39f GK |
489 | fi; \ |
490 | fi) | |
7e717196 | 491 | |
73458fb7 NN |
492 | # -------- |
493 | # UNSORTED | |
494 | # -------- | |
495 | ||
4e872036 AS |
496 | # Where to find some libiberty headers. |
497 | HASHTAB_H = $(srcdir)/../include/hashtab.h | |
e980df8e | 498 | OBSTACK_H = $(srcdir)/../include/obstack.h |
5193cc6d | 499 | SPLAY_TREE_H= $(srcdir)/../include/splay-tree.h |
e980df8e | 500 | MD5_H = $(srcdir)/../include/md5.h |
ee666c25 | 501 | XREGEX_H = $(srcdir)/../include/xregex.h |
f9bf5a8e | 502 | FNMATCH_H = $(srcdir)/../include/fnmatch.h |
4e872036 | 503 | |
d7f09764 DN |
504 | # Linker plugin API headers |
505 | LINKER_PLUGIN_API_H = $(srcdir)/../include/plugin-api.h | |
d7f09764 | 506 | |
a078a589 | 507 | # Default native SYSTEM_HEADER_DIR, to be overridden by targets. |
08b2bad2 | 508 | NATIVE_SYSTEM_HEADER_DIR = @NATIVE_SYSTEM_HEADER_DIR@ |
512b62fb | 509 | # Default cross SYSTEM_HEADER_DIR, to be overridden by targets. |
4977bab6 | 510 | CROSS_SYSTEM_HEADER_DIR = @CROSS_SYSTEM_HEADER_DIR@ |
512b62fb | 511 | |
a078a589 | 512 | # autoconf sets SYSTEM_HEADER_DIR to one of the above. |
073a8998 | 513 | # Purge it of unnecessary internal relative paths |
be448346 BS |
514 | # to directories that might not exist yet. |
515 | # The sed idiom for this is to repeat the search-and-replace until it doesn't match, using :a ... ta. | |
70d0631e RW |
516 | # Use single quotes here to avoid nested double- and backquotes, this |
517 | # macro is also used in a double-quoted context. | |
518 | SYSTEM_HEADER_DIR = `echo @SYSTEM_HEADER_DIR@ | sed -e :a -e 's,[^/]*/\.\.\/,,' -e ta` | |
a078a589 | 519 | |
52c0e446 | 520 | # Control whether to run fixincludes. |
0df47f66 | 521 | STMP_FIXINC = @STMP_FIXINC@ |
ac1284f9 | 522 | |
40dc28fc ILT |
523 | # Test to see whether <limits.h> exists in the system header files. |
524 | LIMITS_H_TEST = [ -f $(SYSTEM_HEADER_DIR)/limits.h ] | |
525 | ||
4977bab6 ZW |
526 | # Directory for prefix to system directories, for |
527 | # each of $(system_prefix)/usr/include, $(system_prefix)/usr/lib, etc. | |
528 | TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@ | |
ce86ad58 | 529 | TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@ |
4977bab6 | 530 | |
2ed26f6b ZW |
531 | xmake_file=@xmake_file@ |
532 | tmake_file=@tmake_file@ | |
aca600aa AS |
533 | TM_ENDIAN_CONFIG=@TM_ENDIAN_CONFIG@ |
534 | TM_MULTILIB_CONFIG=@TM_MULTILIB_CONFIG@ | |
535 | TM_MULTILIB_EXCEPTIONS_CONFIG=@TM_MULTILIB_EXCEPTIONS_CONFIG@ | |
3c18ea24 RK |
536 | out_file=$(srcdir)/config/@out_file@ |
537 | out_object_file=@out_object_file@ | |
c49a6962 JM |
538 | common_out_file=$(srcdir)/common/config/@common_out_file@ |
539 | common_out_object_file=@common_out_object_file@ | |
8677664e | 540 | md_file=$(srcdir)/common.md $(srcdir)/config/@md_file@ |
4977bab6 | 541 | tm_file_list=@tm_file_list@ |
e22340b0 | 542 | tm_include_list=@tm_include_list@ |
d5355cb2 | 543 | tm_defines=@tm_defines@ |
11642c3a | 544 | tm_p_file_list=@tm_p_file_list@ |
e22340b0 | 545 | tm_p_include_list=@tm_p_include_list@ |
11642c3a | 546 | build_xm_file_list=@build_xm_file_list@ |
e22340b0 | 547 | build_xm_include_list=@build_xm_include_list@ |
11642c3a ZW |
548 | build_xm_defines=@build_xm_defines@ |
549 | host_xm_file_list=@host_xm_file_list@ | |
e22340b0 | 550 | host_xm_include_list=@host_xm_include_list@ |
11642c3a | 551 | host_xm_defines=@host_xm_defines@ |
e22340b0 ZW |
552 | xm_file_list=@xm_file_list@ |
553 | xm_include_list=@xm_include_list@ | |
3d9d2476 | 554 | xm_defines=@xm_defines@ |
d4a10d0a SB |
555 | lang_checks= |
556 | lang_checks_parallelized= | |
39dabefd | 557 | lang_opt_files=@lang_opt_files@ $(srcdir)/c-family/c.opt $(srcdir)/common.opt |
3c18ea24 | 558 | lang_specs_files=@lang_specs_files@ |
3103b7db | 559 | lang_tree_files=@lang_tree_files@ |
11642c3a | 560 | target_cpu_default=@target_cpu_default@ |
d8bb17c8 | 561 | OBJC_BOEHM_GC=@objc_boehm_gc@ |
0974c7d7 | 562 | extra_modes_file=@extra_modes_file@ |
75685792 | 563 | extra_opt_files=@extra_opt_files@ |
476d9098 | 564 | host_hook_obj=@out_host_hook_obj@ |
79d8453e | 565 | |
e0cdc09f MK |
566 | # Multiarch support |
567 | enable_multiarch = @enable_multiarch@ | |
d757eae9 | 568 | with_cpu = @with_cpu@ |
e0cdc09f MK |
569 | with_float = @with_float@ |
570 | ifeq ($(enable_multiarch),yes) | |
571 | if_multiarch = $(1) | |
e0cdc09f | 572 | else |
9eae3904 MK |
573 | ifeq ($(enable_multiarch),auto) |
574 | # SYSTEM_HEADER_DIR is makefile syntax, cannot be evaluated in configure.ac | |
575 | if_multiarch = $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib/*/crti.o),$(1)) | |
576 | else | |
577 | if_multiarch = | |
578 | endif | |
e0cdc09f MK |
579 | endif |
580 | ||
73458fb7 NN |
581 | # ------------------------ |
582 | # Installation directories | |
583 | # ------------------------ | |
584 | ||
79d8453e RS |
585 | # Common prefix for installation directories. |
586 | # NOTE: This directory must exist when you start installation. | |
3c18ea24 | 587 | prefix = @prefix@ |
c844ddda RS |
588 | # Directory in which to put localized header files. On the systems with |
589 | # gcc as the native cc, `local_prefix' may not be `prefix' which is | |
590 | # `/usr'. | |
0b2fbcb2 | 591 | # NOTE: local_prefix *should not* default from prefix. |
3c18ea24 | 592 | local_prefix = @local_prefix@ |
2e494f70 | 593 | # Directory in which to put host dependent programs and libraries |
3c18ea24 | 594 | exec_prefix = @exec_prefix@ |
79d8453e | 595 | # Directory in which to put the executable for the command `gcc' |
3c18ea24 | 596 | bindir = @bindir@ |
79d8453e | 597 | # Directory in which to put the directories used by the compiler. |
3c18ea24 | 598 | libdir = @libdir@ |
a8ee6e2d GK |
599 | # Directory in which GCC puts its executables. |
600 | libexecdir = @libexecdir@ | |
73458fb7 NN |
601 | |
602 | # -------- | |
603 | # UNSORTED | |
604 | # -------- | |
605 | ||
a8ee6e2d | 606 | # Directory in which the compiler finds libraries etc. |
85c64bbe | 607 | libsubdir = $(libdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix) |
a8ee6e2d | 608 | # Directory in which the compiler finds executables |
85c64bbe | 609 | libexecsubdir = $(libexecdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix) |
f142b5bc RG |
610 | # Directory in which all plugin resources are installed |
611 | plugin_resourcesdir = $(libsubdir)/plugin | |
612 | # Directory in which plugin headers are installed | |
613 | plugin_includedir = $(plugin_resourcesdir)/include | |
614 | # Directory in which plugin specific executables are installed | |
615 | plugin_bindir = $(libexecsubdir)/plugin | |
91c7bd9b | 616 | # Used to produce a relative $(gcc_tooldir) in gcc.o |
85c64bbe BS |
617 | ifeq ($(enable_as_accelerator),yes) |
618 | unlibsubdir = ../../../../.. | |
619 | else | |
1f72bfca | 620 | unlibsubdir = ../../.. |
85c64bbe | 621 | endif |
15c723f3 RS |
622 | # $(prefix), expressed as a path relative to $(libsubdir). |
623 | # | |
624 | # An explanation of the sed strings: | |
625 | # -e 's|^$(prefix)||' matches and eliminates 'prefix' from 'exec_prefix' | |
626 | # -e 's|/$$||' match a trailing forward slash and eliminates it | |
627 | # -e 's|^[^/]|/|' forces the string to start with a forward slash (*) | |
628 | # -e 's|/[^/]*|../|g' replaces each occurrence of /<directory> with ../ | |
629 | # | |
630 | # (*) Note this pattern overwrites the first character of the string | |
631 | # with a forward slash if one is not already present. This is not a | |
632 | # problem because the exact names of the sub-directories concerned is | |
633 | # unimportant, just the number of them matters. | |
634 | # | |
635 | # The practical upshot of these patterns is like this: | |
636 | # | |
637 | # prefix exec_prefix result | |
638 | # ------ ----------- ------ | |
639 | # /foo /foo/bar ../ | |
640 | # /foo/ /foo/bar ../ | |
641 | # /foo /foo/bar/ ../ | |
642 | # /foo/ /foo/bar/ ../ | |
643 | # /foo /foo/bar/ugg ../../ | |
644 | libsubdir_to_prefix := \ | |
645 | $(unlibsubdir)/$(shell echo "$(libdir)" | \ | |
646 | sed -e 's|^$(prefix)||' -e 's|/$$||' -e 's|^[^/]|/|' \ | |
647 | -e 's|/[^/]*|../|g') | |
648 | # $(exec_prefix), expressed as a path relative to $(prefix). | |
649 | prefix_to_exec_prefix := \ | |
650 | $(shell echo "$(exec_prefix)" | \ | |
651 | sed -e 's|^$(prefix)||' -e 's|^/||' -e '/./s|$$|/|') | |
d062c304 | 652 | # Directory in which to find other cross-compilation tools and headers. |
4c112cda | 653 | dollar = @dollar@ |
d062c304 JL |
654 | # Used in install-cross. |
655 | gcc_tooldir = @gcc_tooldir@ | |
f098ead2 | 656 | # Since gcc_tooldir does not exist at build-time, use -B$(build_tooldir)/bin/ |
caa55b1e | 657 | build_tooldir = $(exec_prefix)/$(target_noncanonical) |
e2187d3b BK |
658 | # Directory in which the compiler finds target-independent g++ includes. |
659 | gcc_gxx_include_dir = @gcc_gxx_include_dir@ | |
17719d09 | 660 | gcc_gxx_include_dir_add_sysroot = @gcc_gxx_include_dir_add_sysroot@ |
49ba557e | 661 | # Directory to search for site-specific includes. |
793e9558 PB |
662 | local_includedir = $(local_prefix)/include |
663 | includedir = $(prefix)/include | |
0b2fbcb2 | 664 | # where the info files go |
3c18ea24 | 665 | infodir = @infodir@ |
587a4ba6 L |
666 | # Where cpp should go besides $prefix/bin if necessary |
667 | cpp_install_dir = @cpp_install_dir@ | |
ab87f8c8 | 668 | # where the locale files go |
191bf464 | 669 | datadir = @datadir@ |
ab87f8c8 | 670 | localedir = $(datadir)/locale |
79d8453e | 671 | # Extension (if any) to put in installed man-page filename. |
77bd67cb JM |
672 | man1ext = .1 |
673 | man7ext = .7 | |
173712fb | 674 | objext = .o |
6e26218f ILT |
675 | exeext = @host_exeext@ |
676 | build_exeext = @build_exeext@ | |
173712fb | 677 | |
79d8453e | 678 | # Directory in which to put man pages. |
a76b6b40 MH |
679 | mandir = @mandir@ |
680 | man1dir = $(mandir)/man1 | |
77bd67cb | 681 | man7dir = $(mandir)/man7 |
62c13b81 RS |
682 | # Dir for temp files. |
683 | tmpdir = /tmp | |
79d8453e | 684 | |
22482f74 MS |
685 | datarootdir = @datarootdir@ |
686 | docdir = @docdir@ | |
9288b845 | 687 | # Directory in which to build HTML |
22482f74 | 688 | build_htmldir = $(objdir)/HTML/gcc-$(version) |
9d65c5cb | 689 | # Directory in which to put HTML |
22482f74 | 690 | htmldir = @htmldir@ |
9d65c5cb | 691 | |
ab87f8c8 JL |
692 | # Whether we were configured with NLS. |
693 | USE_NLS = @USE_NLS@ | |
694 | ||
695 | # Internationalization library. | |
56694dd9 ZW |
696 | LIBINTL = @LIBINTL@ |
697 | LIBINTL_DEP = @LIBINTL_DEP@ | |
ab87f8c8 | 698 | |
62c62a4f RO |
699 | # Character encoding conversion library. |
700 | LIBICONV = @LIBICONV@ | |
56694dd9 | 701 | LIBICONV_DEP = @LIBICONV_DEP@ |
62c62a4f | 702 | |
0a25f1f5 RH |
703 | # If a supplementary library is being used for the GC. |
704 | GGC_LIB= | |
705 | ||
160633c6 MM |
706 | # "true" if the target C library headers are unavailable; "false" |
707 | # otherwise. | |
708 | inhibit_libc = @inhibit_libc@ | |
709 | ifeq ($(inhibit_libc),true) | |
710 | INHIBIT_LIBC_CFLAGS = -Dinhibit_libc | |
711 | endif | |
712 | ||
79d8453e | 713 | # List of extra executables that should be compiled for this target machine |
d82c57a8 | 714 | # that are used when linking. |
79d8453e | 715 | # The rules for compiling them should be in the t-* file for the machine. |
3c18ea24 | 716 | EXTRA_PROGRAMS = @extra_programs@ |
2e494f70 | 717 | |
2e494f70 RS |
718 | # List of extra object files that should be compiled and linked with |
719 | # compiler proper (cc1, cc1obj, cc1plus). | |
3c18ea24 | 720 | EXTRA_OBJS = @extra_objs@ |
2e494f70 | 721 | |
43554690 RK |
722 | # List of extra object files that should be compiled and linked with |
723 | # the gcc driver. | |
30500d84 | 724 | EXTRA_GCC_OBJS =@extra_gcc_objs@ |
43554690 | 725 | |
e3b3fa45 RO |
726 | # List of extra libraries that should be linked with the gcc driver. |
727 | EXTRA_GCC_LIBS = @EXTRA_GCC_LIBS@ | |
728 | ||
f780d21b | 729 | # List of additional header files to install. |
3c18ea24 | 730 | EXTRA_HEADERS =@extra_headers_list@ |
f780d21b | 731 | |
207bf79d JM |
732 | # How to handle <stdint.h>. |
733 | USE_GCC_STDINT = @use_gcc_stdint@ | |
734 | ||
c38f02df ILT |
735 | # The configure script will set this to collect2$(exeext), except on a |
736 | # (non-Unix) host which can not build collect2, for which it will be | |
737 | # set to empty. | |
738 | COLLECT2 = @collect2@ | |
47547081 | 739 | |
79d8453e | 740 | # Program to convert libraries. |
4c457b6b | 741 | LIBCONVERT = |
79d8453e RS |
742 | |
743 | # Control whether header files are installed. | |
e34a3d31 | 744 | INSTALL_HEADERS=install-headers install-mkheaders |
79d8453e | 745 | |
09fa0705 ZW |
746 | # Control whether Info documentation is built and installed. |
747 | BUILD_INFO = @BUILD_INFO@ | |
09fa0705 | 748 | |
fd939e46 JM |
749 | # Control whether manpages generated by texi2pod.pl can be rebuilt. |
750 | GENERATED_MANPAGES = @GENERATED_MANPAGES@ | |
751 | ||
66d7ffbf | 752 | # Additional directories of header files to run fixincludes on. |
4ab08223 RS |
753 | # These should be directories searched automatically by default |
754 | # just as /usr/include is. | |
4c457b6b | 755 | # *Do not* use this for directories that happen to contain |
4ab08223 | 756 | # header files, but are not searched automatically by default. |
66d7ffbf RS |
757 | # On most systems, this is empty. |
758 | OTHER_FIXINCLUDES_DIRS= | |
759 | ||
7c27f801 | 760 | # A list of all the language-specific executables. |
d4a10d0a | 761 | COMPILERS = @all_compilers@ |
7c27f801 | 762 | |
acbbf3d9 | 763 | # List of things which should already be built whenever we try to use xgcc |
79d8453e | 764 | # to compile anything (without linking). |
d4a10d0a | 765 | GCC_PASSES=xgcc$(exeext) specs |
79d8453e | 766 | |
79d8453e RS |
767 | # Directory to link to, when using the target `maketest'. |
768 | DIR = ../gcc | |
769 | ||
a078a589 | 770 | # Native compiler for the build machine and its switches. |
eaf9f3b2 | 771 | CC_FOR_BUILD = @CC_FOR_BUILD@ |
bdd5dc28 | 772 | CXX_FOR_BUILD = @CXX_FOR_BUILD@ |
5148d2e3 L |
773 | NO_PIE_CFLAGS_FOR_BUILD = @NO_PIE_CFLAGS_FOR_BUILD@ |
774 | NO_PIE_FLAG_FOR_BUILD = @NO_PIE_FLAG_FOR_BUILD@ | |
4977bab6 | 775 | BUILD_CFLAGS= @BUILD_CFLAGS@ -DGENERATOR_FILE |
bdd5dc28 | 776 | BUILD_CXXFLAGS = @BUILD_CXXFLAGS@ -DGENERATOR_FILE |
5148d2e3 L |
777 | BUILD_NO_PIE_CFLAGS = @BUILD_NO_PIE_CFLAGS@ |
778 | BUILD_CFLAGS += $(BUILD_NO_PIE_CFLAGS) | |
779 | BUILD_CXXFLAGS += $(BUILD_NO_PIE_CFLAGS) | |
a078a589 | 780 | |
7980bfb8 | 781 | # Native compiler that we use. This may be C++ some day. |
bdd5dc28 DN |
782 | COMPILER_FOR_BUILD = $(CXX_FOR_BUILD) |
783 | BUILD_COMPILERFLAGS = $(BUILD_CXXFLAGS) | |
7980bfb8 | 784 | |
c607156f | 785 | # Native linker that we use. |
bdd5dc28 DN |
786 | LINKER_FOR_BUILD = $(CXX_FOR_BUILD) |
787 | BUILD_LINKERFLAGS = $(BUILD_CXXFLAGS) | |
c607156f | 788 | |
a078a589 | 789 | # Native linker and preprocessor flags. For x-fragment overrides. |
f8c33439 | 790 | BUILD_LDFLAGS=@BUILD_LDFLAGS@ |
5148d2e3 L |
791 | BUILD_NO_PIE_FLAG = @BUILD_NO_PIE_FLAG@ |
792 | BUILD_LDFLAGS += $(BUILD_NO_PIE_FLAG) | |
2ceb362d AM |
793 | BUILD_CPPFLAGS= -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \ |
794 | -I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS) | |
79d8453e | 795 | |
338023d4 | 796 | # Actual name to use when installing a native compiler. |
e165d61b KC |
797 | GCC_INSTALL_NAME := $(shell echo gcc|sed '$(program_transform_name)') |
798 | GCC_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo gcc|sed '$(program_transform_name)') | |
799 | CPP_INSTALL_NAME := $(shell echo cpp|sed '$(program_transform_name)') | |
e165d61b | 800 | GCOV_INSTALL_NAME := $(shell echo gcov|sed '$(program_transform_name)') |
c77556a5 | 801 | GCOV_TOOL_INSTALL_NAME := $(shell echo gcov-tool|sed '$(program_transform_name)') |
338023d4 | 802 | |
e933cbe0 JL |
803 | # Setup the testing framework, if you have one |
804 | EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \ | |
805 | echo $${rootme}/../expect/expect ; \ | |
806 | else echo expect ; fi` | |
807 | ||
808 | RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \ | |
809 | echo $${srcdir}/../dejagnu/runtest ; \ | |
810 | else echo runtest; fi` | |
811 | RUNTESTFLAGS = | |
812 | ||
3bd6d4c4 AO |
813 | # This should name the specs file that we're going to install. Target |
814 | # Makefiles may override it and name another file to be generated from | |
815 | # the built-in specs and installed as the default spec, as long as | |
816 | # they also introduce a rule to generate a file name specs, to be used | |
817 | # at build time. | |
818 | SPECS = specs | |
819 | ||
fd438373 MM |
820 | # Extra include files that are defined by HeaderInclude directives in |
821 | # the .opt files | |
822 | OPTIONS_H_EXTRA = | |
823 | ||
824 | # Extra include files that are defined by SourceInclude directives in | |
825 | # the .opt files | |
6f4185d7 | 826 | OPTIONS_C_EXTRA = $(PRETTY_PRINT_H) |
fd438373 MM |
827 | |
828 | @option_includes@ | |
829 | ||
79d8453e RS |
830 | # End of variables for you to override. |
831 | ||
4977bab6 ZW |
832 | # GTM_H lists the config files that the generator files depend on, |
833 | # while TM_H lists the ones ordinary gcc files depend on, which | |
834 | # includes several files generated by those generators. | |
e980df8e | 835 | BCONFIG_H = bconfig.h $(build_xm_file_list) |
4977bab6 | 836 | CONFIG_H = config.h $(host_xm_file_list) |
1b0c37d7 | 837 | TCONFIG_H = tconfig.h $(xm_file_list) |
4977bab6 | 838 | TM_P_H = tm_p.h $(tm_p_file_list) |
c513ce77 | 839 | GTM_H = tm.h $(tm_file_list) insn-constants.h |
852b75ed | 840 | TM_H = $(GTM_H) insn-flags.h $(OPTIONS_H) |
4977bab6 | 841 | |
a1286ef5 | 842 | # Variables for version information. |
f08dd1f8 ZW |
843 | BASEVER := $(srcdir)/BASE-VER # 4.x.y |
844 | DEVPHASE := $(srcdir)/DEV-PHASE # experimental, prerelease, "" | |
845 | DATESTAMP := $(srcdir)/DATESTAMP # YYYYMMDD or empty | |
db5b4110 | 846 | REVISION := $(srcdir)/REVISION # [BRANCH revision XXXXXX] |
a1286ef5 | 847 | |
f08dd1f8 ZW |
848 | BASEVER_c := $(shell cat $(BASEVER)) |
849 | DEVPHASE_c := $(shell cat $(DEVPHASE)) | |
850 | DATESTAMP_c := $(shell cat $(DATESTAMP)) | |
a1286ef5 | 851 | |
db5b4110 L |
852 | ifeq (,$(wildcard $(REVISION))) |
853 | REVISION_c := | |
f8ed6dc5 | 854 | REVISION := |
db5b4110 L |
855 | else |
856 | REVISION_c := $(shell cat $(REVISION)) | |
857 | endif | |
858 | ||
f08dd1f8 | 859 | version := $(BASEVER_c) |
a1286ef5 | 860 | |
a6c014db JJ |
861 | PATCHLEVEL_c := \ |
862 | $(shell echo $(BASEVER_c) | sed -e 's/^[0-9]*\.[0-9]*\.\([0-9]*\)$$/\1/') | |
863 | ||
864 | ||
a1286ef5 ZW |
865 | # For use in version.c - double quoted strings, with appropriate |
866 | # surrounding punctuation and spaces, and with the datestamp and | |
867 | # development phase collapsed to the empty string in release mode | |
a6c014db JJ |
868 | # (i.e. if DEVPHASE_c is empty and PATCHLEVEL_c is 0). The space |
869 | # immediately after the comma in the $(if ...) constructs is | |
870 | # significant - do not remove it. | |
f08dd1f8 ZW |
871 | BASEVER_s := "\"$(BASEVER_c)\"" |
872 | DEVPHASE_s := "\"$(if $(DEVPHASE_c), ($(DEVPHASE_c)))\"" | |
a6c014db JJ |
873 | DATESTAMP_s := \ |
874 | "\"$(if $(DEVPHASE_c)$(filter-out 0,$(PATCHLEVEL_c)), $(DATESTAMP_c))\"" | |
2f41c1d6 PB |
875 | PKGVERSION_s:= "\"@PKGVERSION@\"" |
876 | BUGURL_s := "\"@REPORT_BUGS_TO@\"" | |
877 | ||
878 | PKGVERSION := @PKGVERSION@ | |
879 | BUGURL_TEXI := @REPORT_BUGS_TEXI@ | |
a1286ef5 | 880 | |
db5b4110 | 881 | ifdef REVISION_c |
a6c014db JJ |
882 | REVISION_s := \ |
883 | "\"$(if $(DEVPHASE_c)$(filter-out 0,$(PATCHLEVEL_c)), $(REVISION_c))\"" | |
db5b4110 | 884 | else |
cf8aba7f | 885 | REVISION_s := "\"\"" |
db5b4110 L |
886 | endif |
887 | ||
e980df8e | 888 | # Shorthand variables for dependency lists. |
7b3b6ae4 | 889 | DUMPFILE_H = $(srcdir)/../libcpp/include/line-map.h dumpfile.h |
9771b263 | 890 | VEC_H = vec.h statistics.h $(GGC_H) |
6bac43d7 | 891 | HASH_TABLE_H = $(HASHTAB_H) hash-table.h $(GGC_H) |
9771b263 | 892 | EXCEPT_H = except.h $(HASHTAB_H) |
4bccb39e | 893 | TARGET_DEF = target.def target-hooks-macros.h target-insns.def |
acce4e77 | 894 | C_TARGET_DEF = c-family/c-target.def target-hooks-macros.h |
c49a6962 | 895 | COMMON_TARGET_DEF = common/common-target.def target-hooks-macros.h |
f5273574 | 896 | TARGET_H = $(TM_H) target.h $(TARGET_DEF) insn-modes.h insn-codes.h |
acce4e77 | 897 | C_TARGET_H = c-family/c-target.h $(C_TARGET_DEF) |
677f3fa8 | 898 | COMMON_TARGET_H = common/common-target.h $(INPUT_H) $(COMMON_TARGET_DEF) |
e980df8e TT |
899 | MACHMODE_H = machmode.h mode-classes.def insn-modes.h |
900 | HOOKS_H = hooks.h $(MACHMODE_H) | |
901 | HOSTHOOKS_DEF_H = hosthooks-def.h $(HOOKS_H) | |
902 | LANGHOOKS_DEF_H = langhooks-def.h $(HOOKS_H) | |
38f8b050 | 903 | TARGET_DEF_H = target-def.h target-hooks-def.h $(HOOKS_H) targhooks.h |
acce4e77 | 904 | C_TARGET_DEF_H = c-family/c-target-def.h c-family/c-target-hooks-def.h \ |
677f3fa8 | 905 | $(TREE_H) $(C_COMMON_H) $(HOOKS_H) common/common-targhooks.h |
79bdca32 SB |
906 | RTL_BASE_H = coretypes.h rtl.h rtl.def $(MACHMODE_H) reg-notes.def \ |
907 | insn-notes.def $(INPUT_H) $(REAL_H) statistics.h $(VEC_H) \ | |
908 | $(FIXED_VALUE_H) alias.h $(HASHTAB_H) | |
e63ea00c | 909 | FIXED_VALUE_H = fixed-value.h $(MACHMODE_H) double-int.h |
9771b263 | 910 | RTL_H = $(RTL_BASE_H) $(FLAGS_H) genrtl.h |
9f418533 | 911 | READ_MD_H = $(OBSTACK_H) $(HASHTAB_H) read-md.h |
d78182cc | 912 | PARAMS_H = params.h params-enum.h params.def |
0a35513e | 913 | BUILTINS_DEF = builtins.def sync-builtins.def omp-builtins.def \ |
939b37da | 914 | gtm-builtins.def sanitizer.def cilkplus.def cilk-builtins.def |
25583c4f RS |
915 | INTERNAL_FN_DEF = internal-fn.def |
916 | INTERNAL_FN_H = internal-fn.h $(INTERNAL_FN_DEF) | |
5e351e96 DN |
917 | TREE_CORE_H = tree-core.h coretypes.h all-tree.def tree.def \ |
918 | c-family/c-common.def $(lang_tree_files) $(MACHMODE_H) \ | |
919 | $(BUILTINS_DEF) $(INPUT_H) statistics.h \ | |
920 | $(VEC_H) treestruct.def $(HASHTAB_H) \ | |
9771b263 | 921 | double-int.h alias.h $(SYMTAB_H) $(FLAGS_H) \ |
39dabefd | 922 | $(REAL_H) $(FIXED_VALUE_H) |
5e351e96 | 923 | TREE_H = tree.h $(TREE_CORE_H) tree-check.h |
7a8cba34 | 924 | REGSET_H = regset.h $(BITMAP_H) hard-reg-set.h |
6889a650 FW |
925 | BASIC_BLOCK_H = basic-block.h $(PREDICT_H) $(VEC_H) $(FUNCTION_H) \ |
926 | cfg-flags.def cfghooks.h | |
9f25a338 | 927 | GIMPLE_H = gimple.h gimple.def gsstruct.def $(VEC_H) \ |
9771b263 | 928 | $(GGC_H) $(BASIC_BLOCK_H) $(TREE_H) tree-ssa-operands.h \ |
daa6e488 | 929 | tree-ssa-alias.h $(INTERNAL_FN_H) $(HASH_TABLE_H) is-a.h |
c77556a5 | 930 | GCOV_IO_H = gcov-io.h gcov-iov.h auto-host.h gcov-counter.def |
e980df8e | 931 | RECOG_H = recog.h |
e980df8e | 932 | EMIT_RTL_H = emit-rtl.h |
79bdca32 | 933 | FLAGS_H = flags.h flag-types.h $(OPTIONS_H) |
fd438373 | 934 | OPTIONS_H = options.h flag-types.h $(OPTIONS_H_EXTRA) |
9771b263 DN |
935 | FUNCTION_H = function.h $(HASHTAB_H) $(TM_H) hard-reg-set.h \ |
936 | $(VEC_H) $(INPUT_H) $(MACHMODE_H) | |
e980df8e | 937 | EXPR_H = expr.h insn-config.h $(FUNCTION_H) $(RTL_H) $(FLAGS_H) $(TREE_H) $(MACHMODE_H) $(EMIT_RTL_H) |
cd1440b1 | 938 | OPTABS_H = optabs.h insn-codes.h insn-opinit.h |
539bac37 | 939 | REGS_H = regs.h $(MACHMODE_H) hard-reg-set.h |
9771b263 | 940 | CFGLOOP_H = cfgloop.h $(BASIC_BLOCK_H) double-int.h \ |
7a8cba34 | 941 | $(BITMAP_H) sbitmap.h |
e980df8e | 942 | IPA_UTILS_H = ipa-utils.h $(TREE_H) $(CGRAPH_H) |
e63ea00c | 943 | IPA_REFERENCE_H = ipa-reference.h $(BITMAP_H) $(TREE_H) |
3e097227 | 944 | CGRAPH_H = cgraph.h $(VEC_H) $(TREE_H) $(BASIC_BLOCK_H) $(FUNCTION_H) \ |
d122681a | 945 | cif-code.def ipa-ref.h $(LINKER_PLUGIN_API_H) is-a.h |
7a8cba34 SB |
946 | DF_H = df.h $(BITMAP_H) $(REGSET_H) sbitmap.h $(BASIC_BLOCK_H) \ |
947 | alloc-pool.h $(TIMEVAR_H) | |
e980df8e | 948 | RESOURCE_H = resource.h hard-reg-set.h $(DF_H) |
6afbc885 | 949 | GCC_H = gcc.h version.h $(DIAGNOSTIC_CORE_H) |
e63ea00c | 950 | GGC_H = ggc.h gtype-desc.h statistics.h |
e980df8e | 951 | TIMEVAR_H = timevar.h timevar.def |
88a00ef7 | 952 | INSN_ATTR_H = insn-attr.h insn-attr-common.h $(INSN_ADDR_H) |
9771b263 | 953 | INSN_ADDR_H = $(srcdir)/insn-addr.h |
532aafad | 954 | C_COMMON_H = c-family/c-common.h c-family/c-common.def $(TREE_H) \ |
39dabefd SB |
955 | $(SPLAY_TREE_H) $(CPPLIB_H) $(GGC_H) $(DIAGNOSTIC_CORE_H) |
956 | C_PRAGMA_H = c-family/c-pragma.h $(CPPLIB_H) | |
0a6c2227 | 957 | C_TREE_H = c/c-tree.h $(C_COMMON_H) $(DIAGNOSTIC_H) |
e63ea00c RW |
958 | SYSTEM_H = system.h hwint.h $(srcdir)/../include/libiberty.h \ |
959 | $(srcdir)/../include/safe-ctype.h $(srcdir)/../include/filenames.h | |
e980df8e | 960 | PREDICT_H = predict.h predict.def |
d8044160 GK |
961 | CPPLIB_H = $(srcdir)/../libcpp/include/line-map.h \ |
962 | $(srcdir)/../libcpp/include/cpplib.h | |
e63ea00c | 963 | INPUT_H = $(srcdir)/../libcpp/include/line-map.h input.h |
dc357798 | 964 | OPTS_H = $(INPUT_H) $(VEC_H) opts.h $(OBSTACK_H) |
e63ea00c | 965 | SYMTAB_H = $(srcdir)/../libcpp/include/symtab.h $(OBSTACK_H) |
d8044160 | 966 | CPP_ID_DATA_H = $(CPPLIB_H) $(srcdir)/../libcpp/include/cpp-id-data.h |
e63ea00c | 967 | CPP_INTERNAL_H = $(srcdir)/../libcpp/internal.h $(CPP_ID_DATA_H) |
7b3b6ae4 LC |
968 | TREE_DUMP_H = tree-dump.h $(SPLAY_TREE_H) $(DUMPFILE_H) |
969 | TREE_PASS_H = tree-pass.h $(TIMEVAR_H) $(DUMPFILE_H) | |
3fadf78a | 970 | TREE_SSA_H = tree-ssa.h tree-ssa-operands.h \ |
7a8cba34 | 971 | $(BITMAP_H) sbitmap.h $(BASIC_BLOCK_H) $(GIMPLE_H) \ |
5006671f RG |
972 | $(HASHTAB_H) $(CGRAPH_H) $(IPA_REFERENCE_H) \ |
973 | tree-ssa-alias.h | |
b355f52e | 974 | PRETTY_PRINT_H = pretty-print.h $(INPUT_H) $(OBSTACK_H) wide-int-print.h |
ee666c25 SB |
975 | TREE_PRETTY_PRINT_H = tree-pretty-print.h $(PRETTY_PRINT_H) |
976 | GIMPLE_PRETTY_PRINT_H = gimple-pretty-print.h $(TREE_PRETTY_PRINT_H) | |
7c475d11 | 977 | DIAGNOSTIC_CORE_H = diagnostic-core.h $(INPUT_H) bversion.h diagnostic.def |
1da2ed5f | 978 | DIAGNOSTIC_H = diagnostic.h $(DIAGNOSTIC_CORE_H) $(PRETTY_PRINT_H) |
39dabefd SB |
979 | C_PRETTY_PRINT_H = c-family/c-pretty-print.h $(PRETTY_PRINT_H) \ |
980 | $(C_COMMON_H) $(TREE_H) | |
9771b263 | 981 | TREE_INLINE_H = tree-inline.h |
e980df8e | 982 | REAL_H = real.h $(MACHMODE_H) |
d7f09764 | 983 | LTO_STREAMER_H = lto-streamer.h $(LINKER_PLUGIN_API_H) $(TARGET_H) \ |
4a8fb1a1 | 984 | $(CGRAPH_H) $(VEC_H) $(HASH_TABLE_H) $(TREE_H) $(GIMPLE_H) \ |
9f25a338 | 985 | $(GCOV_IO_H) $(DIAGNOSTIC_H) alloc-pool.h |
310bc633 | 986 | IPA_PROP_H = ipa-prop.h $(TREE_H) $(VEC_H) $(CGRAPH_H) $(GIMPLE_H) alloc-pool.h |
e63ea00c | 987 | BITMAP_H = bitmap.h $(HASHTAB_H) statistics.h |
ee666c25 SB |
988 | GCC_PLUGIN_H = gcc-plugin.h highlev-plugin-common.h plugin.def \ |
989 | $(CONFIG_H) $(SYSTEM_H) $(HASHTAB_H) | |
3e17e31d | 990 | PLUGIN_H = plugin.h $(GCC_PLUGIN_H) |
0c463e16 | 991 | PLUGIN_VERSION_H = plugin-version.h configargs.h |
8c5005ce | 992 | CONTEXT_H = context.h |
886456e2 | 993 | GENSUPPORT_H = gensupport.h read-md.h optabs.def |
c4df8f8c | 994 | |
544eb21e | 995 | #\f |
79d8453e RS |
996 | # Now figure out from those variables how to compile and link. |
997 | ||
a078a589 ZW |
998 | # IN_GCC distinguishes between code compiled into GCC itself and other |
999 | # programs built during a bootstrap. | |
2989d30c GK |
1000 | # autoconf inserts -DCROSS_DIRECTORY_STRUCTURE if we are building a |
1001 | # cross compiler which does not use the native headers and libraries. | |
459260ec | 1002 | INTERNAL_CFLAGS = -DIN_GCC $(PICFLAG) @CROSS@ |
79d8453e | 1003 | |
83599948 | 1004 | # This is the variable actually used when we compile. If you change this, |
a6a5e4c9 | 1005 | # you probably want to update BUILD_CFLAGS in configure.ac |
7a3b4887 | 1006 | ALL_CFLAGS = $(T_CFLAGS) $(CFLAGS-$@) \ |
da0f6381 | 1007 | $(CFLAGS) $(INTERNAL_CFLAGS) $(COVERAGE_FLAGS) $(WARN_CFLAGS) @DEFS@ |
79d8453e | 1008 | |
00020c16 | 1009 | # The C++ version. |
295409e1 | 1010 | ALL_CXXFLAGS = $(T_CFLAGS) $(CFLAGS-$@) $(CXXFLAGS) $(INTERNAL_CFLAGS) \ |
4c0cca18 UW |
1011 | $(COVERAGE_FLAGS) $(ALIASING_FLAGS) $(NOEXCEPTION_FLAGS) \ |
1012 | $(WARN_CXXFLAGS) @DEFS@ | |
00020c16 | 1013 | |
3a6ebcdc PB |
1014 | # Likewise. Put INCLUDES at the beginning: this way, if some autoconf macro |
1015 | # puts -I options in CPPFLAGS, our include files in the srcdir will always | |
1016 | # win against random include files in /usr/include. | |
da0f6381 | 1017 | ALL_CPPFLAGS = $(INCLUDES) $(CPPFLAGS) |
79d8453e | 1018 | |
7980bfb8 | 1019 | # This is the variable to use when using $(COMPILER). |
00020c16 | 1020 | ALL_COMPILERFLAGS = $(ALL_CXXFLAGS) |
7980bfb8 | 1021 | |
c607156f | 1022 | # This is the variable to use when using $(LINKER). |
00020c16 | 1023 | ALL_LINKERFLAGS = $(ALL_CXXFLAGS) |
c607156f | 1024 | |
71b5d516 | 1025 | # Build and host support libraries. |
459260ec DM |
1026 | |
1027 | # Use the "pic" build of libiberty if --enable-host-shared. | |
1028 | ifeq ($(enable_host_shared),yes) | |
1029 | LIBIBERTY = ../libiberty/pic/libiberty.a | |
1030 | BUILD_LIBIBERTY = $(build_libobjdir)/libiberty/pic/libiberty.a | |
1031 | else | |
06f0b04c | 1032 | LIBIBERTY = ../libiberty/libiberty.a |
57255173 | 1033 | BUILD_LIBIBERTY = $(build_libobjdir)/libiberty/libiberty.a |
459260ec | 1034 | endif |
79d8453e | 1035 | |
935bfb44 | 1036 | # Dependencies on the intl and portability libraries. |
2691e6d7 | 1037 | LIBDEPS= libcommon.a $(CPPLIB) $(LIBIBERTY) $(LIBINTL_DEP) $(LIBICONV_DEP) \ |
d83697f4 | 1038 | $(LIBDECNUMBER) $(LIBBACKTRACE) |
79d8453e RS |
1039 | |
1040 | # Likewise, for use in the tools that must run on this machine | |
1041 | # even if we are cross-building GCC. | |
4977bab6 | 1042 | BUILD_LIBDEPS= $(BUILD_LIBIBERTY) |
79d8453e RS |
1043 | |
1044 | # How to link with both our special library facilities | |
1045 | # and the system's installed libraries. | |
d83697f4 ILT |
1046 | LIBS = @LIBS@ libcommon.a $(CPPLIB) $(LIBINTL) $(LIBICONV) $(LIBBACKTRACE) \ |
1047 | $(LIBIBERTY) $(LIBDECNUMBER) $(HOST_LIBS) | |
d348be26 | 1048 | BACKENDLIBS = $(ISLLIBS) $(GMPLIBS) $(PLUGINLIBS) $(HOST_LIBS) \ |
181e5ea4 | 1049 | $(ZLIB) |
7d600178 RO |
1050 | # Any system libraries needed just for GNAT. |
1051 | SYSLIBS = @GNAT_LIBEXC@ | |
1052 | ||
96ee6e08 | 1053 | # Used from ada/gcc-interface/Make-lang.in |
3d4e720a ST |
1054 | GNATBIND = @GNATBIND@ |
1055 | GNATMAKE = @GNATMAKE@ | |
1056 | ||
62c9aa5f ZW |
1057 | # Libs needed (at present) just for jcf-dump. |
1058 | LDEXP_LIB = @LDEXP_LIB@ | |
1059 | ||
79d8453e RS |
1060 | # Likewise, for use in the tools that must run on this machine |
1061 | # even if we are cross-building GCC. | |
4977bab6 | 1062 | BUILD_LIBS = $(BUILD_LIBIBERTY) |
79d8453e | 1063 | |
9b68b6ea | 1064 | BUILD_RTL = build/rtl.o build/read-rtl.o build/ggc-none.o \ |
10692477 | 1065 | build/vec.o build/min-insn-modes.o build/gensupport.o \ |
2d44c7de | 1066 | build/print-rtl.o build/hash-table.o |
9b68b6ea | 1067 | BUILD_MD = build/read-md.o |
3b620440 | 1068 | BUILD_ERRORS = build/errors.o |
79d8453e RS |
1069 | |
1070 | # Specify the directories to be searched for header files. | |
1071 | # Both . and srcdir are used, in that order, | |
eaf4e618 | 1072 | # so that *config.h will be found in the compilation |
79d8453e | 1073 | # subdirectory rather than in the source directory. |
b8dad04b ZW |
1074 | # -I$(@D) and -I$(srcdir)/$(@D) cause the subdirectory of the file |
1075 | # currently being compiled, in both source trees, to be examined as well. | |
6eb95e99 | 1076 | # libintl.h will be found in ../intl if we are using the included libintl. |
b8dad04b | 1077 | INCLUDES = -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \ |
6de9cd9a | 1078 | -I$(srcdir)/../include @INCINTL@ \ |
d83697f4 | 1079 | $(CPPINC) $(GMPINC) $(DECNUMINC) $(BACKTRACEINC) \ |
d348be26 | 1080 | $(ISLINC) |
79d8453e | 1081 | |
043378c3 | 1082 | COMPILE.base = $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) -o $@ |
54c09437 | 1083 | ifeq ($(CXXDEPMODE),depmode=gcc3) |
043378c3 TT |
1084 | # Note a subtlety here: we use $(@D) for the directory part, to make |
1085 | # things like the go/%.o rule work properly; but we use $(*F) for the | |
1086 | # file part, as we just want the file part of the stem, not the entire | |
1087 | # file name. | |
1088 | COMPILE = $(COMPILE.base) -MT $@ -MMD -MP -MF $(@D)/$(DEPDIR)/$(*F).TPo | |
1089 | POSTCOMPILE = @mv $(@D)/$(DEPDIR)/$(*F).TPo $(@D)/$(DEPDIR)/$(*F).Po | |
1090 | else | |
1091 | COMPILE = source='$<' object='$@' libtool=no \ | |
54c09437 | 1092 | DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) $(COMPILE.base) |
043378c3 TT |
1093 | POSTCOMPILE = |
1094 | endif | |
1095 | ||
9469b9b2 | 1096 | .cc.o .c.o: |
043378c3 TT |
1097 | $(COMPILE) $< |
1098 | $(POSTCOMPILE) | |
79d8453e | 1099 | |
544eb21e | 1100 | #\f |
73458fb7 NN |
1101 | # Support for additional languages (other than C). |
1102 | # C can be supported this way too (leave for later). | |
013a2ee0 | 1103 | |
2ed26f6b | 1104 | LANG_MAKEFRAGS = @all_lang_makefrags@ |
013a2ee0 DE |
1105 | |
1106 | # Flags to pass to recursive makes. | |
8b1f719a | 1107 | # CC is set by configure. |
013a2ee0 | 1108 | # ??? The choices here will need some experimenting with. |
e158a5fb MM |
1109 | |
1110 | export AR_FOR_TARGET | |
1111 | export AR_CREATE_FOR_TARGET | |
1112 | export AR_FLAGS_FOR_TARGET | |
1113 | export AR_EXTRACT_FOR_TARGET | |
1114 | export AWK | |
e158a5fb MM |
1115 | export DESTDIR |
1116 | export GCC_FOR_TARGET | |
1117 | export INCLUDES | |
1118 | export INSTALL_DATA | |
040b1c5a | 1119 | export LIPO_FOR_TARGET |
e158a5fb MM |
1120 | export MACHMODE_H |
1121 | export NM_FOR_TARGET | |
040b1c5a | 1122 | export STRIP_FOR_TARGET |
e158a5fb MM |
1123 | export RANLIB_FOR_TARGET |
1124 | export libsubdir | |
e158a5fb | 1125 | |
8b1f719a | 1126 | FLAGS_TO_PASS = \ |
da0f6381 | 1127 | "ADA_CFLAGS=$(ADA_CFLAGS)" \ |
013a2ee0 DE |
1128 | "BISON=$(BISON)" \ |
1129 | "BISONFLAGS=$(BISONFLAGS)" \ | |
5b67ad6f | 1130 | "CFLAGS=$(CFLAGS) $(WARN_CFLAGS)" \ |
013a2ee0 | 1131 | "LDFLAGS=$(LDFLAGS)" \ |
1e608388 ZW |
1132 | "FLEX=$(FLEX)" \ |
1133 | "FLEXFLAGS=$(FLEXFLAGS)" \ | |
6a810ff4 OH |
1134 | "INSTALL=$(INSTALL)" \ |
1135 | "INSTALL_DATA=$(INSTALL_DATA)" \ | |
1136 | "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \ | |
1137 | "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \ | |
ac64120e JW |
1138 | "LN=$(LN)" \ |
1139 | "LN_S=$(LN_S)" \ | |
013a2ee0 DE |
1140 | "MAKEINFO=$(MAKEINFO)" \ |
1141 | "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \ | |
03bbd83f | 1142 | "MAKEOVERRIDES=" \ |
013a2ee0 | 1143 | "SHELL=$(SHELL)" \ |
aab26e16 | 1144 | "exeext=$(exeext)" \ |
6e26218f | 1145 | "build_exeext=$(build_exeext)" \ |
aab26e16 | 1146 | "objext=$(objext)" \ |
013a2ee0 DE |
1147 | "exec_prefix=$(exec_prefix)" \ |
1148 | "prefix=$(prefix)" \ | |
3bf810d8 | 1149 | "local_prefix=$(local_prefix)" \ |
8f8d3278 | 1150 | "gxx_include_dir=$(gcc_gxx_include_dir)" \ |
f098ead2 | 1151 | "build_tooldir=$(build_tooldir)" \ |
91c7bd9b | 1152 | "gcc_tooldir=$(gcc_tooldir)" \ |
013a2ee0 | 1153 | "bindir=$(bindir)" \ |
0ac3cb2a | 1154 | "libexecsubdir=$(libexecsubdir)" \ |
2d09b640 | 1155 | "datarootdir=$(datarootdir)" \ |
ab87f8c8 | 1156 | "datadir=$(datadir)" \ |
ab87f8c8 | 1157 | "localedir=$(localedir)" |
544eb21e | 1158 | #\f |
79d8453e RS |
1159 | # Lists of files for various purposes. |
1160 | ||
75685792 RS |
1161 | # All option source files |
1162 | ALL_OPT_FILES=$(lang_opt_files) $(extra_opt_files) | |
1163 | ||
aac69a49 NC |
1164 | # Target specific, C specific object file |
1165 | C_TARGET_OBJS=@c_target_objs@ | |
1166 | ||
1167 | # Target specific, C++ specific object file | |
1168 | CXX_TARGET_OBJS=@cxx_target_objs@ | |
1169 | ||
c776a6d0 DF |
1170 | # Target specific, Fortran specific object file |
1171 | FORTRAN_TARGET_OBJS=@fortran_target_objs@ | |
1172 | ||
d4a10d0a | 1173 | # Object files for gcc many-languages driver. |
70f25790 | 1174 | GCC_OBJS = gcc.o gcc-main.o ggc-none.o |
14c7833c | 1175 | |
e6ac0270 GS |
1176 | c-family-warn = $(STRICT_WARN) |
1177 | ||
39dabefd SB |
1178 | # Language-specific object files shared by all C-family front ends. |
1179 | C_COMMON_OBJS = c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o \ | |
c3388e62 DM |
1180 | c-family/c-format.o c-family/c-gimplify.o c-family/c-indentation.o \ |
1181 | c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o \ | |
39dabefd | 1182 | c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o \ |
98906124 | 1183 | c-family/c-semantics.o c-family/c-ada-spec.o \ |
c02065fc | 1184 | c-family/c-cilkplus.o \ |
939b37da | 1185 | c-family/array-notation-common.o c-family/cilk.o c-family/c-ubsan.o |
e8066a5d | 1186 | |
79d8453e | 1187 | # Language-independent object files. |
0027ed3d SB |
1188 | # We put the *-match.o and insn-*.o files first so that a parallel make |
1189 | # will build them sooner, because they are large and otherwise tend to be | |
1190 | # the last objects to finish building. | |
252b3e8c | 1191 | OBJS = \ |
0027ed3d SB |
1192 | gimple-match.o \ |
1193 | generic-match.o \ | |
d5dc6bad ILT |
1194 | insn-attrtab.o \ |
1195 | insn-automata.o \ | |
41723253 | 1196 | insn-dfatab.o \ |
d5dc6bad ILT |
1197 | insn-emit.o \ |
1198 | insn-extract.o \ | |
41723253 | 1199 | insn-latencytab.o \ |
d5dc6bad ILT |
1200 | insn-modes.o \ |
1201 | insn-opinit.o \ | |
1202 | insn-output.o \ | |
1203 | insn-peep.o \ | |
1204 | insn-preds.o \ | |
1205 | insn-recog.o \ | |
0fe60a1b | 1206 | insn-enums.o \ |
cd030c07 | 1207 | ggc-page.o \ |
d5dc6bad ILT |
1208 | alias.o \ |
1209 | alloc-pool.o \ | |
6fb5fa3c | 1210 | auto-inc-dec.o \ |
be3c16c4 | 1211 | auto-profile.o \ |
d5dc6bad ILT |
1212 | bb-reorder.o \ |
1213 | bitmap.o \ | |
1214 | bt-load.o \ | |
1215 | builtins.o \ | |
1216 | caller-save.o \ | |
1217 | calls.o \ | |
f06cd23d | 1218 | ccmp.o \ |
d5dc6bad ILT |
1219 | cfg.o \ |
1220 | cfganal.o \ | |
1221 | cfgbuild.o \ | |
1222 | cfgcleanup.o \ | |
1223 | cfgexpand.o \ | |
1224 | cfghooks.o \ | |
d5dc6bad ILT |
1225 | cfgloop.o \ |
1226 | cfgloopanal.o \ | |
1227 | cfgloopmanip.o \ | |
1228 | cfgrtl.o \ | |
2aae7680 | 1229 | symtab.o \ |
252b3e8c MM |
1230 | cgraph.o \ |
1231 | cgraphbuild.o \ | |
1232 | cgraphunit.o \ | |
66a20fc2 | 1233 | cgraphclones.o \ |
939b37da | 1234 | cilk-common.o \ |
d5dc6bad | 1235 | combine.o \ |
c7a0240a | 1236 | combine-stack-adj.o \ |
e692f276 | 1237 | compare-elim.o \ |
8c5005ce | 1238 | context.o \ |
d5dc6bad ILT |
1239 | convert.o \ |
1240 | coverage.o \ | |
252b3e8c MM |
1241 | cppbuiltin.o \ |
1242 | cppdefault.o \ | |
e45425ec | 1243 | cprop.o \ |
d5dc6bad ILT |
1244 | cse.o \ |
1245 | cselib.o \ | |
f0efc7aa DN |
1246 | data-streamer.o \ |
1247 | data-streamer-in.o \ | |
1248 | data-streamer-out.o \ | |
d5dc6bad | 1249 | dbxout.o \ |
6fb5fa3c DB |
1250 | dbgcnt.o \ |
1251 | dce.o \ | |
d5dc6bad ILT |
1252 | ddg.o \ |
1253 | debug.o \ | |
1254 | df-core.o \ | |
1255 | df-problems.o \ | |
1256 | df-scan.o \ | |
1257 | dfp.o \ | |
d5dc6bad ILT |
1258 | dojump.o \ |
1259 | dominance.o \ | |
1260 | domwalk.o \ | |
1261 | double-int.o \ | |
6fb5fa3c | 1262 | dse.o \ |
78c60e3d | 1263 | dumpfile.o \ |
d5dc6bad | 1264 | dwarf2asm.o \ |
647a1567 | 1265 | dwarf2cfi.o \ |
d5dc6bad ILT |
1266 | dwarf2out.o \ |
1267 | emit-rtl.o \ | |
1268 | et-forest.o \ | |
1269 | except.o \ | |
1270 | explow.o \ | |
1271 | expmed.o \ | |
1272 | expr.o \ | |
ba1a7a0f | 1273 | fibonacci_heap.o \ |
d5dc6bad | 1274 | final.o \ |
1e1ba002 | 1275 | fixed-value.o \ |
d5dc6bad | 1276 | fold-const.o \ |
5c1a2e63 | 1277 | fold-const-call.o \ |
d5dc6bad | 1278 | function.o \ |
d9b950dd | 1279 | function-tests.o \ |
d5dc6bad | 1280 | fwprop.o \ |
ebedc9a3 | 1281 | gcc-rich-location.o \ |
d5dc6bad | 1282 | gcse.o \ |
af3eb110 | 1283 | gcse-common.o \ |
d5dc6bad | 1284 | ggc-common.o \ |
8c4294b2 | 1285 | ggc-tests.o \ |
726a989a | 1286 | gimple.o \ |
ff2a63a7 | 1287 | gimple-builder.o \ |
2a0603f1 | 1288 | gimple-expr.o \ |
726a989a | 1289 | gimple-iterator.o \ |
cbdd87d4 | 1290 | gimple-fold.o \ |
ca87c493 | 1291 | gimple-laddress.o \ |
d5dc6bad | 1292 | gimple-low.o \ |
726a989a | 1293 | gimple-pretty-print.o \ |
6a75d560 | 1294 | gimple-ssa-backprop.o \ |
8fdc414d | 1295 | gimple-ssa-isolate-paths.o \ |
bf14eba2 | 1296 | gimple-ssa-nonnull-compare.o \ |
8fe17e23 | 1297 | gimple-ssa-split-paths.o \ |
f9453c07 | 1298 | gimple-ssa-strength-reduction.o \ |
f0efc7aa DN |
1299 | gimple-streamer-in.o \ |
1300 | gimple-streamer-out.o \ | |
5be5c238 | 1301 | gimple-walk.o \ |
d5dc6bad | 1302 | gimplify.o \ |
18f429e2 | 1303 | gimplify-me.o \ |
c6a13190 | 1304 | godump.o \ |
d5dc6bad | 1305 | graph.o \ |
66f97d31 | 1306 | graphds.o \ |
f8bf9252 | 1307 | graphite.o \ |
f6cc3103 | 1308 | graphite-isl-ast-to-gimple.o \ |
204b560f | 1309 | graphite-dependences.o \ |
b60cc080 | 1310 | graphite-optimize-isl.o \ |
204b560f | 1311 | graphite-poly.o \ |
204b560f SP |
1312 | graphite-scop-detection.o \ |
1313 | graphite-sese-to-poly.o \ | |
d5dc6bad ILT |
1314 | gtype-desc.o \ |
1315 | haifa-sched.o \ | |
d9b950dd DM |
1316 | hash-map-tests.o \ |
1317 | hash-set-tests.o \ | |
b2b40051 MJ |
1318 | hsa.o \ |
1319 | hsa-gen.o \ | |
1320 | hsa-regalloc.o \ | |
1321 | hsa-brig.o \ | |
1322 | hsa-dump.o \ | |
9d9c740d | 1323 | hw-doloop.o \ |
c59ffc41 | 1324 | hwint.o \ |
d5dc6bad | 1325 | ifcvt.o \ |
26cd9add | 1326 | ree.o \ |
6d8eb96b | 1327 | inchash.o \ |
252b3e8c | 1328 | incpath.o \ |
6fb5fa3c | 1329 | init-regs.o \ |
25583c4f | 1330 | internal-fn.o \ |
d5e254e1 | 1331 | ipa-chkp.o \ |
252b3e8c | 1332 | ipa-cp.o \ |
eefe9a99 | 1333 | ipa-devirt.o \ |
aa803cc7 | 1334 | ipa-polymorphic-call.o \ |
252b3e8c MM |
1335 | ipa-split.o \ |
1336 | ipa-inline.o \ | |
a04d9035 | 1337 | ipa-comdats.o \ |
7f7beb3f | 1338 | ipa-visibility.o \ |
252b3e8c MM |
1339 | ipa-inline-analysis.o \ |
1340 | ipa-inline-transform.o \ | |
08f835dc | 1341 | ipa-profile.o \ |
252b3e8c MM |
1342 | ipa-prop.o \ |
1343 | ipa-pure-const.o \ | |
b84d4347 ML |
1344 | ipa-icf.o \ |
1345 | ipa-icf-gimple.o \ | |
252b3e8c | 1346 | ipa-reference.o \ |
b2b40051 | 1347 | ipa-hsa.o \ |
252b3e8c MM |
1348 | ipa-ref.o \ |
1349 | ipa-utils.o \ | |
1350 | ipa.o \ | |
058e97ec VM |
1351 | ira.o \ |
1352 | ira-build.o \ | |
1353 | ira-costs.o \ | |
1354 | ira-conflicts.o \ | |
1355 | ira-color.o \ | |
1356 | ira-emit.o \ | |
1357 | ira-lives.o \ | |
d5dc6bad | 1358 | jump.o \ |
d5dc6bad ILT |
1359 | langhooks.o \ |
1360 | lcm.o \ | |
1361 | lists.o \ | |
d5dc6bad ILT |
1362 | loop-doloop.o \ |
1363 | loop-init.o \ | |
1364 | loop-invariant.o \ | |
1365 | loop-iv.o \ | |
1366 | loop-unroll.o \ | |
e53a16e7 | 1367 | lower-subreg.o \ |
55a2c322 VM |
1368 | lra.o \ |
1369 | lra-assigns.o \ | |
1370 | lra-coalesce.o \ | |
1371 | lra-constraints.o \ | |
1372 | lra-eliminations.o \ | |
1373 | lra-lives.o \ | |
d9cf932c | 1374 | lra-remat.o \ |
55a2c322 | 1375 | lra-spills.o \ |
d7f09764 | 1376 | lto-cgraph.o \ |
f0efc7aa | 1377 | lto-streamer.o \ |
d7f09764 DN |
1378 | lto-streamer-in.o \ |
1379 | lto-streamer-out.o \ | |
1380 | lto-section-in.o \ | |
1381 | lto-section-out.o \ | |
d7f09764 | 1382 | lto-opts.o \ |
d7f09764 | 1383 | lto-compress.o \ |
52c76998 | 1384 | mcf.o \ |
d5dc6bad ILT |
1385 | mode-switching.o \ |
1386 | modulo-sched.o \ | |
3b1661a9 | 1387 | multiple_target.o \ |
d5dc6bad | 1388 | omp-low.o \ |
60cbb674 | 1389 | omp-simd-clone.o \ |
d5dc6bad | 1390 | optabs.o \ |
385399a8 RS |
1391 | optabs-libfuncs.o \ |
1392 | optabs-query.o \ | |
1393 | optabs-tree.o \ | |
57dfdff0 | 1394 | options-save.o \ |
21bf1558 | 1395 | opts-global.o \ |
d5dc6bad | 1396 | passes.o \ |
68a607d8 | 1397 | plugin.o \ |
d5dc6bad ILT |
1398 | postreload-gcse.o \ |
1399 | postreload.o \ | |
1400 | predict.o \ | |
d5dc6bad ILT |
1401 | print-rtl.o \ |
1402 | print-tree.o \ | |
1403 | profile.o \ | |
1404 | real.o \ | |
d49b6e1e | 1405 | realmpfr.o \ |
d5dc6bad ILT |
1406 | recog.o \ |
1407 | reg-stack.o \ | |
fac41238 | 1408 | regcprop.o \ |
2af2dbdc | 1409 | reginfo.o \ |
d5dc6bad | 1410 | regrename.o \ |
6fb5fa3c | 1411 | regstat.o \ |
d5dc6bad ILT |
1412 | reload.o \ |
1413 | reload1.o \ | |
1414 | reorg.o \ | |
1415 | resource.o \ | |
d5e254e1 | 1416 | rtl-chkp.o \ |
d5dc6bad | 1417 | rtl-error.o \ |
d9b950dd | 1418 | rtl-tests.o \ |
d5dc6bad | 1419 | rtl.o \ |
f768061c | 1420 | rtlhash.o \ |
d5dc6bad ILT |
1421 | rtlanal.o \ |
1422 | rtlhooks.o \ | |
1423 | sbitmap.o \ | |
1424 | sched-deps.o \ | |
1425 | sched-ebb.o \ | |
1426 | sched-rgn.o \ | |
d5dc6bad | 1427 | sdbout.o \ |
e855c69d AB |
1428 | sel-sched-ir.o \ |
1429 | sel-sched-dump.o \ | |
1430 | sel-sched.o \ | |
d9b950dd | 1431 | selftest-run-tests.o \ |
204b560f | 1432 | sese.o \ |
f30e25a3 | 1433 | shrink-wrap.o \ |
d5dc6bad | 1434 | simplify-rtx.o \ |
b4da855a | 1435 | sparseset.o \ |
277fe616 | 1436 | spellcheck.o \ |
93ebf1fd | 1437 | spellcheck-tree.o \ |
d5dc6bad | 1438 | sreal.o \ |
6fb5fa3c | 1439 | stack-ptr-mod.o \ |
9fe0cb7d | 1440 | statistics.o \ |
d5dc6bad ILT |
1441 | stmt.o \ |
1442 | stor-layout.o \ | |
df35c271 | 1443 | store-motion.o \ |
f0efc7aa | 1444 | streamer-hooks.o \ |
d5dc6bad | 1445 | stringpool.o \ |
3bd36029 | 1446 | target-globals.o \ |
d5dc6bad ILT |
1447 | targhooks.o \ |
1448 | timevar.o \ | |
1449 | toplev.o \ | |
1450 | tracer.o \ | |
0a35513e | 1451 | trans-mem.o \ |
d5dc6bad | 1452 | tree-affine.o \ |
37d6f666 | 1453 | asan.o \ |
32b4b7f5 | 1454 | tsan.o \ |
de5a5fa1 | 1455 | ubsan.o \ |
06cefae9 | 1456 | sanopt.o \ |
95e7bbb8 | 1457 | sancov.o \ |
c2699190 | 1458 | tree-call-cdce.o \ |
d5dc6bad ILT |
1459 | tree-cfg.o \ |
1460 | tree-cfgcleanup.o \ | |
1461 | tree-chrec.o \ | |
1462 | tree-complex.o \ | |
1463 | tree-data-ref.o \ | |
1464 | tree-dfa.o \ | |
cf835838 | 1465 | tree-diagnostic.o \ |
d5dc6bad ILT |
1466 | tree-dump.o \ |
1467 | tree-eh.o \ | |
8b84c596 | 1468 | tree-emutls.o \ |
d5dc6bad | 1469 | tree-if-conv.o \ |
252b3e8c | 1470 | tree-inline.o \ |
d5dc6bad ILT |
1471 | tree-into-ssa.o \ |
1472 | tree-iterator.o \ | |
dea61d92 | 1473 | tree-loop-distribution.o \ |
d5dc6bad ILT |
1474 | tree-nested.o \ |
1475 | tree-nrv.o \ | |
1476 | tree-object-size.o \ | |
d5dc6bad | 1477 | tree-outof-ssa.o \ |
5f40b3cb | 1478 | tree-parloops.o \ |
d5dc6bad | 1479 | tree-phinodes.o \ |
d5e254e1 IE |
1480 | tree-chkp.o \ |
1481 | tree-chkp-opt.o \ | |
bbc8a8dc | 1482 | tree-predcom.o \ |
d5dc6bad ILT |
1483 | tree-pretty-print.o \ |
1484 | tree-profile.o \ | |
1485 | tree-scalar-evolution.o \ | |
1486 | tree-sra.o \ | |
b6e99746 | 1487 | tree-switch-conversion.o \ |
d5dc6bad ILT |
1488 | tree-ssa-address.o \ |
1489 | tree-ssa-alias.o \ | |
1490 | tree-ssa-ccp.o \ | |
1491 | tree-ssa-coalesce.o \ | |
1492 | tree-ssa-copy.o \ | |
d5dc6bad ILT |
1493 | tree-ssa-dce.o \ |
1494 | tree-ssa-dom.o \ | |
1495 | tree-ssa-dse.o \ | |
1496 | tree-ssa-forwprop.o \ | |
18d08014 | 1497 | tree-ssa-ifcombine.o \ |
d5dc6bad ILT |
1498 | tree-ssa-live.o \ |
1499 | tree-ssa-loop-ch.o \ | |
1500 | tree-ssa-loop-im.o \ | |
1501 | tree-ssa-loop-ivcanon.o \ | |
1502 | tree-ssa-loop-ivopts.o \ | |
1503 | tree-ssa-loop-manip.o \ | |
1504 | tree-ssa-loop-niter.o \ | |
1505 | tree-ssa-loop-prefetch.o \ | |
1506 | tree-ssa-loop-unswitch.o \ | |
1507 | tree-ssa-loop.o \ | |
1508 | tree-ssa-math-opts.o \ | |
1509 | tree-ssa-operands.o \ | |
a502f7b6 | 1510 | tree-ssa-phionlycprop.o \ |
d5dc6bad | 1511 | tree-ssa-phiopt.o \ |
67514449 | 1512 | tree-ssa-phiprop.o \ |
d5dc6bad ILT |
1513 | tree-ssa-pre.o \ |
1514 | tree-ssa-propagate.o \ | |
1515 | tree-ssa-reassoc.o \ | |
89fb70a3 | 1516 | tree-ssa-sccvn.o \ |
f6c72af4 | 1517 | tree-ssa-scopedtables.o \ |
d5dc6bad | 1518 | tree-ssa-sink.o \ |
8b57bfeb | 1519 | tree-ssa-strlen.o \ |
d5dc6bad | 1520 | tree-ssa-structalias.o \ |
c9e93168 | 1521 | tree-ssa-tail-merge.o \ |
d5dc6bad | 1522 | tree-ssa-ter.o \ |
0732f75f | 1523 | tree-ssa-threadbackward.o \ |
d5dc6bad ILT |
1524 | tree-ssa-threadedge.o \ |
1525 | tree-ssa-threadupdate.o \ | |
1526 | tree-ssa-uncprop.o \ | |
34f97b94 | 1527 | tree-ssa-uninit.o \ |
d5dc6bad ILT |
1528 | tree-ssa.o \ |
1529 | tree-ssanames.o \ | |
1530 | tree-stdarg.o \ | |
f0efc7aa DN |
1531 | tree-streamer.o \ |
1532 | tree-streamer-in.o \ | |
1533 | tree-streamer-out.o \ | |
d5dc6bad | 1534 | tree-tailcall.o \ |
d5dc6bad ILT |
1535 | tree-vect-generic.o \ |
1536 | tree-vect-patterns.o \ | |
252b3e8c MM |
1537 | tree-vect-data-refs.o \ |
1538 | tree-vect-stmts.o \ | |
1539 | tree-vect-loop.o \ | |
1540 | tree-vect-loop-manip.o \ | |
1541 | tree-vect-slp.o \ | |
d5dc6bad | 1542 | tree-vectorizer.o \ |
d5dc6bad ILT |
1543 | tree-vrp.o \ |
1544 | tree.o \ | |
08df6c0d | 1545 | valtrack.o \ |
d5dc6bad ILT |
1546 | value-prof.o \ |
1547 | var-tracking.o \ | |
1548 | varasm.o \ | |
252b3e8c | 1549 | varpool.o \ |
d5dc6bad | 1550 | vmsdbgout.o \ |
2077db1b | 1551 | vtable-verify.o \ |
d5dc6bad | 1552 | web.o \ |
807e902e KZ |
1553 | wide-int.o \ |
1554 | wide-int-print.o \ | |
252b3e8c MM |
1555 | xcoffout.o \ |
1556 | $(out_object_file) \ | |
d5dc6bad | 1557 | $(EXTRA_OBJS) \ |
252b3e8c | 1558 | $(host_hook_obj) |
d1bd0ded | 1559 | |
2691e6d7 JM |
1560 | # Objects in libcommon.a, potentially used by all host binaries and with |
1561 | # no target dependencies. | |
57eb2d70 DM |
1562 | OBJS-libcommon = diagnostic.o diagnostic-color.o diagnostic-show-locus.o \ |
1563 | pretty-print.o intl.o \ | |
d9b950dd DM |
1564 | vec.o input.o version.o hash-table.o ggc-none.o memory-block.o \ |
1565 | selftest.o | |
2691e6d7 | 1566 | |
1ed1641d JM |
1567 | # Objects in libcommon-target.a, used by drivers and by the core |
1568 | # compiler and containing target-dependent code. | |
4c77620d | 1569 | OBJS-libcommon-target = $(common_out_object_file) prefix.o params.o \ |
0823efed | 1570 | opts.o opts-common.o options.o vec.o hooks.o common/common-targhooks.o \ |
d9b950dd | 1571 | hash-table.o file-find.o spellcheck.o selftest.o |
1ed1641d | 1572 | |
7a3b4887 | 1573 | # This lists all host objects for the front ends. |
d4a10d0a | 1574 | ALL_HOST_FRONTEND_OBJS = $(foreach v,$(CONFIG_LANGUAGES),$($(v)_OBJS)) |
7a3b4887 | 1575 | |
2691e6d7 | 1576 | ALL_HOST_BACKEND_OBJS = $(GCC_OBJS) $(OBJS) $(OBJS-libcommon) \ |
8d2ccbd2 | 1577 | $(OBJS-libcommon-target) main.o c-family/cppspec.o \ |
eab34643 | 1578 | $(COLLECT2_OBJS) $(EXTRA_GCC_OBJS) $(GCOV_OBJS) $(GCOV_DUMP_OBJS) \ |
d6d34aa9 JJ |
1579 | $(GCOV_TOOL_OBJS) $(GENGTYPE_OBJS) gcc-ar.o gcc-nm.o gcc-ranlib.o \ |
1580 | lto-wrapper.o collect-utils.o | |
6cba282a | 1581 | |
277d7ee0 AK |
1582 | # for anything that is shared use the cc1plus profile data, as that |
1583 | # is likely the most exercised during the build | |
e9ac1f86 JJ |
1584 | ifeq ($(if $(wildcard ../stage_current),$(shell cat \ |
1585 | ../stage_current)),stageautofeedback) | |
277d7ee0 AK |
1586 | $(ALL_HOST_BACKEND_OBJS): ALL_COMPILERFLAGS += -fauto-profile=cc1plus.fda |
1587 | $(ALL_HOST_BACKEND_OBJS): cc1plus.fda | |
1588 | endif | |
1589 | ||
7a3b4887 SB |
1590 | # This lists all host object files, whether they are included in this |
1591 | # compilation or not. | |
1592 | ALL_HOST_OBJS = $(ALL_HOST_FRONTEND_OBJS) $(ALL_HOST_BACKEND_OBJS) | |
1593 | ||
8d2ccbd2 | 1594 | BACKEND = libbackend.a main.o libcommon-target.a libcommon.a \ |
1ed1641d | 1595 | $(CPPLIB) $(LIBDECNUMBER) |
a36556a8 | 1596 | |
7cb9fd07 EB |
1597 | # This is defined to "yes" if Tree checking is enabled, which roughly means |
1598 | # front-end checking. | |
1599 | TREECHECKING = @TREECHECKING@ | |
1600 | ||
35485da9 DM |
1601 | # The full name of the driver on installation |
1602 | FULL_DRIVER_NAME=$(target_noncanonical)-gcc-$(version)$(exeext) | |
1603 | ||
8b1f719a | 1604 | MOSTLYCLEANFILES = insn-flags.h insn-config.h insn-codes.h \ |
79d8453e | 1605 | insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \ |
41723253 | 1606 | insn-attr.h insn-attr-common.h insn-attrtab.c insn-dfatab.c \ |
cd1440b1 | 1607 | insn-latencytab.c insn-opinit.c insn-opinit.h insn-preds.c insn-constants.h \ |
3d2cf79f | 1608 | tm-preds.h tm-constrs.h checksum-options gimple-match.c generic-match.c \ |
1c7352cd | 1609 | tree-check.h min-insn-modes.c insn-modes.c insn-modes.h \ |
6ac9d3a3 | 1610 | genrtl.h gt-*.h gtype-*.h gtype-desc.c gtyp-input.list \ |
b1dc4a20 | 1611 | case-cfn-macros.h cfn-operators.pd \ |
35485da9 | 1612 | xgcc$(exeext) cpp$(exeext) $(FULL_DRIVER_NAME) \ |
5f73c6cc | 1613 | $(EXTRA_PROGRAMS) gcc-cross$(exeext) \ |
b6b89215 AK |
1614 | $(SPECS) collect2$(exeext) gcc-ar$(exeext) gcc-nm$(exeext) \ |
1615 | gcc-ranlib$(exeext) \ | |
4977bab6 | 1616 | gcov-iov$(build_exeext) gcov$(exeext) gcov-dump$(exeext) \ |
c77556a5 | 1617 | gcov-tool$(exeect) \ |
f142b5bc | 1618 | gengtype$(exeext) *.[0-9][0-9].* *.[si] *-checksum.c libbackend.a \ |
277d7ee0 | 1619 | libcommon-target.a libcommon.a libgcc.mk perf.data |
79d8453e | 1620 | |
35485da9 DM |
1621 | # This symlink makes the full installation name of the driver be available |
1622 | # from within the *build* directory, for use when running the JIT library | |
1623 | # from there (e.g. when running its testsuite). | |
1624 | $(FULL_DRIVER_NAME): ./xgcc | |
380abb42 UD |
1625 | rm -f $@ |
1626 | $(LN_S) $< $@ | |
35485da9 | 1627 | |
544eb21e | 1628 | #\f |
013a2ee0 DE |
1629 | # Language makefile fragments. |
1630 | ||
1631 | # The following targets define the interface between us and the languages. | |
1632 | # | |
a078a589 | 1633 | # all.cross, start.encap, rest.encap, |
bd97af06 | 1634 | # install-common, install-info, install-man, |
436a88a6 | 1635 | # uninstall, |
a03ad584 | 1636 | # mostlyclean, clean, distclean, maintainer-clean, |
013a2ee0 | 1637 | # |
62b81e45 MM |
1638 | # Each language is linked in with a series of hooks. The name of each |
1639 | # hooked is "lang.${target_name}" (eg: lang.info). Configure computes | |
1640 | # and adds these here. We use double-colon rules for some of the hooks; | |
1641 | # double-colon rules should be preferred for any new hooks. | |
013a2ee0 | 1642 | |
2ed26f6b | 1643 | # language hooks, generated by configure |
3c18ea24 | 1644 | @language_hooks@ |
013a2ee0 | 1645 | |
2ed26f6b ZW |
1646 | # per-language makefile fragments |
1647 | ifneq ($(LANG_MAKEFRAGS),) | |
1648 | include $(LANG_MAKEFRAGS) | |
1649 | endif | |
013a2ee0 | 1650 | |
7e63a64e RO |
1651 | # target and host overrides must follow the per-language makefile fragments |
1652 | # so they can override or augment language-specific variables | |
1653 | ||
1654 | # target overrides | |
1655 | ifneq ($(tmake_file),) | |
1656 | include $(tmake_file) | |
1657 | endif | |
1658 | ||
1659 | # host overrides | |
1660 | ifneq ($(xmake_file),) | |
1661 | include $(xmake_file) | |
1662 | endif | |
1663 | ||
c0ed0531 ILT |
1664 | # all-tree.def includes all the tree.def files. |
1665 | all-tree.def: s-alltree; @true | |
1666 | s-alltree: Makefile | |
1667 | rm -f tmp-all-tree.def | |
1668 | echo '#include "tree.def"' > tmp-all-tree.def | |
1669 | echo 'END_OF_BASE_TREE_CODES' >> tmp-all-tree.def | |
39dabefd | 1670 | echo '#include "c-family/c-common.def"' >> tmp-all-tree.def |
c0ed0531 ILT |
1671 | ltf="$(lang_tree_files)"; for f in $$ltf; do \ |
1672 | echo "#include \"$$f\""; \ | |
1673 | done | sed 's|$(srcdir)/||' >> tmp-all-tree.def | |
1674 | $(SHELL) $(srcdir)/../move-if-change tmp-all-tree.def all-tree.def | |
1675 | $(STAMP) s-alltree | |
1676 | ||
7a3b4887 SB |
1677 | # Now that LANG_MAKEFRAGS are included, we can add special flags to the |
1678 | # objects that belong to the front ends. We add an extra define that | |
1679 | # causes back-end specific include files to be poisoned, in the hope that | |
1680 | # we can avoid introducing dependencies of the front ends on things that | |
1681 | # no front end should ever look at (e.g. everything RTL related). | |
1682 | $(foreach file,$(ALL_HOST_FRONTEND_OBJS),$(eval CFLAGS-$(file) += -DIN_GCC_FRONTEND)) | |
1683 | ||
544eb21e | 1684 | #\f |
79d8453e | 1685 | |
73458fb7 NN |
1686 | # ----------------------------- |
1687 | # Rebuilding this configuration | |
1688 | # ----------------------------- | |
1689 | ||
f637f072 RÁE |
1690 | # On the use of stamps: |
1691 | # Consider the example of tree-check.h. It is constructed with build/gencheck. | |
1692 | # A simple rule to build tree-check.h would be | |
1693 | # tree-check.h: build/gencheck$(build_exeext) | |
1694 | # $(RUN_GEN) build/gencheck$(build_exeext) > tree-check.h | |
1695 | # | |
1696 | # but tree-check.h doesn't change every time gencheck changes. It would the | |
e980df8e | 1697 | # nice if targets that depend on tree-check.h wouldn't be rebuild |
f637f072 RÁE |
1698 | # unnecessarily when tree-check.h is unchanged. To make this, tree-check.h |
1699 | # must not be overwritten with a identical copy. One solution is to use a | |
1700 | # temporary file | |
1701 | # tree-check.h: build/gencheck$(build_exeext) | |
f7ca46d6 | 1702 | # $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h |
f637f072 RÁE |
1703 | # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h |
1704 | # | |
1705 | # This solution has a different problem. Since the time stamp of tree-check.h | |
1706 | # is unchanged, make will try to update tree-check.h every time it runs. | |
1707 | # To prevent this, one can add a stamp | |
1708 | # tree-check.h: s-check | |
1709 | # s-check : build/gencheck$(build_exeext) | |
f7ca46d6 | 1710 | # $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h |
f637f072 RÁE |
1711 | # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h |
1712 | # $(STAMP) s-check | |
1713 | # | |
1714 | # The problem with this solution is that make thinks that tree-check.h is | |
1715 | # always unchanged. Make must be deceived into thinking that tree-check.h is | |
f7ca46d6 | 1716 | # rebuild by the "tree-check.h: s-check" rule. To do this, add a dummy command: |
f637f072 RÁE |
1717 | # tree-check.h: s-check; @true |
1718 | # s-check : build/gencheck$(build_exeext) | |
f7ca46d6 | 1719 | # $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h |
f637f072 RÁE |
1720 | # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h |
1721 | # $(STAMP) s-check | |
1722 | # | |
1723 | # This is what is done in this makefile. Note that mkconfig.sh has a | |
1724 | # move-if-change built-in | |
1725 | ||
a1286ef5 | 1726 | Makefile: config.status $(srcdir)/Makefile.in $(LANG_MAKEFRAGS) |
2ed26f6b ZW |
1727 | LANGUAGES="$(CONFIG_LANGUAGES)" \ |
1728 | CONFIG_HEADERS= \ | |
e75f9147 | 1729 | CONFIG_SHELL="$(SHELL)" \ |
2ed26f6b | 1730 | CONFIG_FILES=$@ $(SHELL) config.status |
79d8453e | 1731 | |
11642c3a | 1732 | config.h: cs-config.h ; @true |
4977bab6 | 1733 | bconfig.h: cs-bconfig.h ; @true |
11642c3a | 1734 | tconfig.h: cs-tconfig.h ; @true |
4977bab6 | 1735 | tm.h: cs-tm.h ; @true |
11642c3a ZW |
1736 | tm_p.h: cs-tm_p.h ; @true |
1737 | ||
1738 | cs-config.h: Makefile | |
4977bab6 | 1739 | TARGET_CPU_DEFAULT="" \ |
e22340b0 | 1740 | HEADERS="$(host_xm_include_list)" DEFINES="$(host_xm_defines)" \ |
11642c3a ZW |
1741 | $(SHELL) $(srcdir)/mkconfig.sh config.h |
1742 | ||
4977bab6 ZW |
1743 | cs-bconfig.h: Makefile |
1744 | TARGET_CPU_DEFAULT="" \ | |
e22340b0 | 1745 | HEADERS="$(build_xm_include_list)" DEFINES="$(build_xm_defines)" \ |
4977bab6 | 1746 | $(SHELL) $(srcdir)/mkconfig.sh bconfig.h |
11642c3a | 1747 | |
0d24f4d1 | 1748 | cs-tconfig.h: Makefile |
3d9d2476 | 1749 | TARGET_CPU_DEFAULT="" \ |
232b67d9 | 1750 | HEADERS="$(xm_include_list)" DEFINES="USED_FOR_TARGET $(xm_defines)" \ |
11642c3a ZW |
1751 | $(SHELL) $(srcdir)/mkconfig.sh tconfig.h |
1752 | ||
4977bab6 ZW |
1753 | cs-tm.h: Makefile |
1754 | TARGET_CPU_DEFAULT="$(target_cpu_default)" \ | |
e22340b0 | 1755 | HEADERS="$(tm_include_list)" DEFINES="$(tm_defines)" \ |
4977bab6 ZW |
1756 | $(SHELL) $(srcdir)/mkconfig.sh tm.h |
1757 | ||
11642c3a | 1758 | cs-tm_p.h: Makefile |
4977bab6 | 1759 | TARGET_CPU_DEFAULT="" \ |
e22340b0 | 1760 | HEADERS="$(tm_p_include_list)" DEFINES="" \ |
11642c3a ZW |
1761 | $(SHELL) $(srcdir)/mkconfig.sh tm_p.h |
1762 | ||
a6a5e4c9 | 1763 | # Don't automatically run autoconf, since configure.ac might be accidentally |
e7f62dcf NC |
1764 | # newer than configure. Also, this writes into the source directory which |
1765 | # might be on a read-only file system. If configured for maintainer mode | |
1766 | # then do allow autoconf to be run. | |
1767 | ||
6efbd53f RW |
1768 | AUTOCONF = autoconf |
1769 | ACLOCAL = aclocal | |
1770 | ACLOCAL_AMFLAGS = -I ../config -I .. | |
1771 | aclocal_deps = \ | |
1772 | $(srcdir)/../libtool.m4 \ | |
1773 | $(srcdir)/../ltoptions.m4 \ | |
1774 | $(srcdir)/../ltsugar.m4 \ | |
1775 | $(srcdir)/../ltversion.m4 \ | |
1776 | $(srcdir)/../lt~obsolete.m4 \ | |
1777 | $(srcdir)/../config/acx.m4 \ | |
1778 | $(srcdir)/../config/codeset.m4 \ | |
1779 | $(srcdir)/../config/extensions.m4 \ | |
1780 | $(srcdir)/../config/gettext-sister.m4 \ | |
ddc8de03 | 1781 | $(srcdir)/../config/gcc-plugin.m4 \ |
6efbd53f RW |
1782 | $(srcdir)/../config/iconv.m4 \ |
1783 | $(srcdir)/../config/lcmessage.m4 \ | |
1784 | $(srcdir)/../config/lib-ld.m4 \ | |
1785 | $(srcdir)/../config/lib-link.m4 \ | |
1786 | $(srcdir)/../config/lib-prefix.m4 \ | |
1787 | $(srcdir)/../config/override.m4 \ | |
1788 | $(srcdir)/../config/progtest.m4 \ | |
7c2a2dbf | 1789 | $(srcdir)/../config/stdint.m4 \ |
6efbd53f RW |
1790 | $(srcdir)/../config/unwind_ipinfo.m4 \ |
1791 | $(srcdir)/../config/warnings.m4 \ | |
3c39bca6 | 1792 | $(srcdir)/../config/dfp.m4 \ |
2f6935f4 | 1793 | $(srcdir)/../config/mmap.m4 \ |
6efbd53f RW |
1794 | $(srcdir)/acinclude.m4 |
1795 | ||
1796 | $(srcdir)/configure: @MAINT@ $(srcdir)/configure.ac $(srcdir)/aclocal.m4 | |
1797 | (cd $(srcdir) && $(AUTOCONF)) | |
1798 | ||
1799 | $(srcdir)/aclocal.m4 : @MAINT@ $(aclocal_deps) | |
1800 | (cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)) | |
3c18ea24 | 1801 | |
da7ece9a | 1802 | # cstamp-h.in controls rebuilding of config.in. |
7c0ae5f1 DE |
1803 | # It is named cstamp-h.in and not stamp-h.in so the mostlyclean rule doesn't |
1804 | # delete it. A stamp file is needed as autoheader won't update the file if | |
1805 | # nothing has changed. | |
da7ece9a DE |
1806 | # It remains in the source directory and is part of the distribution. |
1807 | # This follows what is done in shellutils, fileutils, etc. | |
5408f8d0 DE |
1808 | # "echo timestamp" is used instead of touch to be consistent with other |
1809 | # packages that use autoconf (??? perhaps also to avoid problems with patch?). | |
da7ece9a | 1810 | # ??? Newer versions have a maintainer mode that may be useful here. |
e7f62dcf NC |
1811 | |
1812 | # Don't run autoheader automatically either. | |
1813 | # Only run it if maintainer mode is enabled. | |
6efbd53f | 1814 | @MAINT@ AUTOHEADER = autoheader |
e7f62dcf | 1815 | @MAINT@ $(srcdir)/config.in: $(srcdir)/cstamp-h.in |
a6a5e4c9 | 1816 | @MAINT@ $(srcdir)/cstamp-h.in: $(srcdir)/configure.ac |
6efbd53f | 1817 | @MAINT@ (cd $(srcdir) && $(AUTOHEADER)) |
e7f62dcf NC |
1818 | @MAINT@ @rm -f $(srcdir)/cstamp-h.in |
1819 | @MAINT@ echo timestamp > $(srcdir)/cstamp-h.in | |
b7cb92ad | 1820 | auto-host.h: cstamp-h ; @true |
da7ece9a | 1821 | cstamp-h: config.in config.status |
2ed26f6b ZW |
1822 | CONFIG_HEADERS=auto-host.h:config.in \ |
1823 | CONFIG_FILES= \ | |
1824 | LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status | |
d68b51ef | 1825 | |
7c0ae5f1 DE |
1826 | # Really, really stupid make features, such as SUN's KEEP_STATE, may force |
1827 | # a target to build even if it is up-to-date. So we must verify that | |
1828 | # config.status does not exist before failing. | |
a1286ef5 | 1829 | config.status: $(srcdir)/configure $(srcdir)/config.gcc |
7c0ae5f1 | 1830 | @if [ ! -f config.status ] ; then \ |
436a88a6 | 1831 | echo You must configure gcc. Look at http://gcc.gnu.org/install/ for details.; \ |
7c0ae5f1 DE |
1832 | false; \ |
1833 | else \ | |
71205e0b | 1834 | LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status --recheck; \ |
7c0ae5f1 DE |
1835 | fi |
1836 | ||
73458fb7 NN |
1837 | # -------- |
1838 | # UNSORTED | |
1839 | # -------- | |
1840 | ||
3bbd5a19 PB |
1841 | # Provide quickstrap as a target that people can type into the gcc directory, |
1842 | # and that fails if you're not into it. | |
1843 | quickstrap: all | |
1844 | cd $(toplevel_builddir) && $(MAKE) all-target-libgcc | |
1845 | ||
d9b950dd | 1846 | all.internal: start.encap rest.encap doc selftest |
79d8453e | 1847 | # This is what to compile if making a cross-compiler. |
b3b2cbc4 | 1848 | all.cross: native gcc-cross$(exeext) cpp$(exeext) specs \ |
d9b950dd | 1849 | libgcc-support lang.all.cross doc selftest @GENINSRC@ srcextra |
79d8453e | 1850 | # This is what must be made before installing GCC and converting libraries. |
4871239e | 1851 | start.encap: native xgcc$(exeext) cpp$(exeext) specs \ |
14da6073 | 1852 | libgcc-support lang.start.encap @GENINSRC@ srcextra |
eea77e5f | 1853 | # These can't be made until after GCC can run. |
52c0e446 | 1854 | rest.encap: lang.rest.encap |
79d8453e RS |
1855 | # This is what is made with the host's compiler |
1856 | # whether making a cross compiler or not. | |
6eb95e99 | 1857 | native: config.status auto-host.h build-@POSUB@ $(LANGUAGES) \ |
d82c57a8 | 1858 | $(EXTRA_PROGRAMS) $(COLLECT2) lto-wrapper$(exeext) \ |
b6b89215 | 1859 | gcc-ar$(exeext) gcc-nm$(exeext) gcc-ranlib$(exeext) |
79d8453e | 1860 | |
f142b5bc RG |
1861 | ifeq ($(enable_plugin),yes) |
1862 | native: gengtype$(exeext) | |
1863 | endif | |
1864 | ||
3aa072f2 RS |
1865 | # On the target machine, finish building a cross compiler. |
1866 | # This does the things that can't be done on the host machine. | |
fa958513 | 1867 | rest.cross: specs |
3aa072f2 | 1868 | |
d9b950dd DM |
1869 | # Run the selftests during the build once we have a driver and a cc1, |
1870 | # so that self-test failures are caught as early as possible. | |
1871 | # Use "s-selftest" to ensure that we only run the selftests if the | |
1872 | # driver or cc1 change. | |
1873 | .PHONY: selftest | |
1874 | selftest: s-selftest | |
1875 | s-selftest: $(GCC_PASSES) cc1$(exeext) stmp-int-hdrs | |
1876 | $(GCC_FOR_TARGET) -xc -S -c /dev/null -fself-test | |
1877 | $(STAMP) $@ | |
1878 | ||
1879 | # Convenience method for running selftests under gdb: | |
1880 | .PHONY: selftest-gdb | |
1881 | selftest-gdb: $(GCC_PASSES) cc1$(exeext) stmp-int-hdrs | |
1882 | $(GCC_FOR_TARGET) -xc -S -c /dev/null -fself-test -wrapper gdb,--args | |
1883 | ||
9e34db2e DM |
1884 | # Convenience method for running selftests under valgrind: |
1885 | .PHONY: selftest-valgrind | |
1886 | selftest-valgrind: $(GCC_PASSES) cc1$(exeext) stmp-int-hdrs | |
1887 | $(GCC_FOR_TARGET) -xc -S -c /dev/null -fself-test \ | |
1888 | -wrapper valgrind,--leak-check=full | |
1889 | ||
3aa072f2 RS |
1890 | # Recompile all the language-independent object files. |
1891 | # This is used only if the user explicitly asks for it. | |
a36556a8 | 1892 | compilations: $(BACKEND) |
79d8453e | 1893 | |
4f4e53dd | 1894 | # This archive is strictly for the host. |
de6ba7ae | 1895 | libbackend.a: $(OBJS) |
a36556a8 | 1896 | -rm -rf libbackend.a |
25e08379 PP |
1897 | @# Build libbackend.a as a thin archive if possible, as doing so |
1898 | @# significantly reduces build times. | |
1899 | ifeq ($(USE_THIN_ARCHIVES),yes) | |
1900 | $(AR) $(AR_FLAGS)T libbackend.a $(OBJS) | |
1901 | else | |
de6ba7ae | 1902 | $(AR) $(AR_FLAGS) libbackend.a $(OBJS) |
343a6100 | 1903 | -$(RANLIB) $(RANLIB_FLAGS) libbackend.a |
25e08379 | 1904 | endif |
6c1cc7fa | 1905 | |
1ed1641d JM |
1906 | libcommon-target.a: $(OBJS-libcommon-target) |
1907 | -rm -rf libcommon-target.a | |
1908 | $(AR) $(AR_FLAGS) libcommon-target.a $(OBJS-libcommon-target) | |
1909 | -$(RANLIB) $(RANLIB_FLAGS) libcommon-target.a | |
1910 | ||
2691e6d7 JM |
1911 | libcommon.a: $(OBJS-libcommon) |
1912 | -rm -rf libcommon.a | |
1913 | $(AR) $(AR_FLAGS) libcommon.a $(OBJS-libcommon) | |
1914 | -$(RANLIB) $(RANLIB_FLAGS) libcommon.a | |
1915 | ||
acbbf3d9 RS |
1916 | # We call this executable `xgcc' rather than `gcc' |
1917 | # to avoid confusion if the current directory is in the path | |
1918 | # and CC is `gcc'. It is renamed to `gcc' when it is installed. | |
d4a10d0a | 1919 | xgcc$(exeext): $(GCC_OBJS) c/gccspec.o libcommon-target.a $(LIBDEPS) \ |
1ed1641d | 1920 | $(EXTRA_GCC_OBJS) |
a90163e9 | 1921 | +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ $(GCC_OBJS) \ |
d4a10d0a | 1922 | c/gccspec.o $(EXTRA_GCC_OBJS) libcommon-target.a \ |
e3b3fa45 | 1923 | $(EXTRA_GCC_LIBS) $(LIBS) |
3aa072f2 | 1924 | |
d4a10d0a SB |
1925 | # cpp is to cpp0 as e.g. g++ is to cc1plus: Just another driver. |
1926 | # It is part of c-family because the handled extensions are hard-coded | |
1927 | # and only contain c-family extensions (see known_suffixes). | |
1928 | cpp$(exeext): $(GCC_OBJS) c-family/cppspec.o libcommon-target.a $(LIBDEPS) \ | |
1ed1641d | 1929 | $(EXTRA_GCC_OBJS) |
a90163e9 | 1930 | +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ $(GCC_OBJS) \ |
d4a10d0a | 1931 | c-family/cppspec.o $(EXTRA_GCC_OBJS) libcommon-target.a \ |
e3b3fa45 | 1932 | $(EXTRA_GCC_LIBS) $(LIBS) |
922cf99e | 1933 | |
3aa072f2 | 1934 | # Dump a specs file to make -B./ read these specs over installed ones. |
3bd6d4c4 | 1935 | $(SPECS): xgcc$(exeext) |
d521a023 | 1936 | $(GCC_FOR_TARGET) -dumpspecs > tmp-specs |
3bd6d4c4 | 1937 | mv tmp-specs $(SPECS) |
79d8453e | 1938 | |
acbbf3d9 | 1939 | # We do want to create an executable named `xgcc', so we can use it to |
79d8453e RS |
1940 | # compile libgcc2.a. |
1941 | # Also create gcc-cross, so that install-common will install properly. | |
b3b2cbc4 | 1942 | gcc-cross$(exeext): xgcc$(exeext) |
aab26e16 | 1943 | cp xgcc$(exeext) gcc-cross$(exeext) |
79d8453e | 1944 | |
d6d5951a AK |
1945 | checksum-options: |
1946 | echo "$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS)" > checksum-options.tmp \ | |
1947 | && $(srcdir)/../move-if-change checksum-options.tmp checksum-options | |
e980df8e | 1948 | |
544eb21e | 1949 | #\f |
79d8453e | 1950 | # Build libgcc.a. |
a2ab7f2b | 1951 | |
52c0e446 | 1952 | libgcc-support: libgcc.mvars stmp-int-hdrs $(TCONFIG_H) \ |
f9989b51 | 1953 | $(MACHMODE_H) gcov-iov.h |
fa958513 | 1954 | |
f9989b51 | 1955 | libgcc.mvars: config.status Makefile specs xgcc$(exeext) |
fa958513 | 1956 | : > tmp-libgcc.mvars |
5f73c6cc RO |
1957 | echo GCC_CFLAGS = '$(GCC_CFLAGS)' >> tmp-libgcc.mvars |
1958 | echo INHIBIT_LIBC_CFLAGS = '$(INHIBIT_LIBC_CFLAGS)' >> tmp-libgcc.mvars | |
7f142d33 | 1959 | echo TARGET_SYSTEM_ROOT = '$(TARGET_SYSTEM_ROOT)' >> tmp-libgcc.mvars |
428b3812 L |
1960 | if test @enable_default_pie@ = yes; then \ |
1961 | NO_PIE_CFLAGS="-fno-PIE"; \ | |
1962 | else \ | |
1963 | NO_PIE_CFLAGS=; \ | |
1964 | fi; \ | |
1965 | echo NO_PIE_CFLAGS = "$$NO_PIE_CFLAGS" >> tmp-libgcc.mvars | |
fa958513 DJ |
1966 | |
1967 | mv tmp-libgcc.mvars libgcc.mvars | |
79d8453e | 1968 | |
f6cdc7ea DE |
1969 | # Use the genmultilib shell script to generate the information the gcc |
1970 | # driver program needs to select the library directory based on the | |
1971 | # switches. | |
e5e809f4 JL |
1972 | multilib.h: s-mlib; @true |
1973 | s-mlib: $(srcdir)/genmultilib Makefile | |
c49d2df6 JJ |
1974 | if test @enable_multilib@ = yes \ |
1975 | || test -n "$(MULTILIB_OSDIRNAMES)"; then \ | |
4d2fb38b JJ |
1976 | $(SHELL) $(srcdir)/genmultilib \ |
1977 | "$(MULTILIB_OPTIONS)" \ | |
1978 | "$(MULTILIB_DIRNAMES)" \ | |
1979 | "$(MULTILIB_MATCHES)" \ | |
1980 | "$(MULTILIB_EXCEPTIONS)" \ | |
1981 | "$(MULTILIB_EXTRA_OPTS)" \ | |
1982 | "$(MULTILIB_EXCLUSIONS)" \ | |
5bbcd587 | 1983 | "$(MULTILIB_OSDIRNAMES)" \ |
43661dc4 | 1984 | "$(MULTILIB_REQUIRED)" \ |
4973b0f9 | 1985 | "$(if $(MULTILIB_OSDIRNAMES),,$(MULTIARCH_DIRNAME))" \ |
e7f49d92 | 1986 | "$(MULTILIB_REUSE)" \ |
c49d2df6 | 1987 | "@enable_multilib@" \ |
4d2fb38b JJ |
1988 | > tmp-mlib.h; \ |
1989 | else \ | |
e7f49d92 TG |
1990 | $(SHELL) $(srcdir)/genmultilib '' '' '' '' '' '' '' '' \ |
1991 | "$(MULTIARCH_DIRNAME)" '' no \ | |
c49d2df6 | 1992 | > tmp-mlib.h; \ |
4d2fb38b | 1993 | fi |
88e3a2a3 | 1994 | $(SHELL) $(srcdir)/../move-if-change tmp-mlib.h multilib.h |
d9835ae8 | 1995 | $(STAMP) s-mlib |
544eb21e | 1996 | #\f |
79d8453e RS |
1997 | # Compiling object files from source files. |
1998 | ||
e980df8e TT |
1999 | # Note that dependencies on obstack.h are not written |
2000 | # because that file is not part of GCC. | |
2001 | ||
02ba6b22 KC |
2002 | srcextra: gcc.srcextra lang.srcextra |
2003 | ||
01d419ae | 2004 | gcc.srcextra: gengtype-lex.c |
03787dfd KC |
2005 | -cp -p $^ $(srcdir) |
2006 | ||
c2a73de2 | 2007 | AR_OBJS = file-find.o |
b6b89215 AK |
2008 | AR_LIBS = @COLLECT2_LIBS@ |
2009 | ||
c2a73de2 | 2010 | gcc-ar$(exeext): gcc-ar.o $(AR_OBJS) $(LIBDEPS) |
b6b89215 | 2011 | +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) gcc-ar.o -o $@ \ |
c2a73de2 | 2012 | $(AR_OBJS) $(LIBS) $(AR_LIBS) |
b6b89215 | 2013 | |
c2a73de2 | 2014 | gcc-nm$(exeext): gcc-nm.o $(AR_OBJS) $(LIBDEPS) |
b6b89215 | 2015 | +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) gcc-nm.o -o $@ \ |
c2a73de2 | 2016 | $(AR_OBJS) $(LIBS) $(AR_LIBS) |
b6b89215 | 2017 | |
c2a73de2 | 2018 | gcc-ranlib$(exeext): gcc-ranlib.o $(AR_OBJS) $(LIBDEPS) |
b6b89215 | 2019 | +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) gcc-ranlib.o -o $@ \ |
c2a73de2 | 2020 | $(AR_OBJS) $(LIBS) $(AR_LIBS) |
b6b89215 AK |
2021 | |
2022 | CFLAGS-gcc-ar.o += $(DRIVER_DEFINES) \ | |
2023 | -DTARGET_MACHINE=\"$(target_noncanonical)\" \ | |
2024 | @TARGET_SYSTEM_ROOT_DEFINE@ -DPERSONALITY=\"ar\" | |
2025 | ||
b6b89215 AK |
2026 | CFLAGS-gcc-ranlib.o += $(DRIVER_DEFINES) \ |
2027 | -DTARGET_MACHINE=\"$(target_noncanonical)\" \ | |
2028 | @TARGET_SYSTEM_ROOT_DEFINE@ -DPERSONALITY=\"ranlib\" | |
2029 | ||
b6b89215 AK |
2030 | CFLAGS-gcc-nm.o += $(DRIVER_DEFINES) \ |
2031 | -DTARGET_MACHINE=\"$(target_noncanonical)\" \ | |
2032 | @TARGET_SYSTEM_ROOT_DEFINE@ -DPERSONALITY=\"nm\" | |
2033 | ||
b6b89215 AK |
2034 | # ??? the implicit rules dont trigger if the source file has a different name |
2035 | # so copy instead | |
2036 | gcc-ranlib.c: gcc-ar.c | |
2037 | cp $^ $@ | |
2038 | ||
2039 | gcc-nm.c: gcc-ar.c | |
2040 | cp $^ $@ | |
2041 | ||
5f0ad6a5 | 2042 | COLLECT2_OBJS = collect2.o collect2-aix.o tlink.o vec.o ggc-none.o \ |
d9b950dd | 2043 | collect-utils.o file-find.o hash-table.o selftest.o |
4e70264f | 2044 | COLLECT2_LIBS = @COLLECT2_LIBS@ |
a2d25763 | 2045 | collect2$(exeext): $(COLLECT2_OBJS) $(LIBDEPS) |
057f494b | 2046 | # Don't try modifying collect2 (aka ld) in place--it might be linking this. |
a90163e9 | 2047 | +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o T$@ \ |
4e70264f | 2048 | $(COLLECT2_OBJS) $(LIBS) $(COLLECT2_LIBS) |
ff0a63e8 | 2049 | mv -f T$@ $@ |
79d8453e | 2050 | |
c5bc3df6 JM |
2051 | CFLAGS-collect2.o += -DTARGET_MACHINE=\"$(target_noncanonical)\" \ |
2052 | @TARGET_SYSTEM_ROOT_DEFINE@ | |
e980df8e | 2053 | |
a185856a BS |
2054 | LTO_WRAPPER_OBJS = lto-wrapper.o collect-utils.o ggc-none.o |
2055 | lto-wrapper$(exeext): $(LTO_WRAPPER_OBJS) libcommon-target.a $(LIBDEPS) | |
f31c0018 | 2056 | +$(LINKER) $(ALL_COMPILERFLAGS) $(LDFLAGS) -o T$@ \ |
a185856a | 2057 | $(LTO_WRAPPER_OBJS) libcommon-target.a $(LIBS) |
d7f09764 DN |
2058 | mv -f T$@ $@ |
2059 | ||
d4a10d0a | 2060 | # Files used by all variants of C or by the stand-alone pre-processor. |
39dabefd | 2061 | |
c5bc3df6 | 2062 | CFLAGS-c-family/c-opts.o += @TARGET_SYSTEM_ROOT_DEFINE@ |
e980df8e | 2063 | |
c5bc3df6 JM |
2064 | CFLAGS-c-family/c-pch.o += -DHOST_MACHINE=\"$(host)\" \ |
2065 | -DTARGET_MACHINE=\"$(target)\" | |
8c796d19 | 2066 | |
b6541edc TT |
2067 | default-c.o: config/default-c.c |
2068 | $(COMPILE) $< | |
2069 | $(POSTCOMPILE) | |
e980df8e | 2070 | |
39dabefd SB |
2071 | # Files used by all variants of C and some other languages. |
2072 | ||
c5bc3df6 | 2073 | CFLAGS-prefix.o += -DPREFIX=\"$(prefix)\" -DBASEVER=$(BASEVER_s) |
2754b38f | 2074 | prefix.o: $(BASEVER) |
79d8453e | 2075 | |
e980df8e | 2076 | # Language-independent files. |
2fe3178b | 2077 | |
610c62ac | 2078 | DRIVER_DEFINES = \ |
0deb20df | 2079 | -DSTANDARD_STARTFILE_PREFIX=\"$(unlibsubdir)/\" \ |
a8ee6e2d GK |
2080 | -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc/\" \ |
2081 | -DSTANDARD_LIBEXEC_PREFIX=\"$(libexecdir)/gcc/\" \ | |
964ceda1 | 2082 | -DDEFAULT_TARGET_VERSION=\"$(version)\" \ |
85c64bbe | 2083 | -DDEFAULT_REAL_TARGET_MACHINE=\"$(real_target_noncanonical)\" \ |
caa55b1e | 2084 | -DDEFAULT_TARGET_MACHINE=\"$(target_noncanonical)\" \ |
0deb20df | 2085 | -DSTANDARD_BINDIR_PREFIX=\"$(bindir)/\" \ |
15c723f3 | 2086 | -DTOOLDIR_BASE_PREFIX=\"$(libsubdir_to_prefix)$(prefix_to_exec_prefix)\" \ |
85c64bbe | 2087 | -DACCEL_DIR_SUFFIX=\"$(accel_dir_suffix)\" \ |
4977bab6 | 2088 | @TARGET_SYSTEM_ROOT_DEFINE@ \ |
414d23ae | 2089 | $(VALGRIND_DRIVER_DEFINES) \ |
56e82b14 | 2090 | $(if $(SHLIB),$(if $(filter yes,@enable_shared@),-DENABLE_SHARED_LIBGCC)) \ |
e11ddaf5 | 2091 | -DCONFIGURE_SPECS="\"@CONFIGURE_SPECS@\"" |
e980df8e | 2092 | |
b6541edc | 2093 | CFLAGS-gcc.o += $(DRIVER_DEFINES) |
e980df8e | 2094 | |
0d24f4d1 ZW |
2095 | specs.h : s-specs ; @true |
2096 | s-specs : Makefile | |
766c7ad1 ZW |
2097 | lsf="$(lang_specs_files)"; for f in $$lsf; do \ |
2098 | echo "#include \"$$f\""; \ | |
0d24f4d1 | 2099 | done | sed 's|$(srcdir)/||' > tmp-specs.h |
88e3a2a3 | 2100 | $(SHELL) $(srcdir)/../move-if-change tmp-specs.h specs.h |
0d24f4d1 ZW |
2101 | $(STAMP) s-specs |
2102 | ||
776dc15d | 2103 | optionlist: s-options ; @true |
75685792 RS |
2104 | s-options: $(ALL_OPT_FILES) Makefile $(srcdir)/opt-gather.awk |
2105 | $(AWK) -f $(srcdir)/opt-gather.awk $(ALL_OPT_FILES) > tmp-optionlist | |
776dc15d | 2106 | $(SHELL) $(srcdir)/../move-if-change tmp-optionlist optionlist |
469ef4a3 ILT |
2107 | $(STAMP) s-options |
2108 | ||
86fa5de4 JM |
2109 | options.c: optionlist $(srcdir)/opt-functions.awk $(srcdir)/opt-read.awk \ |
2110 | $(srcdir)/optc-gen.awk | |
2111 | $(AWK) -f $(srcdir)/opt-functions.awk -f $(srcdir)/opt-read.awk \ | |
2112 | -f $(srcdir)/optc-gen.awk \ | |
6be4d3ac | 2113 | -v header_name="config.h system.h coretypes.h options.h tm.h" < $< > $@ |
776dc15d | 2114 | |
57dfdff0 JM |
2115 | options-save.c: optionlist $(srcdir)/opt-functions.awk $(srcdir)/opt-read.awk \ |
2116 | $(srcdir)/optc-save-gen.awk | |
2117 | $(AWK) -f $(srcdir)/opt-functions.awk -f $(srcdir)/opt-read.awk \ | |
2118 | -f $(srcdir)/optc-save-gen.awk \ | |
2119 | -v header_name="config.h system.h coretypes.h tm.h" < $< > $@ | |
2120 | ||
75685792 | 2121 | options.h: s-options-h ; @true |
86fa5de4 JM |
2122 | s-options-h: optionlist $(srcdir)/opt-functions.awk $(srcdir)/opt-read.awk \ |
2123 | $(srcdir)/opth-gen.awk | |
2124 | $(AWK) -f $(srcdir)/opt-functions.awk -f $(srcdir)/opt-read.awk \ | |
2125 | -f $(srcdir)/opth-gen.awk \ | |
75685792 RS |
2126 | < $< > tmp-options.h |
2127 | $(SHELL) $(srcdir)/../move-if-change tmp-options.h options.h | |
2128 | $(STAMP) $@ | |
776dc15d | 2129 | |
79d8453e RS |
2130 | dumpvers: dumpvers.c |
2131 | ||
c5bc3df6 | 2132 | CFLAGS-version.o += -DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \ |
e980df8e TT |
2133 | -DREVISION=$(REVISION_s) \ |
2134 | -DDEVPHASE=$(DEVPHASE_s) -DPKGVERSION=$(PKGVERSION_s) \ | |
c5bc3df6 | 2135 | -DBUGURL=$(BUGURL_s) |
609458ae | 2136 | version.o: $(REVISION) $(DATESTAMP) $(BASEVER) $(DEVPHASE) |
e980df8e | 2137 | |
d7f09764 | 2138 | # lto-compress.o needs $(ZLIBINC) added to the include flags. |
c5bc3df6 | 2139 | CFLAGS-lto-compress.o += $(ZLIBINC) |
e980df8e | 2140 | |
134ef638 BE |
2141 | bversion.h: s-bversion; @true |
2142 | s-bversion: BASE-VER | |
2143 | echo "#define BUILDING_GCC_MAJOR `echo $(BASEVER_c) | sed -e 's/^\([0-9]*\).*$$/\1/'`" > bversion.h | |
2144 | echo "#define BUILDING_GCC_MINOR `echo $(BASEVER_c) | sed -e 's/^[0-9]*\.\([0-9]*\).*$$/\1/'`" >> bversion.h | |
2145 | echo "#define BUILDING_GCC_PATCHLEVEL `echo $(BASEVER_c) | sed -e 's/^[0-9]*\.[0-9]*\.\([0-9]*\)$$/\1/'`" >> bversion.h | |
2146 | echo "#define BUILDING_GCC_VERSION (BUILDING_GCC_MAJOR * 1000 + BUILDING_GCC_MINOR)" >> bversion.h | |
2147 | $(STAMP) s-bversion | |
2148 | ||
c5bc3df6 | 2149 | CFLAGS-toplev.o += -DTARGET_NAME=\"$(target_noncanonical)\" |
c59ffc41 | 2150 | |
a167b052 DM |
2151 | pass-instances.def: $(srcdir)/passes.def $(srcdir)/gen-pass-instances.awk |
2152 | $(AWK) -f $(srcdir)/gen-pass-instances.awk \ | |
2153 | $(srcdir)/passes.def > pass-instances.def | |
2154 | ||
aefc31a1 TT |
2155 | $(out_object_file): $(out_file) |
2156 | $(COMPILE) $< | |
2157 | $(POSTCOMPILE) | |
e980df8e | 2158 | |
b6541edc TT |
2159 | $(common_out_object_file): $(common_out_file) |
2160 | $(COMPILE) $< | |
2161 | $(POSTCOMPILE) | |
544eb21e | 2162 | #\f |
4c457b6b | 2163 | # Generate header and source files from the machine description, |
79d8453e RS |
2164 | # and compile them. |
2165 | ||
1b0c37d7 | 2166 | .PRECIOUS: insn-config.h insn-flags.h insn-codes.h insn-constants.h \ |
79d8453e | 2167 | insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \ |
41723253 | 2168 | insn-attr.h insn-attr-common.h insn-attrtab.c insn-dfatab.c \ |
4bccb39e RS |
2169 | insn-latencytab.c insn-preds.c gimple-match.c generic-match.c \ |
2170 | insn-target-def.h | |
79d8453e | 2171 | |
26be549a RH |
2172 | # Dependencies for the md file. The first time through, we just assume |
2173 | # the md file itself and the generated dependency file (in order to get | |
2174 | # it built). The second time through we have the dependency file. | |
2175 | -include mddeps.mk | |
2176 | MD_DEPS = s-mddeps $(md_file) $(MD_INCLUDES) | |
2177 | ||
2178 | s-mddeps: $(md_file) $(MD_INCLUDES) build/genmddeps$(build_exeext) | |
2179 | $(RUN_GEN) build/genmddeps$(build_exeext) $(md_file) > tmp-mddeps | |
2180 | $(SHELL) $(srcdir)/../move-if-change tmp-mddeps mddeps.mk | |
2181 | $(STAMP) s-mddeps | |
2182 | ||
cbbbdc2c | 2183 | # For each of the files generated by running a generator program over |
9b68b6ea RS |
2184 | # the machine description, the following static pattern rules run the |
2185 | # generator program only if the machine description has changed, | |
2186 | # but touch the target file only when its contents actually change. | |
2187 | # The "; @true" construct forces Make to recheck the timestamp on | |
2188 | # the target file. | |
cbbbdc2c | 2189 | |
88a00ef7 | 2190 | simple_rtl_generated_h = insn-attr.h insn-attr-common.h insn-codes.h \ |
4bccb39e | 2191 | insn-config.h insn-flags.h insn-target-def.h |
cbbbdc2c | 2192 | |
41723253 | 2193 | simple_rtl_generated_c = insn-automata.c insn-emit.c \ |
cd1440b1 | 2194 | insn-extract.c insn-output.c \ |
9b68b6ea RS |
2195 | insn-peep.c insn-recog.c |
2196 | ||
2197 | simple_generated_h = $(simple_rtl_generated_h) insn-constants.h | |
2198 | ||
0fe60a1b | 2199 | simple_generated_c = $(simple_rtl_generated_c) insn-enums.c |
9b68b6ea RS |
2200 | |
2201 | $(simple_generated_h:insn-%.h=s-%) \ | |
2202 | $(simple_generated_c:insn-%.c=s-%): s-%: $(MD_DEPS) | |
2203 | ||
2204 | $(simple_rtl_generated_h:insn-%.h=s-%) \ | |
2205 | $(simple_rtl_generated_c:insn-%.c=s-%): s-%: insn-conditions.md | |
cbbbdc2c ZW |
2206 | |
2207 | $(simple_generated_h): insn-%.h: s-%; @true | |
2208 | ||
9b68b6ea | 2209 | $(simple_generated_h:insn-%.h=s-%): s-%: build/gen%$(build_exeext) |
1c7352cd | 2210 | $(RUN_GEN) build/gen$*$(build_exeext) $(md_file) \ |
9b68b6ea | 2211 | $(filter insn-conditions.md,$^) > tmp-$*.h |
cbbbdc2c ZW |
2212 | $(SHELL) $(srcdir)/../move-if-change tmp-$*.h insn-$*.h |
2213 | $(STAMP) s-$* | |
2214 | ||
2215 | $(simple_generated_c): insn-%.c: s-%; @true | |
9b68b6ea | 2216 | $(simple_generated_c:insn-%.c=s-%): s-%: build/gen%$(build_exeext) |
1c7352cd | 2217 | $(RUN_GEN) build/gen$*$(build_exeext) $(md_file) \ |
9b68b6ea | 2218 | $(filter insn-conditions.md,$^) > tmp-$*.c |
cbbbdc2c ZW |
2219 | $(SHELL) $(srcdir)/../move-if-change tmp-$*.c insn-$*.c |
2220 | $(STAMP) s-$* | |
2221 | ||
2222 | # gencheck doesn't read the machine description, and the file produced | |
2223 | # doesn't use the insn-* convention. | |
2224 | tree-check.h: s-check ; @true | |
2225 | s-check : build/gencheck$(build_exeext) | |
2226 | $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h | |
2227 | $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h | |
2228 | $(STAMP) s-check | |
2199e5fa | 2229 | |
41723253 SB |
2230 | # genattrtab produces three files: tmp-{attrtab.c,dfatab.c,latencytab.c} |
2231 | insn-attrtab.c insn-dfatab.c insn-latencytab.c: s-attrtab ; @true | |
2232 | s-attrtab : $(MD_DEPS) build/genattrtab$(build_exeext) \ | |
2233 | insn-conditions.md | |
2234 | $(RUN_GEN) build/genattrtab$(build_exeext) $(md_file) insn-conditions.md \ | |
2235 | -Atmp-attrtab.c -Dtmp-dfatab.c -Ltmp-latencytab.c | |
2236 | $(SHELL) $(srcdir)/../move-if-change tmp-attrtab.c insn-attrtab.c | |
2237 | $(SHELL) $(srcdir)/../move-if-change tmp-dfatab.c insn-dfatab.c | |
2238 | $(SHELL) $(srcdir)/../move-if-change tmp-latencytab.c insn-latencytab.c | |
2239 | $(STAMP) s-attrtab | |
2240 | ||
cd1440b1 RH |
2241 | # genopinit produces two files. |
2242 | insn-opinit.c insn-opinit.h: s-opinit ; @true | |
2243 | s-opinit: $(MD_DEPS) build/genopinit$(build_exeext) insn-conditions.md | |
2244 | $(RUN_GEN) build/genopinit$(build_exeext) $(md_file) \ | |
2245 | insn-conditions.md -htmp-opinit.h -ctmp-opinit.c | |
2246 | $(SHELL) $(srcdir)/../move-if-change tmp-opinit.h insn-opinit.h | |
2247 | $(SHELL) $(srcdir)/../move-if-change tmp-opinit.c insn-opinit.c | |
2248 | $(STAMP) s-opinit | |
2249 | ||
1c7352cd | 2250 | # gencondmd doesn't use the standard naming convention. |
e980df8e | 2251 | build/gencondmd.c: s-conditions; @true |
1c7352cd ZW |
2252 | s-conditions: $(MD_DEPS) build/genconditions$(build_exeext) |
2253 | $(RUN_GEN) build/genconditions$(build_exeext) $(md_file) > tmp-condmd.c | |
e980df8e | 2254 | $(SHELL) $(srcdir)/../move-if-change tmp-condmd.c build/gencondmd.c |
1c7352cd ZW |
2255 | $(STAMP) s-conditions |
2256 | ||
2257 | insn-conditions.md: s-condmd; @true | |
2258 | s-condmd: build/gencondmd$(build_exeext) | |
2259 | $(RUN_GEN) build/gencondmd$(build_exeext) > tmp-cond.md | |
2260 | $(SHELL) $(srcdir)/../move-if-change tmp-cond.md insn-conditions.md | |
2261 | $(STAMP) s-condmd | |
2262 | ||
2263 | ||
cbbbdc2c ZW |
2264 | # These files are generated by running the same generator more than |
2265 | # once with different options, so they have custom rules. The | |
2266 | # stampfile idiom is the same. | |
cbbbdc2c | 2267 | genrtl.h: s-genrtl-h; @true |
2199e5fa | 2268 | |
cbbbdc2c | 2269 | s-genrtl-h: build/gengenrtl$(build_exeext) |
6ac9d3a3 | 2270 | $(RUN_GEN) build/gengenrtl$(build_exeext) > tmp-genrtl.h |
cbbbdc2c ZW |
2271 | $(SHELL) $(srcdir)/../move-if-change tmp-genrtl.h genrtl.h |
2272 | $(STAMP) s-genrtl-h | |
2273 | ||
2274 | insn-modes.c: s-modes; @true | |
2275 | insn-modes.h: s-modes-h; @true | |
2276 | min-insn-modes.c: s-modes-m; @true | |
0974c7d7 | 2277 | |
3b620440 | 2278 | s-modes: build/genmodes$(build_exeext) |
cbbbdc2c ZW |
2279 | $(RUN_GEN) build/genmodes$(build_exeext) > tmp-modes.c |
2280 | $(SHELL) $(srcdir)/../move-if-change tmp-modes.c insn-modes.c | |
2281 | $(STAMP) s-modes | |
2282 | ||
2283 | s-modes-h: build/genmodes$(build_exeext) | |
3b620440 | 2284 | $(RUN_GEN) build/genmodes$(build_exeext) -h > tmp-modes.h |
88e3a2a3 | 2285 | $(SHELL) $(srcdir)/../move-if-change tmp-modes.h insn-modes.h |
cbbbdc2c ZW |
2286 | $(STAMP) s-modes-h |
2287 | ||
2288 | s-modes-m: build/genmodes$(build_exeext) | |
3b620440 | 2289 | $(RUN_GEN) build/genmodes$(build_exeext) -m > tmp-min-modes.c |
88e3a2a3 | 2290 | $(SHELL) $(srcdir)/../move-if-change tmp-min-modes.c min-insn-modes.c |
cbbbdc2c | 2291 | $(STAMP) s-modes-m |
0974c7d7 | 2292 | |
cbbbdc2c ZW |
2293 | insn-preds.c: s-preds; @true |
2294 | tm-preds.h: s-preds-h; @true | |
279bb624 | 2295 | tm-constrs.h: s-constrs-h; @true |
1b0c37d7 | 2296 | |
4a0639a2 MZ |
2297 | .PHONY: mddump |
2298 | mddump: $(BUILD_RTL) $(MD_DEPS) build/genmddump$(build_exeext) | |
2299 | $(RUN_GEN) build/genmddump$(build_exeext) $(md_file) > tmp-mddump.md | |
2300 | ||
26be549a | 2301 | s-preds: $(MD_DEPS) build/genpreds$(build_exeext) |
3b620440 | 2302 | $(RUN_GEN) build/genpreds$(build_exeext) $(md_file) > tmp-preds.c |
e543e219 | 2303 | $(SHELL) $(srcdir)/../move-if-change tmp-preds.c insn-preds.c |
1b0c37d7 ZW |
2304 | $(STAMP) s-preds |
2305 | ||
cbbbdc2c ZW |
2306 | s-preds-h: $(MD_DEPS) build/genpreds$(build_exeext) |
2307 | $(RUN_GEN) build/genpreds$(build_exeext) -h $(md_file) > tmp-preds.h | |
2308 | $(SHELL) $(srcdir)/../move-if-change tmp-preds.h tm-preds.h | |
2309 | $(STAMP) s-preds-h | |
e543e219 | 2310 | |
279bb624 DE |
2311 | s-constrs-h: $(MD_DEPS) build/genpreds$(build_exeext) |
2312 | $(RUN_GEN) build/genpreds$(build_exeext) -c $(md_file) > tmp-constrs.h | |
2313 | $(SHELL) $(srcdir)/../move-if-change tmp-constrs.h tm-constrs.h | |
2314 | $(STAMP) s-constrs-h | |
2315 | ||
6bac43d7 RS |
2316 | s-case-cfn-macros: build/gencfn-macros$(build_exeext) |
2317 | $(RUN_GEN) build/gencfn-macros$(build_exeext) -c \ | |
2318 | > tmp-case-cfn-macros.h | |
2319 | $(SHELL) $(srcdir)/../move-if-change tmp-case-cfn-macros.h \ | |
2320 | case-cfn-macros.h | |
2321 | $(STAMP) s-case-cfn-macros | |
2322 | case-cfn-macros.h: s-case-cfn-macros; @true | |
2323 | ||
b1dc4a20 RS |
2324 | s-cfn-operators: build/gencfn-macros$(build_exeext) |
2325 | $(RUN_GEN) build/gencfn-macros$(build_exeext) -o \ | |
2326 | > tmp-cfn-operators.pd | |
2327 | $(SHELL) $(srcdir)/../move-if-change tmp-cfn-operators.pd \ | |
2328 | cfn-operators.pd | |
2329 | $(STAMP) s-cfn-operators | |
2330 | cfn-operators.pd: s-cfn-operators; @true | |
2331 | ||
38f8b050 | 2332 | target-hooks-def.h: s-target-hooks-def-h; @true |
c18a9bc4 JR |
2333 | # make sure that when we build info files, the used tm.texi is up to date. |
2334 | $(srcdir)/doc/tm.texi: s-tm-texi; @true | |
38f8b050 JR |
2335 | |
2336 | s-target-hooks-def-h: build/genhooks$(build_exeext) | |
acce4e77 JM |
2337 | $(RUN_GEN) build/genhooks$(build_exeext) "Target Hook" \ |
2338 | > tmp-target-hooks-def.h | |
38f8b050 JR |
2339 | $(SHELL) $(srcdir)/../move-if-change tmp-target-hooks-def.h \ |
2340 | target-hooks-def.h | |
2341 | $(STAMP) s-target-hooks-def-h | |
2342 | ||
acce4e77 JM |
2343 | c-family/c-target-hooks-def.h: s-c-target-hooks-def-h; @true |
2344 | ||
2345 | s-c-target-hooks-def-h: build/genhooks$(build_exeext) | |
2346 | $(RUN_GEN) build/genhooks$(build_exeext) "C Target Hook" \ | |
2347 | > tmp-c-target-hooks-def.h | |
2348 | $(SHELL) $(srcdir)/../move-if-change tmp-c-target-hooks-def.h \ | |
2349 | c-family/c-target-hooks-def.h | |
2350 | $(STAMP) s-c-target-hooks-def-h | |
2351 | ||
c49a6962 JM |
2352 | common/common-target-hooks-def.h: s-common-target-hooks-def-h; @true |
2353 | ||
2354 | s-common-target-hooks-def-h: build/genhooks$(build_exeext) | |
2355 | $(RUN_GEN) build/genhooks$(build_exeext) "Common Target Hook" \ | |
2356 | > tmp-common-target-hooks-def.h | |
2357 | $(SHELL) $(srcdir)/../move-if-change tmp-common-target-hooks-def.h \ | |
2358 | common/common-target-hooks-def.h | |
2359 | $(STAMP) s-common-target-hooks-def-h | |
2360 | ||
38f8b050 | 2361 | # check if someone mistakenly only changed tm.texi. |
c18a9bc4 JR |
2362 | # We use a different pathname here to avoid a circular dependency. |
2363 | s-tm-texi: $(srcdir)/doc/../doc/tm.texi | |
e82a40fc | 2364 | |
459d4972 JR |
2365 | # The tm.texi we want to compare against / check into svn should have |
2366 | # unix-style line endings. To make this work on MinGW, remove \r. | |
2367 | # \r is not portable to Solaris tr, therefore we have a special | |
2368 | # case for ASCII. We use \r for other encodings like EBCDIC. | |
38f8b050 | 2369 | s-tm-texi: build/genhooks$(build_exeext) $(srcdir)/doc/tm.texi.in |
acce4e77 | 2370 | $(RUN_GEN) build/genhooks$(build_exeext) -d \ |
38f8b050 | 2371 | $(srcdir)/doc/tm.texi.in > tmp-tm.texi |
459d4972 JR |
2372 | case `echo X|tr X '\101'` in \ |
2373 | A) tr -d '\015' < tmp-tm.texi > tmp2-tm.texi ;; \ | |
93b39277 | 2374 | *) tr -d '\r' < tmp-tm.texi > tmp2-tm.texi ;; \ |
459d4972 JR |
2375 | esac |
2376 | mv tmp2-tm.texi tmp-tm.texi | |
38f8b050 JR |
2377 | $(SHELL) $(srcdir)/../move-if-change tmp-tm.texi tm.texi |
2378 | @if cmp -s $(srcdir)/doc/tm.texi tm.texi; then \ | |
2379 | $(STAMP) $@; \ | |
2380 | elif test $(srcdir)/doc/tm.texi -nt $(srcdir)/doc/tm.texi.in \ | |
acce4e77 JM |
2381 | && ( test $(srcdir)/doc/tm.texi -nt $(srcdir)/target.def \ |
2382 | || test $(srcdir)/doc/tm.texi -nt $(srcdir)/c-family/c-target.def \ | |
c49a6962 | 2383 | || test $(srcdir)/doc/tm.texi -nt $(srcdir)/common/common-target.def \ |
acce4e77 | 2384 | ); then \ |
38f8b050 JR |
2385 | echo >&2 ; \ |
2386 | echo You should edit $(srcdir)/doc/tm.texi.in rather than $(srcdir)/doc/tm.texi . >&2 ; \ | |
2387 | false; \ | |
2388 | else \ | |
2389 | echo >&2 ; \ | |
2390 | echo Verify that you have permission to grant a GFDL license for all >&2 ; \ | |
2391 | echo new text in tm.texi, then copy it to $(srcdir)/doc/tm.texi. >&2 ; \ | |
2392 | false; \ | |
2393 | fi | |
2394 | ||
3d2cf79f RB |
2395 | gimple-match.c: s-match gimple-match-head.c ; @true |
2396 | generic-match.c: s-match generic-match-head.c ; @true | |
2397 | ||
b1dc4a20 | 2398 | s-match: build/genmatch$(build_exeext) $(srcdir)/match.pd cfn-operators.pd |
3d2cf79f RB |
2399 | $(RUN_GEN) build/genmatch$(build_exeext) --gimple $(srcdir)/match.pd \ |
2400 | > tmp-gimple-match.c | |
2401 | $(RUN_GEN) build/genmatch$(build_exeext) --generic $(srcdir)/match.pd \ | |
2402 | > tmp-generic-match.c | |
2403 | $(SHELL) $(srcdir)/../move-if-change tmp-gimple-match.c \ | |
2404 | gimple-match.c | |
2405 | $(SHELL) $(srcdir)/../move-if-change tmp-generic-match.c \ | |
2406 | generic-match.c | |
2407 | $(STAMP) s-match | |
2408 | ||
2d593c86 TT |
2409 | GTFILES = $(CPP_ID_DATA_H) $(srcdir)/input.h $(srcdir)/coretypes.h \ |
2410 | $(host_xm_file_list) \ | |
4f4e53dd | 2411 | $(tm_file_list) $(HASHTAB_H) $(SPLAY_TREE_H) $(srcdir)/bitmap.h \ |
1478c897 RB |
2412 | $(srcdir)/wide-int.h $(srcdir)/alias.h $(srcdir)/cilk.h \ |
2413 | $(srcdir)/cilk-common.c $(srcdir)/coverage.c $(srcdir)/rtl.h \ | |
5e351e96 DN |
2414 | $(srcdir)/optabs.h $(srcdir)/tree.h $(srcdir)/tree-core.h \ |
2415 | $(srcdir)/libfuncs.h $(SYMTAB_H) \ | |
69c32ec8 | 2416 | $(srcdir)/real.h $(srcdir)/function.h $(srcdir)/insn-addr.h $(srcdir)/hwint.h \ |
1e1ba002 | 2417 | $(srcdir)/fixed-value.h \ |
60393bbc | 2418 | $(srcdir)/output.h $(srcdir)/cfgloop.h $(srcdir)/cfg.h \ |
369451ec | 2419 | $(srcdir)/cselib.h $(srcdir)/basic-block.h $(srcdir)/ipa-ref.h $(srcdir)/cgraph.h \ |
1ab24192 | 2420 | $(srcdir)/reload.h $(srcdir)/caller-save.c $(srcdir)/symtab.c \ |
988d1653 | 2421 | $(srcdir)/alias.c $(srcdir)/bitmap.c $(srcdir)/cselib.c $(srcdir)/cgraph.c \ |
eefe9a99 | 2422 | $(srcdir)/ipa-prop.c $(srcdir)/ipa-cp.c $(srcdir)/ipa-utils.h \ |
647a1567 | 2423 | $(srcdir)/dbxout.c \ |
807e902e | 2424 | $(srcdir)/signop.h \ |
647a1567 RH |
2425 | $(srcdir)/dwarf2out.h \ |
2426 | $(srcdir)/dwarf2asm.c \ | |
2427 | $(srcdir)/dwarf2cfi.c \ | |
2428 | $(srcdir)/dwarf2out.c \ | |
726a989a | 2429 | $(srcdir)/tree-vect-generic.c \ |
2bb8cb58 | 2430 | $(srcdir)/dojump.c $(srcdir)/emit-rtl.h \ |
9994a182 | 2431 | $(srcdir)/emit-rtl.c $(srcdir)/except.h $(srcdir)/explow.c $(srcdir)/expr.c \ |
aa331cc5 | 2432 | $(srcdir)/expr.h \ |
9994a182 | 2433 | $(srcdir)/function.c $(srcdir)/except.c \ |
8c4294b2 | 2434 | $(srcdir)/ggc-tests.c \ |
c6a13190 | 2435 | $(srcdir)/gcse.c $(srcdir)/godump.c \ |
385399a8 | 2436 | $(srcdir)/lists.c $(srcdir)/optabs-libfuncs.c \ |
360d045b | 2437 | $(srcdir)/profile.c $(srcdir)/mcf.c \ |
78bde837 | 2438 | $(srcdir)/reg-stack.c $(srcdir)/cfgrtl.c \ |
7efcb746 | 2439 | $(srcdir)/sdbout.c $(srcdir)/stor-layout.c \ |
8a89dbd2 | 2440 | $(srcdir)/stringpool.c $(srcdir)/tree.c $(srcdir)/varasm.c \ |
83fd5d11 | 2441 | $(srcdir)/gimple.h \ |
98906124 | 2442 | $(srcdir)/gimple-ssa.h \ |
d5e254e1 | 2443 | $(srcdir)/tree-chkp.c \ |
ac182688 | 2444 | $(srcdir)/tree-ssanames.c $(srcdir)/tree-eh.c $(srcdir)/tree-ssa-address.c \ |
726a989a RB |
2445 | $(srcdir)/tree-cfg.c \ |
2446 | $(srcdir)/tree-dfa.c \ | |
45b0be94 | 2447 | $(srcdir)/tree-iterator.c $(srcdir)/gimple-expr.c \ |
726a989a RB |
2448 | $(srcdir)/tree-chrec.h \ |
2449 | $(srcdir)/tree-scalar-evolution.c \ | |
456cde30 | 2450 | $(srcdir)/tree-ssa-operands.h \ |
8a76829c | 2451 | $(srcdir)/tree-profile.c $(srcdir)/tree-nested.c \ |
726a989a | 2452 | $(srcdir)/omp-low.c \ |
ec6fe917 | 2453 | $(srcdir)/omp-low.h \ |
7be82279 | 2454 | $(srcdir)/targhooks.c $(out_file) $(srcdir)/passes.c $(srcdir)/cgraphunit.c \ |
66a20fc2 | 2455 | $(srcdir)/cgraphclones.c \ |
726a989a | 2456 | $(srcdir)/tree-phinodes.c \ |
5006671f | 2457 | $(srcdir)/tree-ssa-alias.h \ |
b12ebd96 | 2458 | $(srcdir)/tree-ssanames.h \ |
f90aa46c | 2459 | $(srcdir)/tree-vrp.h \ |
fb3f88cc | 2460 | $(srcdir)/ipa-prop.h \ |
0a35513e | 2461 | $(srcdir)/trans-mem.c \ |
49ba8180 | 2462 | $(srcdir)/lto-streamer.h \ |
3bd36029 | 2463 | $(srcdir)/target-globals.h \ |
632b4f8e | 2464 | $(srcdir)/ipa-inline.h \ |
2077db1b | 2465 | $(srcdir)/vtable-verify.c \ |
f6d98484 | 2466 | $(srcdir)/asan.c \ |
de5a5fa1 | 2467 | $(srcdir)/ubsan.c \ |
b78475cf | 2468 | $(srcdir)/tsan.c \ |
06cefae9 | 2469 | $(srcdir)/sanopt.c \ |
95e7bbb8 | 2470 | $(srcdir)/sancov.c \ |
b78475cf YG |
2471 | $(srcdir)/ipa-devirt.c \ |
2472 | $(srcdir)/internal-fn.h \ | |
b2b40051 | 2473 | $(srcdir)/hsa.c \ |
e2500fed GK |
2474 | @all_gtfiles@ |
2475 | ||
8de8de02 OH |
2476 | # Compute the list of GT header files from the corresponding C sources, |
2477 | # possibly nested within config or language subdirectories. Match gengtype's | |
2478 | # behavior in this respect: gt-LANG-file.h for "file" anywhere within a LANG | |
2479 | # language subdir, gt-file.h otherwise (no subdir indication for config/ | |
2480 | # related sources). | |
2481 | ||
2482 | GTFILES_H = $(subst /,-, \ | |
2483 | $(shell echo $(patsubst $(srcdir)/%,gt-%, \ | |
2484 | $(patsubst %.c,%.h, \ | |
2485 | $(filter %.c, $(GTFILES)))) \ | |
5cff8550 | 2486 | | sed -e "s|/[^ ]*/|/|g" -e "s|gt-config/|gt-|g")) |
11a67599 ZW |
2487 | |
2488 | GTFILES_LANG_H = $(patsubst [%], gtype-%.h, $(filter [%], $(GTFILES))) | |
2489 | ALL_GTFILES_H := $(sort $(GTFILES_H) $(GTFILES_LANG_H)) | |
2490 | ||
2491 | # $(GTFILES) may be too long to put on a command line, so we have to | |
2492 | # write it out to a file (taking care not to do that in a way that | |
2493 | # overflows a command line!) and then have gengtype read the file in. | |
2f035a33 | 2494 | |
f142b5bc | 2495 | $(ALL_GTFILES_H) gtype-desc.c gtype-desc.h gtype.state: s-gtype ; @true |
11a67599 | 2496 | |
92724e1d BS |
2497 | ### Common flags to gengtype [e.g. -v or -B backupdir] |
2498 | GENGTYPE_FLAGS= | |
2499 | ||
11a67599 ZW |
2500 | gtyp-input.list: s-gtyp-input ; @true |
2501 | s-gtyp-input: Makefile | |
a4e4a2d6 | 2502 | @: $(call write_entries_to_file,$(GTFILES),tmp-gi.list) |
11a67599 ZW |
2503 | $(SHELL) $(srcdir)/../move-if-change tmp-gi.list gtyp-input.list |
2504 | $(STAMP) s-gtyp-input | |
2505 | ||
2506 | s-gtype: build/gengtype$(build_exeext) $(filter-out [%], $(GTFILES)) \ | |
2507 | gtyp-input.list | |
92724e1d BS |
2508 | # First, parse all files and save a state file. |
2509 | $(RUN_GEN) build/gengtype$(build_exeext) $(GENGTYPE_FLAGS) \ | |
f142b5bc | 2510 | -S $(srcdir) -I gtyp-input.list -w tmp-gtype.state |
92724e1d BS |
2511 | # Second, read the state file and generate all files. This ensure that |
2512 | # gtype.state is correctly read: | |
f142b5bc | 2513 | $(SHELL) $(srcdir)/../move-if-change tmp-gtype.state gtype.state |
92724e1d BS |
2514 | $(RUN_GEN) build/gengtype$(build_exeext) $(GENGTYPE_FLAGS) \ |
2515 | -r gtype.state | |
e2500fed GK |
2516 | $(STAMP) s-gtype |
2517 | ||
39dabefd SB |
2518 | generated_files = config.h tm.h $(TM_P_H) $(TM_H) multilib.h \ |
2519 | $(simple_generated_h) specs.h \ | |
2520 | tree-check.h genrtl.h insn-modes.h tm-preds.h tm-constrs.h \ | |
d2db5e91 TT |
2521 | $(ALL_GTFILES_H) gtype-desc.c gtype-desc.h gcov-iov.h \ |
2522 | options.h target-hooks-def.h insn-opinit.h \ | |
2523 | common/common-target-hooks-def.h pass-instances.def \ | |
f507d202 | 2524 | c-family/c-target-hooks-def.h params.list params.options case-cfn-macros.h \ |
b1dc4a20 | 2525 | cfn-operators.pd |
39dabefd | 2526 | |
544eb21e | 2527 | #\f |
cbbbdc2c | 2528 | # How to compile object files to run on the build machine. |
4b09846b | 2529 | |
e980df8e | 2530 | build/%.o : # dependencies provided by explicit rule later |
7980bfb8 ILT |
2531 | $(COMPILER_FOR_BUILD) -c $(BUILD_COMPILERFLAGS) $(BUILD_CPPFLAGS) \ |
2532 | -o $@ $< | |
e980df8e | 2533 | |
f8ed6dc5 JS |
2534 | ## build/version.o is compiled by the $(COMPILER_FOR_BUILD) but needs |
2535 | ## several C macro definitions, just like version.o | |
2536 | build/version.o: version.c version.h \ | |
2537 | $(REVISION) $(DATESTAMP) $(BASEVER) $(DEVPHASE) | |
2538 | $(COMPILER_FOR_BUILD) -c $(BUILD_COMPILERFLAGS) $(BUILD_CPPFLAGS) \ | |
2539 | -DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \ | |
2540 | -DREVISION=$(REVISION_s) \ | |
2541 | -DDEVPHASE=$(DEVPHASE_s) -DPKGVERSION=$(PKGVERSION_s) \ | |
2542 | -DBUGURL=$(BUGURL_s) -o $@ $< | |
2543 | ||
e980df8e TT |
2544 | # Header dependencies for the programs that generate source code. |
2545 | # These are library modules... | |
2546 | build/errors.o : errors.c $(BCONFIG_H) $(SYSTEM_H) errors.h | |
2547 | build/gensupport.o: gensupport.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \ | |
2548 | $(GTM_H) $(RTL_BASE_H) $(OBSTACK_H) errors.h $(HASHTAB_H) \ | |
886456e2 | 2549 | $(READ_MD_H) $(GENSUPPORT_H) |
e980df8e TT |
2550 | build/ggc-none.o : ggc-none.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \ |
2551 | $(GGC_H) | |
2552 | build/min-insn-modes.o : min-insn-modes.c $(BCONFIG_H) $(SYSTEM_H) \ | |
2553 | $(MACHMODE_H) | |
2554 | build/print-rtl.o: print-rtl.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \ | |
2555 | $(GTM_H) $(RTL_BASE_H) | |
10692477 | 2556 | build/read-md.o: read-md.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \ |
bb933490 | 2557 | $(HASHTAB_H) errors.h $(READ_MD_H) |
e980df8e | 2558 | build/read-rtl.o: read-rtl.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \ |
10692477 | 2559 | $(GTM_H) $(RTL_BASE_H) $(OBSTACK_H) $(HASHTAB_H) $(READ_MD_H) \ |
886456e2 | 2560 | $(GENSUPPORT_H) |
e980df8e | 2561 | build/rtl.o: rtl.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) \ |
40013784 | 2562 | $(RTL_H) $(GGC_H) errors.h |
3e097227 | 2563 | build/vec.o : vec.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(VEC_H) \ |
7c475d11 | 2564 | $(GGC_H) toplev.h $(DIAGNOSTIC_CORE_H) |
3d2cf79f RB |
2565 | build/hash-table.o : hash-table.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \ |
2566 | $(HASH_TABLE_H) $(GGC_H) toplev.h $(DIAGNOSTIC_CORE_H) | |
34ba5aff RS |
2567 | build/inchash.o : inchash.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \ |
2568 | $(HASHTAB_H) inchash.h | |
e980df8e | 2569 | build/gencondmd.o : build/gencondmd.c $(BCONFIG_H) $(SYSTEM_H) \ |
f9897dfa L |
2570 | coretypes.h $(GTM_H) insn-constants.h \ |
2571 | $(filter-out insn-flags.h, $(RTL_H) $(TM_P_H) $(FUNCTION_H) $(REGS_H) \ | |
7c475d11 | 2572 | $(RECOG_H) output.h $(FLAGS_H) $(RESOURCE_H) toplev.h $(DIAGNOSTIC_CORE_H) reload.h \ |
f9897dfa | 2573 | $(EXCEPT_H) tm-constrs.h) |
0b50988a EB |
2574 | # This pulls in tm-pred.h which contains inline functions wrapping up |
2575 | # predicates from the back-end so those functions must be discarded. | |
2576 | # No big deal since gencondmd.c is a dummy file for non-GCC compilers. | |
2577 | build/gencondmd.o : \ | |
2578 | BUILD_CFLAGS := $(filter-out -fkeep-inline-functions, $(BUILD_CFLAGS)) | |
4977bab6 | 2579 | |
e980df8e TT |
2580 | # ...these are the programs themselves. |
2581 | build/genattr.o : genattr.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ | |
886456e2 | 2582 | coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) |
88a00ef7 | 2583 | build/genattr-common.o : genattr-common.c $(RTL_BASE_H) $(BCONFIG_H) \ |
886456e2 | 2584 | $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) |
e980df8e TT |
2585 | build/genattrtab.o : genattrtab.c $(RTL_BASE_H) $(OBSTACK_H) \ |
2586 | $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(GGC_H) \ | |
886456e2 | 2587 | $(READ_MD_H) $(GENSUPPORT_H) $(FNMATCH_H) |
e980df8e | 2588 | build/genautomata.o : genautomata.c $(RTL_BASE_H) $(OBSTACK_H) \ |
3e097227 | 2589 | $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(VEC_H) \ |
886456e2 | 2590 | $(HASHTAB_H) $(GENSUPPORT_H) $(FNMATCH_H) |
bfefafc6 | 2591 | build/gencheck.o : gencheck.c all-tree.def $(BCONFIG_H) $(GTM_H) \ |
16fe2c09 JJ |
2592 | $(SYSTEM_H) coretypes.h tree.def c-family/c-common.def \ |
2593 | $(lang_tree_files) gimple.def | |
e980df8e TT |
2594 | build/genchecksum.o : genchecksum.c $(BCONFIG_H) $(SYSTEM_H) $(MD5_H) |
2595 | build/gencodes.o : gencodes.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ | |
886456e2 | 2596 | coretypes.h $(GTM_H) errors.h $(GENSUPPORT_H) |
e980df8e | 2597 | build/genconditions.o : genconditions.c $(RTL_BASE_H) $(BCONFIG_H) \ |
10692477 | 2598 | $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(HASHTAB_H) $(READ_MD_H) \ |
886456e2 | 2599 | $(GENSUPPORT_H) |
e980df8e | 2600 | build/genconfig.o : genconfig.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
886456e2 | 2601 | coretypes.h $(GTM_H) errors.h $(GENSUPPORT_H) |
9b68b6ea RS |
2602 | build/genconstants.o : genconstants.c $(BCONFIG_H) $(SYSTEM_H) \ |
2603 | coretypes.h errors.h $(READ_MD_H) | |
e980df8e | 2604 | build/genemit.o : genemit.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
886456e2 | 2605 | coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) internal-fn.def |
0fe60a1b RS |
2606 | build/genenums.o : genenums.c $(BCONFIG_H) $(SYSTEM_H) \ |
2607 | coretypes.h errors.h $(READ_MD_H) | |
e980df8e | 2608 | build/genextract.o : genextract.c $(RTL_BASE_H) $(BCONFIG_H) \ |
886456e2 | 2609 | $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) |
e980df8e | 2610 | build/genflags.o : genflags.c $(RTL_BASE_H) $(OBSTACK_H) $(BCONFIG_H) \ |
886456e2 | 2611 | $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) |
4bccb39e | 2612 | build/gentarget-def.o : gentarget-def.c $(BCONFIG_H) $(SYSTEM_H) \ |
886456e2 | 2613 | coretypes.h $(GTM_H) $(RTL_BASE_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) \ |
4bccb39e | 2614 | $(HASH_TABLE_H) target-insns.def |
e980df8e | 2615 | build/gengenrtl.o : gengenrtl.c $(BCONFIG_H) $(SYSTEM_H) rtl.def |
4a061351 SB |
2616 | |
2617 | # The gengtype generator program is special: Two versions are built. | |
2618 | # One is for the build machine, and one is for the host to allow | |
2619 | # plugins to define their types and generate the supporting GGC | |
2620 | # datastructures and routines with GTY markers. | |
2621 | # The host object files depend on CONFIG_H, and the build objects | |
2622 | # on BCONFIG_H. For the build objects, add -DGENERATOR_FILE manually, | |
2623 | # the build-%: rule doesn't apply to them. | |
2624 | ||
d6d34aa9 JJ |
2625 | GENGTYPE_OBJS = gengtype.o gengtype-parse.o gengtype-state.o \ |
2626 | gengtype-lex.o errors.o | |
2627 | ||
f142b5bc | 2628 | gengtype-lex.o build/gengtype-lex.o : gengtype-lex.c gengtype.h $(SYSTEM_H) |
d6d34aa9 | 2629 | CFLAGS-gengtype-lex.o += -DHOST_GENERATOR_FILE |
f142b5bc | 2630 | build/gengtype-lex.o: $(BCONFIG_H) |
4a061351 | 2631 | |
f142b5bc | 2632 | gengtype-parse.o build/gengtype-parse.o : gengtype-parse.c gengtype.h \ |
e980df8e | 2633 | $(SYSTEM_H) |
d6d34aa9 | 2634 | CFLAGS-gengtype-parse.o += -DHOST_GENERATOR_FILE |
f142b5bc | 2635 | build/gengtype-parse.o: $(BCONFIG_H) |
4a061351 | 2636 | |
f142b5bc RG |
2637 | gengtype-state.o build/gengtype-state.o: gengtype-state.c $(SYSTEM_H) \ |
2638 | gengtype.h errors.h double-int.h version.h $(HASHTAB_H) $(OBSTACK_H) \ | |
2639 | $(XREGEX_H) | |
d6d34aa9 | 2640 | CFLAGS-gengtype-state.o += -DHOST_GENERATOR_FILE |
f142b5bc RG |
2641 | build/gengtype-state.o: $(BCONFIG_H) |
2642 | gengtype.o build/gengtype.o : gengtype.c $(SYSTEM_H) gengtype.h \ | |
807e902e KZ |
2643 | rtl.def insn-notes.def errors.h double-int.h version.h \ |
2644 | $(HASHTAB_H) $(OBSTACK_H) $(XREGEX_H) | |
d6d34aa9 | 2645 | CFLAGS-gengtype.o += -DHOST_GENERATOR_FILE |
f142b5bc | 2646 | build/gengtype.o: $(BCONFIG_H) |
4a061351 | 2647 | |
d6d34aa9 JJ |
2648 | CFLAGS-errors.o += -DHOST_GENERATOR_FILE |
2649 | ||
e980df8e | 2650 | build/genmddeps.o: genmddeps.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \ |
9b68b6ea | 2651 | errors.h $(READ_MD_H) |
e980df8e TT |
2652 | build/genmodes.o : genmodes.c $(BCONFIG_H) $(SYSTEM_H) errors.h \ |
2653 | $(HASHTAB_H) machmode.def $(extra_modes_file) | |
2654 | build/genopinit.o : genopinit.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ | |
886456e2 | 2655 | coretypes.h $(GTM_H) errors.h $(GENSUPPORT_H) optabs.def |
e980df8e | 2656 | build/genoutput.o : genoutput.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
886456e2 | 2657 | coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) |
e980df8e | 2658 | build/genpeep.o : genpeep.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
886456e2 | 2659 | coretypes.h $(GTM_H) errors.h $(GENSUPPORT_H) toplev.h $(DIAGNOSTIC_CORE_H) |
e980df8e | 2660 | build/genpreds.o : genpreds.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
886456e2 | 2661 | coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) $(OBSTACK_H) |
e980df8e | 2662 | build/genrecog.o : genrecog.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
886456e2 | 2663 | coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) \ |
72d33bd3 | 2664 | $(HASH_TABLE_H) inchash.h |
acce4e77 | 2665 | build/genhooks.o : genhooks.c $(TARGET_DEF) $(C_TARGET_DEF) \ |
c49a6962 | 2666 | $(COMMON_TARGET_DEF) $(BCONFIG_H) $(SYSTEM_H) errors.h |
4a0639a2 | 2667 | build/genmddump.o : genmddump.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
886456e2 | 2668 | coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) |
3d2cf79f | 2669 | build/genmatch.o : genmatch.c $(BCONFIG_H) $(SYSTEM_H) \ |
ed4403c6 | 2670 | coretypes.h errors.h $(HASH_TABLE_H) hash-map.h $(GGC_H) is-a.h \ |
1b212562 | 2671 | tree.def builtins.def internal-fn.def |
6bac43d7 RS |
2672 | build/gencfn-macros.o : gencfn-macros.c $(BCONFIG_H) $(SYSTEM_H) \ |
2673 | coretypes.h errors.h $(HASH_TABLE_H) hash-set.h builtins.def internal-fn.def | |
e980df8e | 2674 | |
cbbbdc2c | 2675 | # Compile the programs that generate insn-* from the machine description. |
7980bfb8 | 2676 | # They are compiled with $(COMPILER_FOR_BUILD), and associated libraries, |
cbbbdc2c ZW |
2677 | # since they need to run on this machine |
2678 | # even if GCC is being compiled to run on some other machine. | |
1b0c37d7 | 2679 | |
9b68b6ea | 2680 | # All these programs use the RTL reader ($(BUILD_RTL)). |
88a00ef7 | 2681 | genprogrtl = attr attr-common attrtab automata codes conditions config emit \ |
4bccb39e | 2682 | extract flags mddump opinit output peep preds recog target-def |
9b68b6ea RS |
2683 | $(genprogrtl:%=build/gen%$(build_exeext)): $(BUILD_RTL) |
2684 | ||
2685 | # All these programs use the MD reader ($(BUILD_MD)). | |
0fe60a1b | 2686 | genprogmd = $(genprogrtl) mddeps constants enums |
9b68b6ea RS |
2687 | $(genprogmd:%=build/gen%$(build_exeext)): $(BUILD_MD) |
2688 | ||
6ddddaed | 2689 | # All these programs need to report errors. |
6bac43d7 | 2690 | genprogerr = $(genprogmd) genrtl modes gtype hooks cfn-macros |
6ddddaed RW |
2691 | $(genprogerr:%=build/gen%$(build_exeext)): $(BUILD_ERRORS) |
2692 | ||
2693 | # Remaining build programs. | |
3d2cf79f | 2694 | genprog = $(genprogerr) check checksum condmd match |
1c7352cd | 2695 | |
0b50988a | 2696 | # These programs need libs over and above what they get from the above list. |
8c94f366 | 2697 | build/genautomata$(build_exeext) : BUILD_LIBS += -lm |
d5706a1e | 2698 | |
72d33bd3 | 2699 | build/genrecog$(build_exeext) : build/hash-table.o build/inchash.o |
6bac43d7 | 2700 | build/gencfn-macros$(build_exeext) : build/hash-table.o build/ggc-none.o |
72d33bd3 | 2701 | |
1f59b315 RB |
2702 | # For stage1 and when cross-compiling use the build libcpp which is |
2703 | # built with NLS disabled. For stage2+ use the host library and | |
2704 | # its dependencies. | |
2705 | ifeq ($(build_objdir),$(build_libobjdir)) | |
2706 | BUILD_CPPLIB = $(build_libobjdir)/libcpp/libcpp.a | |
2707 | else | |
2708 | BUILD_CPPLIB = $(CPPLIB) $(LIBIBERTY) | |
2709 | build/genmatch$(build_exeext): BUILD_LIBDEPS += $(LIBINTL_DEP) $(LIBICONV_DEP) | |
2710 | build/genmatch$(build_exeext): BUILD_LIBS += $(LIBINTL) $(LIBICONV) | |
2711 | endif | |
2712 | ||
929315a9 | 2713 | build/genmatch$(build_exeext) : $(BUILD_CPPLIB) \ |
3d2cf79f RB |
2714 | $(BUILD_ERRORS) build/vec.o build/hash-table.o |
2715 | ||
0458fe77 | 2716 | # These programs are not linked with the MD reader. |
f8ed6dc5 | 2717 | build/gengtype$(build_exeext) : build/gengtype-lex.o build/gengtype-parse.o \ |
f142b5bc RG |
2718 | build/gengtype-state.o build/version.o build/errors.o |
2719 | ||
2720 | gengtype$(exeext) : gengtype.o gengtype-lex.o gengtype-parse.o \ | |
2721 | gengtype-state.o version.o errors.o $(LIBDEPS) | |
b6ee5bef RO |
2722 | +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ \ |
2723 | $(filter-out ($LIBDEPS), $^) $(LIBS) | |
6ddddaed RW |
2724 | |
2725 | # Rule for the generator programs: | |
2726 | $(genprog:%=build/gen%$(build_exeext)): build/gen%$(build_exeext): build/gen%.o $(BUILD_LIBDEPS) | |
a90163e9 | 2727 | +$(LINKER_FOR_BUILD) $(BUILD_LINKERFLAGS) $(BUILD_LDFLAGS) -o $@ \ |
6ddddaed | 2728 | $(filter-out $(BUILD_LIBDEPS), $^) $(BUILD_LIBS) |
e2500fed | 2729 | |
18406601 PB |
2730 | # Generated source files for gengtype. Prepend inclusion of |
2731 | # bconfig.h because AIX requires _LARGE_FILES to be defined before | |
2732 | # any system header is included. | |
03787dfd | 2733 | gengtype-lex.c : gengtype-lex.l |
8fb15466 PB |
2734 | -$(FLEX) $(FLEXFLAGS) -o$@ $< && { \ |
2735 | echo '#include "bconfig.h"' > $@.tmp; \ | |
2736 | cat $@ >> $@.tmp; \ | |
2737 | mv $@.tmp $@; \ | |
2738 | } | |
fae15c93 | 2739 | |
e980df8e TT |
2740 | #\f |
2741 | # Remake internationalization support. | |
c5bc3df6 | 2742 | CFLAGS-intl.o += -DLOCALEDIR=\"$(localedir)\" |
e980df8e | 2743 | |
544eb21e | 2744 | #\f |
52c0e446 | 2745 | # Remake cpp. |
79d8453e | 2746 | |
d059a239 FF |
2747 | PREPROCESSOR_DEFINES = \ |
2748 | -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \ | |
f686ec05 | 2749 | -DFIXED_INCLUDE_DIR=\"$(libsubdir)/include-fixed\" \ |
d059a239 | 2750 | -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \ |
17719d09 | 2751 | -DGPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT=$(gcc_gxx_include_dir_add_sysroot) \ |
caa55b1e | 2752 | -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/$(target_noncanonical)\" \ |
98c2359b | 2753 | -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/backward\" \ |
793e9558 | 2754 | -DLOCAL_INCLUDE_DIR=\"$(local_includedir)\" \ |
4977bab6 | 2755 | -DCROSS_INCLUDE_DIR=\"$(CROSS_SYSTEM_HEADER_DIR)\" \ |
047d636f | 2756 | -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\" \ |
08b2bad2 | 2757 | -DNATIVE_SYSTEM_HEADER_DIR=\"$(NATIVE_SYSTEM_HEADER_DIR)\" \ |
925af765 RS |
2758 | -DPREFIX=\"$(prefix)/\" \ |
2759 | -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc/\" \ | |
047d636f | 2760 | @TARGET_SYSTEM_ROOT_DEFINE@ |
79d8453e | 2761 | |
c5bc3df6 | 2762 | CFLAGS-cppbuiltin.o += $(PREPROCESSOR_DEFINES) -DBASEVER=$(BASEVER_s) |
2754b38f | 2763 | cppbuiltin.o: $(BASEVER) |
82a1c2fe | 2764 | |
c5bc3df6 | 2765 | CFLAGS-cppdefault.o += $(PREPROCESSOR_DEFINES) |
e980df8e | 2766 | |
7bd95cc1 BK |
2767 | # Note for the stamp targets, we run the program `true' instead of |
2768 | # having an empty command (nothing following the semicolon). | |
2769 | ||
e980df8e TT |
2770 | # gcov-iov.c is run on the build machine to generate gcov-iov.h from version.c |
2771 | build/gcov-iov.o: gcov-iov.c $(BCONFIG_H) coretypes.h $(GTM_H) \ | |
2772 | $(SYSTEM_H) coretypes.h $(TM_H) | |
2773 | ||
3b620440 | 2774 | build/gcov-iov$(build_exeext): build/gcov-iov.o |
a90163e9 | 2775 | +$(LINKER_FOR_BUILD) $(BUILD_LINKERFLAGS) $(BUILD_LDFLAGS) \ |
7980bfb8 | 2776 | build/gcov-iov.o -o $@ |
3b620440 | 2777 | |
6c77dacd | 2778 | gcov-iov.h: s-iov; @true |
a1286ef5 ZW |
2779 | s-iov: build/gcov-iov$(build_exeext) $(BASEVER) $(DEVPHASE) |
2780 | build/gcov-iov$(build_exeext) '$(BASEVER_c)' '$(DEVPHASE_c)' \ | |
2781 | > tmp-gcov-iov.h | |
88e3a2a3 | 2782 | $(SHELL) $(srcdir)/../move-if-change tmp-gcov-iov.h gcov-iov.h |
28068c2c | 2783 | $(STAMP) s-iov |
4977bab6 | 2784 | |
2691e6d7 | 2785 | GCOV_OBJS = gcov.o |
ab87f8c8 | 2786 | gcov$(exeext): $(GCOV_OBJS) $(LIBDEPS) |
2d44c7de | 2787 | +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) $(GCOV_OBJS) \ |
003f2d34 | 2788 | hash-table.o ggc-none.o $(LIBS) -o $@ |
2691e6d7 | 2789 | GCOV_DUMP_OBJS = gcov-dump.o |
4977bab6 | 2790 | gcov-dump$(exeext): $(GCOV_DUMP_OBJS) $(LIBDEPS) |
a90163e9 | 2791 | +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) $(GCOV_DUMP_OBJS) \ |
f17339ce | 2792 | hash-table.o ggc-none.o\ |
7980bfb8 | 2793 | $(LIBS) -o $@ |
c77556a5 RX |
2794 | |
2795 | GCOV_TOOL_DEP_FILES = $(srcdir)/../libgcc/libgcov-util.c gcov-io.c $(GCOV_IO_H) \ | |
2796 | $(srcdir)/../libgcc/libgcov-driver.c $(srcdir)/../libgcc/libgcov-driver-system.c \ | |
afe0c5ee | 2797 | $(srcdir)/../libgcc/libgcov-merge.c $(srcdir)/../libgcc/libgcov.h \ |
c77556a5 RX |
2798 | $(SYSTEM_H) coretypes.h $(TM_H) $(CONFIG_H) version.h intl.h $(DIAGNOSTIC_H) |
2799 | libgcov-util.o: $(srcdir)/../libgcc/libgcov-util.c $(GCOV_TOOL_DEP_FILES) | |
2800 | +$(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -o $@ $< | |
2801 | libgcov-driver-tool.o: $(srcdir)/../libgcc/libgcov-driver.c $(GCOV_TOOL_DEP_FILES) | |
2802 | +$(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ | |
2803 | -DIN_GCOV_TOOL=1 -o $@ $< | |
2804 | libgcov-merge-tool.o: $(srcdir)/../libgcc/libgcov-merge.c $(GCOV_TOOL_DEP_FILES) | |
2805 | +$(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ | |
2806 | -DIN_GCOV_TOOL=1 -o $@ $< | |
2807 | GCOV_TOOL_OBJS = gcov-tool.o libgcov-util.o libgcov-driver-tool.o libgcov-merge-tool.o | |
2808 | gcov-tool$(exeext): $(GCOV_TOOL_OBJS) $(LIBDEPS) | |
2809 | +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) $(GCOV_TOOL_OBJS) $(LIBS) -o $@ | |
544eb21e | 2810 | #\f |
f686ec05 | 2811 | # Build the include directories. The stamp files are stmp-* rather than |
e5e809f4 | 2812 | # s-* so that mostlyclean does not force the include directory to |
ba1811f1 ILT |
2813 | # be rebuilt. |
2814 | ||
f686ec05 | 2815 | # Build the include directories. |
201cdb74 | 2816 | stmp-int-hdrs: $(STMP_FIXINC) $(USER_H) fixinc_list |
ba1811f1 | 2817 | # Copy in the headers provided with gcc. |
8294b6fe | 2818 | # |
ba1811f1 ILT |
2819 | # The sed command gets just the last file name component; |
2820 | # this is necessary because VPATH could add a dirname. | |
2821 | # Using basename would be simpler, but some systems don't have it. | |
8294b6fe | 2822 | # |
c85f7c16 | 2823 | # The touch command is here to workaround an AIX/Linux NFS bug. |
8294b6fe OH |
2824 | # |
2825 | # The move-if-change + cp -p twists for limits.h are intended to preserve | |
2826 | # the time stamp when we regenerate, to prevent pointless rebuilds during | |
2827 | # e.g. install-no-fixedincludes. | |
7bfe3c97 | 2828 | -if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi |
f686ec05 | 2829 | -if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi |
d7371761 RK |
2830 | for file in .. $(USER_H); do \ |
2831 | if [ X$$file != X.. ]; then \ | |
2832 | realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \ | |
d9835ae8 | 2833 | $(STAMP) include/$$realfile; \ |
ae678a13 JW |
2834 | rm -f include/$$realfile; \ |
2835 | cp $$file include; \ | |
2836 | chmod a+r include/$$realfile; \ | |
d7371761 | 2837 | fi; \ |
ba1811f1 | 2838 | done |
9b91e436 KT |
2839 | for file in .. $(USER_H_INC_NEXT_PRE); do \ |
2840 | if [ X$$file != X.. ]; then \ | |
2841 | mv include/$$file include/x_$$file; \ | |
2842 | echo "#include_next <$$file>" >include/$$file; \ | |
2843 | cat include/x_$$file >>include/$$file; \ | |
2844 | rm -f include/x_$$file; \ | |
2845 | chmod a+r include/$$file; \ | |
2846 | fi; \ | |
2847 | done | |
2848 | for file in .. $(USER_H_INC_NEXT_POST); do \ | |
2849 | if [ X$$file != X.. ]; then \ | |
2850 | echo "#include_next <$$file>" >>include/$$file; \ | |
2851 | chmod a+r include/$$file; \ | |
2852 | fi; \ | |
2853 | done | |
207bf79d JM |
2854 | rm -f include/stdint.h |
2855 | if [ $(USE_GCC_STDINT) = wrap ]; then \ | |
2856 | rm -f include/stdint-gcc.h; \ | |
2857 | cp $(srcdir)/ginclude/stdint-gcc.h include/stdint-gcc.h; \ | |
1d9edd01 | 2858 | chmod a+r include/stdint-gcc.h; \ |
207bf79d | 2859 | cp $(srcdir)/ginclude/stdint-wrap.h include/stdint.h; \ |
c8c520dd | 2860 | chmod a+r include/stdint.h; \ |
207bf79d JM |
2861 | elif [ $(USE_GCC_STDINT) = provide ]; then \ |
2862 | cp $(srcdir)/ginclude/stdint-gcc.h include/stdint.h; \ | |
c8c520dd | 2863 | chmod a+r include/stdint.h; \ |
207bf79d | 2864 | fi |
14da6073 JM |
2865 | set -e; for ml in `cat fixinc_list`; do \ |
2866 | sysroot_headers_suffix=`echo $${ml} | sed -e 's/;.*$$//'`; \ | |
2867 | multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \ | |
2868 | fix_dir=include-fixed$${multi_dir}; \ | |
2869 | if $(LIMITS_H_TEST) ; then \ | |
2870 | cat $(srcdir)/limitx.h $(srcdir)/glimits.h $(srcdir)/limity.h > tmp-xlimits.h; \ | |
2871 | else \ | |
2872 | cat $(srcdir)/glimits.h > tmp-xlimits.h; \ | |
2873 | fi; \ | |
2874 | $(mkinstalldirs) $${fix_dir}; \ | |
2875 | chmod a+rx $${fix_dir} || true; \ | |
8294b6fe OH |
2876 | $(SHELL) $(srcdir)/../move-if-change \ |
2877 | tmp-xlimits.h tmp-limits.h; \ | |
14da6073 | 2878 | rm -f $${fix_dir}/limits.h; \ |
8294b6fe | 2879 | cp -p tmp-limits.h $${fix_dir}/limits.h; \ |
14da6073 JM |
2880 | chmod a+r $${fix_dir}/limits.h; \ |
2881 | done | |
e7f62ad3 | 2882 | # Install the README |
f686ec05 JM |
2883 | rm -f include-fixed/README |
2884 | cp $(srcdir)/../fixincludes/README-fixinc include-fixed/README | |
2885 | chmod a+r include-fixed/README | |
d9835ae8 | 2886 | $(STAMP) $@ |
e7f62ad3 | 2887 | |
4977bab6 ZW |
2888 | .PHONY: install-gcc-tooldir |
2889 | install-gcc-tooldir: | |
947c6b00 | 2890 | $(mkinstalldirs) $(DESTDIR)$(gcc_tooldir) |
4977bab6 | 2891 | |
5cd37749 | 2892 | macro_list: s-macro_list; @true |
15e3d4f1 | 2893 | s-macro_list : $(GCC_PASSES) cc1$(exeext) |
53c7ffe7 | 2894 | echo | $(GCC_FOR_TARGET) -E -dM - | \ |
8160ab35 MK |
2895 | sed -n -e 's/^#define \([^_][a-zA-Z0-9_]*\).*/\1/p' \ |
2896 | -e 's/^#define \(_[^_A-Z][a-zA-Z0-9_]*\).*/\1/p' | \ | |
5cd37749 JG |
2897 | sort -u > tmp-macro_list |
2898 | $(SHELL) $(srcdir)/../move-if-change tmp-macro_list macro_list | |
2899 | $(STAMP) s-macro_list | |
53c7ffe7 | 2900 | |
14da6073 JM |
2901 | fixinc_list: s-fixinc_list; @true |
2902 | s-fixinc_list : $(GCC_PASSES) | |
2903 | # Build up a list of multilib directories and corresponding sysroot | |
2904 | # suffixes, in form sysroot;multilib. | |
2905 | if $(GCC_FOR_TARGET) -print-sysroot-headers-suffix > /dev/null 2>&1; then \ | |
2906 | set -e; for ml in `$(GCC_FOR_TARGET) -print-multi-lib`; do \ | |
2907 | multi_dir=`echo $${ml} | sed -e 's/;.*$$//'`; \ | |
2908 | flags=`echo $${ml} | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \ | |
2909 | sfx=`$(GCC_FOR_TARGET) $${flags} -print-sysroot-headers-suffix`; \ | |
2910 | if [ "$${multi_dir}" = "." ]; \ | |
2911 | then multi_dir=""; \ | |
2912 | else \ | |
2913 | multi_dir=/$${multi_dir}; \ | |
2914 | fi; \ | |
2915 | echo "$${sfx};$${multi_dir}"; \ | |
2916 | done; \ | |
2917 | else \ | |
2918 | echo ";"; \ | |
2919 | fi > tmp-fixinc_list | |
2920 | $(SHELL) $(srcdir)/../move-if-change tmp-fixinc_list fixinc_list | |
2921 | $(STAMP) s-fixinc_list | |
2922 | ||
144023ad AO |
2923 | # The line below is supposed to avoid accidentally matching the |
2924 | # built-in suffix rule `.o:' to build fixincl out of fixincl.o. You'd | |
2925 | # expect fixincl to be newer than fixincl.o, such that this situation | |
2926 | # would never come up. As it turns out, if you use ccache with | |
2927 | # CCACHE_HARDLINK enabled, the compiler doesn't embed the current | |
2928 | # working directory in object files (-g absent, or -fno-working-dir | |
2929 | # present), and build and host are the same, fixincl for the host will | |
2930 | # build after fixincl for the build machine, getting a cache hit, | |
a4d05547 | 2931 | # thereby updating the timestamp of fixincl.o in the host tree. |
144023ad AO |
2932 | # Because of CCACHE_HARDLINK, this will also update the timestamp in |
2933 | # the build tree, and so fixincl in the build tree will appear to be | |
2934 | # out of date. Yuck. | |
2935 | ../$(build_subdir)/fixincludes/fixincl: ; @ : | |
2936 | ||
ba1811f1 | 2937 | # Build fixed copies of system files. |
be448346 BS |
2938 | # Abort if no system headers available, unless building a crosscompiler. |
2939 | # FIXME: abort unless building --without-headers would be more accurate and less ugly | |
14da6073 | 2940 | stmp-fixinc: gsyslimits.h macro_list fixinc_list \ |
215c351a PB |
2941 | $(build_objdir)/fixincludes/fixincl \ |
2942 | $(build_objdir)/fixincludes/fixinc.sh | |
f686ec05 JM |
2943 | rm -rf include-fixed; mkdir include-fixed |
2944 | -chmod a+rx include-fixed | |
cc11cc9b PB |
2945 | if [ -d ../prev-gcc ]; then \ |
2946 | cd ../prev-gcc && \ | |
9fb03bd8 | 2947 | $(MAKE) real-$(INSTALL_HEADERS_DIR) DESTDIR=`pwd`/../gcc/ \ |
cc11cc9b | 2948 | libsubdir=. ; \ |
3dc4a939 | 2949 | else \ |
14da6073 JM |
2950 | set -e; for ml in `cat fixinc_list`; do \ |
2951 | sysroot_headers_suffix=`echo $${ml} | sed -e 's/;.*$$//'`; \ | |
2952 | multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \ | |
2953 | fix_dir=include-fixed$${multi_dir}; \ | |
2954 | if ! $(inhibit_libc) && test ! -d ${SYSTEM_HEADER_DIR}; then \ | |
2955 | echo The directory that should contain system headers does not exist: >&2 ; \ | |
2956 | echo " ${SYSTEM_HEADER_DIR}" >&2 ; \ | |
2957 | tooldir_sysinc=`echo "${gcc_tooldir}/sys-include" | sed -e :a -e "s,[^/]*/\.\.\/,," -e ta`; \ | |
2958 | if test "x${SYSTEM_HEADER_DIR}" = "x$${tooldir_sysinc}"; \ | |
2959 | then sleep 1; else exit 1; fi; \ | |
2960 | fi; \ | |
2961 | $(mkinstalldirs) $${fix_dir}; \ | |
2962 | chmod a+rx $${fix_dir} || true; \ | |
2963 | (TARGET_MACHINE='$(target)'; srcdir=`cd $(srcdir); ${PWD_COMMAND}`; \ | |
2964 | SHELL='$(SHELL)'; MACRO_LIST=`${PWD_COMMAND}`/macro_list ; \ | |
1d93c860 | 2965 | gcc_dir=`${PWD_COMMAND}` ; \ |
14da6073 JM |
2966 | export TARGET_MACHINE srcdir SHELL MACRO_LIST && \ |
2967 | cd $(build_objdir)/fixincludes && \ | |
1d93c860 | 2968 | $(SHELL) ./fixinc.sh "$${gcc_dir}/$${fix_dir}" \ |
14da6073 JM |
2969 | $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS) ); \ |
2970 | rm -f $${fix_dir}/syslimits.h; \ | |
2971 | if [ -f $${fix_dir}/limits.h ]; then \ | |
2972 | mv $${fix_dir}/limits.h $${fix_dir}/syslimits.h; \ | |
2973 | else \ | |
2974 | cp $(srcdir)/gsyslimits.h $${fix_dir}/syslimits.h; \ | |
2975 | fi; \ | |
2976 | chmod a+r $${fix_dir}/syslimits.h; \ | |
2977 | done; \ | |
53c7ffe7 | 2978 | fi |
d9835ae8 | 2979 | $(STAMP) stmp-fixinc |
544eb21e | 2980 | #\f |
8294b6fe OH |
2981 | |
2982 | # Install with the gcc headers files, not the fixed include files, which we | |
2983 | # are typically not allowed to distribute. The general idea is to: | |
2984 | # - Get to "install" with a bare set of internal headers, not the | |
2985 | # fixed system ones, | |
2986 | # - Prevent rebuilds of what normally depends on the headers, which is | |
2987 | # useless for installation purposes and would rely on improper headers. | |
2988 | # - Restore as much of the original state as possible. | |
2989 | ||
2990 | .PHONY: install-no-fixedincludes | |
2991 | ||
2992 | install-no-fixedincludes: | |
2993 | # Stash the current set of headers away, save stamps we're going to | |
2994 | # alter explicitly, and arrange for fixincludes not to run next time | |
2995 | # we trigger a headers rebuild. | |
2996 | -rm -rf tmp-include | |
2997 | -mv include tmp-include 2>/dev/null | |
2998 | -mv include-fixed tmp-include-fixed 2>/dev/null | |
2999 | -mv stmp-int-hdrs tmp-stmp-int-hdrs 2>/dev/null | |
3000 | -mv stmp-fixinc tmp-stmp-fixinc 2>/dev/null | |
3001 | -mkdir include | |
3002 | -cp -p $(srcdir)/gsyslimits.h include/syslimits.h | |
3003 | -touch stmp-fixinc | |
3004 | ||
3005 | # Rebuild our internal headers, restore the original stamps so that | |
3006 | # "install" doesn't trigger pointless rebuilds because of that update, | |
3007 | # then do install | |
3008 | $(MAKE) $(FLAGS_TO_PASS) stmp-int-hdrs | |
3009 | -mv tmp-stmp-int-hdrs stmp-int-hdrs 2>/dev/null | |
3010 | -mv tmp-stmp-fixinc stmp-fixinc 2>/dev/null | |
3011 | $(MAKE) $(FLAGS_TO_PASS) install | |
3012 | ||
3013 | # Restore the original set of maybe-fixed headers | |
3014 | -rm -rf include; mv tmp-include include 2>/dev/null | |
3015 | -rm -rf include-fixed; mv tmp-include-fixed include-fixed 2>/dev/null | |
3016 | ||
79d8453e RS |
3017 | # Remake the info files. |
3018 | ||
fda9c731 | 3019 | doc: $(BUILD_INFO) $(GENERATED_MANPAGES) |
a541f69d KC |
3020 | |
3021 | INFOFILES = doc/cpp.info doc/gcc.info doc/gccint.info \ | |
3022 | doc/gccinstall.info doc/cppinternals.info | |
3023 | ||
3024 | info: $(INFOFILES) lang.info @GENINSRC@ srcinfo lang.srcinfo | |
3025 | ||
3026 | srcinfo: $(INFOFILES) | |
3027 | -cp -p $^ $(srcdir)/doc | |
65455962 | 3028 | |
a1286ef5 ZW |
3029 | TEXI_CPP_FILES = cpp.texi fdl.texi cppenv.texi cppopts.texi \ |
3030 | gcc-common.texi gcc-vers.texi | |
65455962 | 3031 | |
a1286ef5 ZW |
3032 | TEXI_GCC_FILES = gcc.texi gcc-common.texi gcc-vers.texi frontends.texi \ |
3033 | standards.texi invoke.texi extend.texi md.texi objc.texi \ | |
3034 | gcov.texi trouble.texi bugreport.texi service.texi \ | |
7f9766e4 | 3035 | contribute.texi compat.texi funding.texi gnu.texi gpl_v3.texi \ |
04d170d2 | 3036 | fdl.texi contrib.texi cppenv.texi cppopts.texi avr-mmcu.texi \ |
3f155273 | 3037 | implement-c.texi implement-cxx.texi gcov-tool.texi |
65455962 | 3038 | |
c18a9bc4 JR |
3039 | # we explicitly use $(srcdir)/doc/tm.texi here to avoid confusion with |
3040 | # the generated tm.texi; the latter might have a more recent timestamp, | |
3041 | # but we don't want to rebuild the info files unless the contents of | |
3042 | # the *.texi files have changed. | |
a1286ef5 ZW |
3043 | TEXI_GCCINT_FILES = gccint.texi gcc-common.texi gcc-vers.texi \ |
3044 | contribute.texi makefile.texi configterms.texi options.texi \ | |
c18a9bc4 JR |
3045 | portability.texi interface.texi passes.texi rtl.texi md.texi \ |
3046 | $(srcdir)/doc/tm.texi hostconfig.texi fragments.texi \ | |
a1286ef5 | 3047 | configfiles.texi collect2.texi headerdirs.texi funding.texi \ |
7f9766e4 | 3048 | gnu.texi gpl_v3.texi fdl.texi contrib.texi languages.texi \ |
01e0ef5a | 3049 | sourcebuild.texi gty.texi libgcc.texi cfg.texi tree-ssa.texi \ |
3d2cf79f RB |
3050 | loop.texi generic.texi gimple.texi plugins.texi optinfo.texi \ |
3051 | match-and-simplify.texi | |
65455962 | 3052 | |
e5fc6da8 | 3053 | TEXI_GCCINSTALL_FILES = install.texi install-old.texi fdl.texi \ |
3b4ed48b | 3054 | gcc-common.texi gcc-vers.texi |
65455962 | 3055 | |
a1286ef5 ZW |
3056 | TEXI_CPPINT_FILES = cppinternals.texi gcc-common.texi gcc-vers.texi |
3057 | ||
3058 | # gcc-vers.texi is generated from the version files. | |
3059 | gcc-vers.texi: $(BASEVER) $(DEVPHASE) | |
3060 | (echo "@set version-GCC $(BASEVER_c)"; \ | |
3061 | if [ "$(DEVPHASE_c)" = "experimental" ]; \ | |
3062 | then echo "@set DEVELOPMENT"; \ | |
3063 | else echo "@clear DEVELOPMENT"; \ | |
3064 | fi) > $@T | |
a0e527e3 | 3065 | $(build_file_translate) echo @set srcdir $(abs_srcdir) >> $@T |
2f41c1d6 PB |
3066 | if [ -n "$(PKGVERSION)" ]; then \ |
3067 | echo "@set VERSION_PACKAGE $(PKGVERSION)" >> $@T; \ | |
3068 | fi | |
3069 | echo "@set BUGURL $(BUGURL_TEXI)" >> $@T; \ | |
a1286ef5 ZW |
3070 | mv -f $@T $@ |
3071 | ||
65455962 | 3072 | |
b5422ad7 | 3073 | # The *.1, *.7, *.info, *.dvi, and *.pdf files are being generated from implicit |
cb7c0b5a | 3074 | # patterns. To use them, put each of the specific targets with its |
65455962 | 3075 | # specific dependencies but no build commands. |
e2500fed | 3076 | |
a541f69d KC |
3077 | doc/cpp.info: $(TEXI_CPP_FILES) |
3078 | doc/gcc.info: $(TEXI_GCC_FILES) | |
3079 | doc/gccint.info: $(TEXI_GCCINT_FILES) | |
3080 | doc/cppinternals.info: $(TEXI_CPPINT_FILES) | |
d7f8491b | 3081 | |
a541f69d | 3082 | doc/%.info: %.texi |
1f9b3087 | 3083 | if [ x$(BUILD_INFO) = xinfo ]; then \ |
ad3a7ce3 CD |
3084 | $(MAKEINFO) $(MAKEINFOFLAGS) -I . -I $(gcc_docdir) \ |
3085 | -I $(gcc_docdir)/include -o $@ $<; \ | |
1f9b3087 | 3086 | fi |
23de1fbf | 3087 | |
63069342 | 3088 | # Duplicate entry to handle renaming of gccinstall.info |
a541f69d | 3089 | doc/gccinstall.info: $(TEXI_GCCINSTALL_FILES) |
63069342 | 3090 | if [ x$(BUILD_INFO) = xinfo ]; then \ |
ad3a7ce3 CD |
3091 | $(MAKEINFO) $(MAKEINFOFLAGS) -I $(gcc_docdir) \ |
3092 | -I $(gcc_docdir)/include -o $@ $<; \ | |
63069342 KC |
3093 | fi |
3094 | ||
a541f69d KC |
3095 | doc/cpp.dvi: $(TEXI_CPP_FILES) |
3096 | doc/gcc.dvi: $(TEXI_GCC_FILES) | |
3097 | doc/gccint.dvi: $(TEXI_GCCINT_FILES) | |
3098 | doc/cppinternals.dvi: $(TEXI_CPPINT_FILES) | |
63069342 | 3099 | |
b5422ad7 BM |
3100 | doc/cpp.pdf: $(TEXI_CPP_FILES) |
3101 | doc/gcc.pdf: $(TEXI_GCC_FILES) | |
3102 | doc/gccint.pdf: $(TEXI_GCCINT_FILES) | |
3103 | doc/cppinternals.pdf: $(TEXI_CPPINT_FILES) | |
3104 | ||
22482f74 MS |
3105 | $(build_htmldir)/cpp/index.html: $(TEXI_CPP_FILES) |
3106 | $(build_htmldir)/gcc/index.html: $(TEXI_GCC_FILES) | |
3107 | $(build_htmldir)/gccint/index.html: $(TEXI_GCCINT_FILES) | |
3108 | $(build_htmldir)/cppinternals/index.html: $(TEXI_CPPINT_FILES) | |
9d65c5cb | 3109 | |
a541f69d | 3110 | dvi:: doc/gcc.dvi doc/gccint.dvi doc/gccinstall.dvi doc/cpp.dvi \ |
dedfa466 | 3111 | doc/cppinternals.dvi lang.dvi |
8dbda01e | 3112 | |
a541f69d | 3113 | doc/%.dvi: %.texi |
a1286ef5 | 3114 | $(TEXI2DVI) -I . -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $< |
95e30ecc | 3115 | |
63069342 | 3116 | # Duplicate entry to handle renaming of gccinstall.dvi |
a541f69d | 3117 | doc/gccinstall.dvi: $(TEXI_GCCINSTALL_FILES) |
a1286ef5 | 3118 | $(TEXI2DVI) -I . -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $< |
d7f8491b | 3119 | |
bcc3d150 BM |
3120 | PDFFILES = doc/gcc.pdf doc/gccint.pdf doc/gccinstall.pdf doc/cpp.pdf \ |
3121 | doc/cppinternals.pdf | |
3122 | ||
3123 | pdf:: $(PDFFILES) lang.pdf | |
b5422ad7 BM |
3124 | |
3125 | doc/%.pdf: %.texi | |
3126 | $(TEXI2PDF) -I . -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $< | |
3127 | ||
3128 | # Duplicate entry to handle renaming of gccinstall.pdf | |
3129 | doc/gccinstall.pdf: $(TEXI_GCCINSTALL_FILES) | |
3130 | $(TEXI2PDF) -I . -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $< | |
3131 | ||
9288b845 CD |
3132 | # List the directories or single hmtl files which are installed by |
3133 | # install-html. The lang.html file triggers language fragments to build | |
55bcd32b | 3134 | # html documentation. |
9288b845 CD |
3135 | HTMLS_INSTALL=$(build_htmldir)/cpp $(build_htmldir)/gcc \ |
3136 | $(build_htmldir)/gccinstall $(build_htmldir)/gccint \ | |
3137 | $(build_htmldir)/cppinternals | |
3138 | ||
3139 | # List the html file targets. | |
3140 | HTMLS_BUILD=$(build_htmldir)/cpp/index.html $(build_htmldir)/gcc/index.html \ | |
22482f74 MS |
3141 | $(build_htmldir)/gccinstall/index.html $(build_htmldir)/gccint/index.html \ |
3142 | $(build_htmldir)/cppinternals/index.html lang.html | |
9d65c5cb | 3143 | |
9288b845 | 3144 | html:: $(HTMLS_BUILD) |
22482f74 MS |
3145 | |
3146 | $(build_htmldir)/%/index.html: %.texi | |
9d65c5cb MS |
3147 | $(mkinstalldirs) $(@D) |
3148 | rm -f $(@D)/* | |
3149 | $(TEXI2HTML) -I $(abs_docdir) -I $(abs_docdir)/include -o $(@D) $< | |
3150 | ||
3151 | # Duplicate entry to handle renaming of gccinstall | |
22482f74 | 3152 | $(build_htmldir)/gccinstall/index.html: $(TEXI_GCCINSTALL_FILES) |
9d65c5cb MS |
3153 | $(mkinstalldirs) $(@D) |
3154 | echo rm -f $(@D)/* | |
a1e6d1ce MLI |
3155 | SOURCEDIR=$(abs_docdir) \ |
3156 | DESTDIR=$(@D) \ | |
3157 | $(SHELL) $(srcdir)/doc/install.texi2html | |
9d65c5cb | 3158 | |
c77556a5 RX |
3159 | MANFILES = doc/gcov.1 doc/cpp.1 doc/gcc.1 doc/gfdl.7 doc/gpl.7 \ |
3160 | doc/fsf-funding.7 doc/gcov-tool.1 | |
a541f69d | 3161 | |
5340bbea | 3162 | generated-manpages: man |
ce5c1cf3 KC |
3163 | |
3164 | man: $(MANFILES) lang.man @GENINSRC@ srcman lang.srcman | |
a541f69d KC |
3165 | |
3166 | srcman: $(MANFILES) | |
3167 | -cp -p $^ $(srcdir)/doc | |
c01a508e | 3168 | |
a541f69d | 3169 | doc/%.1: %.pod |
6280c439 | 3170 | $(STAMP) $@ |
65455962 | 3171 | -($(POD2MAN) --section=1 $< > $(@).T$$$$ && \ |
6280c439 MM |
3172 | mv -f $(@).T$$$$ $@) || \ |
3173 | (rm -f $(@).T$$$$ && exit 1) | |
6280c439 | 3174 | |
a541f69d | 3175 | doc/%.7: %.pod |
6280c439 | 3176 | $(STAMP) $@ |
65455962 | 3177 | -($(POD2MAN) --section=7 $< > $(@).T$$$$ && \ |
6280c439 MM |
3178 | mv -f $(@).T$$$$ $@) || \ |
3179 | (rm -f $(@).T$$$$ && exit 1) | |
65455962 KC |
3180 | |
3181 | %.pod: %.texi | |
3182 | $(STAMP) $@ | |
2f41c1d6 | 3183 | -$(TEXI2POD) -DBUGURL="$(BUGURL_TEXI)" $< > $@ |
65455962 | 3184 | |
27f40df4 | 3185 | .INTERMEDIATE: cpp.pod gcc.pod gfdl.pod fsf-funding.pod gpl.pod |
65455962 KC |
3186 | cpp.pod: cpp.texi cppenv.texi cppopts.texi |
3187 | ||
3188 | # These next rules exist because the output name is not the same as | |
cb7c0b5a | 3189 | # the input name, so our implicit %.pod rule will not work. |
65455962 | 3190 | |
4db19cc7 | 3191 | gcc.pod: invoke.texi cppenv.texi cppopts.texi gcc-vers.texi |
65455962 KC |
3192 | $(STAMP) $@ |
3193 | -$(TEXI2POD) $< > $@ | |
3194 | gfdl.pod: fdl.texi | |
3195 | $(STAMP) $@ | |
3196 | -$(TEXI2POD) $< > $@ | |
3197 | fsf-funding.pod: funding.texi | |
3198 | $(STAMP) $@ | |
3199 | -$(TEXI2POD) $< > $@ | |
7f9766e4 JM |
3200 | gpl.pod: gpl_v3.texi |
3201 | $(STAMP) $@ | |
3202 | -$(TEXI2POD) $< > $@ | |
77bd67cb | 3203 | |
544eb21e | 3204 | #\f |
79d8453e RS |
3205 | # Deletion of files made during compilation. |
3206 | # There are four levels of this: | |
f1908d70 | 3207 | # `mostlyclean', `clean', `distclean' and `maintainer-clean'. |
79d8453e | 3208 | # `mostlyclean' is useful while working on a particular type of machine. |
2e494f70 | 3209 | # It deletes most, but not all, of the files made by compilation. |
79d8453e | 3210 | # It does not delete libgcc.a or its parts, so it won't have to be recompiled. |
2e494f70 | 3211 | # `clean' deletes everything made by running `make all'. |
47547081 | 3212 | # `distclean' also deletes the files made by config. |
f1908d70 | 3213 | # `maintainer-clean' also deletes everything that could be regenerated |
63d9b81c RK |
3214 | # automatically, except for `configure'. |
3215 | # We remove as much from the language subdirectories as we can | |
013a2ee0 | 3216 | # (less duplicated code). |
79d8453e | 3217 | |
6eb95e99 | 3218 | mostlyclean: lang.mostlyclean |
8b1f719a | 3219 | -rm -f $(MOSTLYCLEANFILES) |
9c0fed64 | 3220 | -rm -f *$(objext) c-family/*$(objext) |
22aa533e | 3221 | -rm -f *$(coverageexts) |
3b620440 KC |
3222 | # Delete build programs |
3223 | -rm -f build/* | |
26be549a | 3224 | -rm -f mddeps.mk |
e5e809f4 | 3225 | # Delete other built files. |
57dfdff0 | 3226 | -rm -f specs.h options.c options.h options-save.c |
e5e809f4 JL |
3227 | # Delete the stamp and temporary files. |
3228 | -rm -f s-* tmp-* stamp-* stmp-* | |
013a2ee0 | 3229 | -rm -f */stamp-* */tmp-* |
2e494f70 | 3230 | # Delete debugging dump files. |
61098249 | 3231 | -rm -f *.[0-9][0-9].* */*.[0-9][0-9].* |
2e494f70 | 3232 | # Delete some files made during installation. |
52c0e446 | 3233 | -rm -f specs $(SPECS) |
b548dffb | 3234 | -rm -f collect collect2 mips-tfile mips-tdump |
2e494f70 RS |
3235 | # Delete unwanted output files from TeX. |
3236 | -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg | |
013a2ee0 | 3237 | -rm -f */*.toc */*.log */*.vr */*.fn */*.cp */*.tp */*.ky */*.pg |
47547081 RS |
3238 | # Delete sorted indices we don't actually use. |
3239 | -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns | |
2e494f70 | 3240 | # Delete core dumps. |
013a2ee0 | 3241 | -rm -f core */core |
11a67599 ZW |
3242 | # Delete file generated for gengtype |
3243 | -rm -f gtyp-input.list | |
92724e1d | 3244 | # Delete files generated by gengtype |
8ac9d31f TJ |
3245 | -rm -f gtype-* |
3246 | -rm -f gt-* | |
92724e1d | 3247 | -rm -f gtype.state |
3fd30b88 GK |
3248 | # Delete genchecksum outputs |
3249 | -rm -f *-checksum.c | |
427b248d JM |
3250 | # Delete lock-and-run bits |
3251 | -rm -rf linkfe.lck lock-stamp.* | |
79d8453e | 3252 | |
47547081 RS |
3253 | # Delete all files made by compilation |
3254 | # that don't exist in the distribution. | |
6eb95e99 | 3255 | clean: mostlyclean lang.clean |
23af32e6 | 3256 | -rm -f libgcc.a libgcc_eh.a libgcov.a |
3b415018 | 3257 | -rm -f libgcc_s* |
443728bb | 3258 | -rm -f libunwind* |
852b75ed | 3259 | -rm -f config.h tconfig.h bconfig.h tm_p.h tm.h |
776dc15d | 3260 | -rm -f options.c options.h optionlist |
11642c3a | 3261 | -rm -f cs-* |
a541f69d | 3262 | -rm -f doc/*.dvi |
b5422ad7 | 3263 | -rm -f doc/*.pdf |
14da6073 JM |
3264 | # Delete the include directories. |
3265 | -rm -rf include include-fixed | |
75ed5d8b | 3266 | # Delete files used by the "multilib" facility (including libgcc subdirs). |
f6cdc7ea | 3267 | -rm -f multilib.h tmpmultilib* |
75ed5d8b DE |
3268 | -if [ "x$(MULTILIB_DIRNAMES)" != x ] ; then \ |
3269 | rm -rf $(MULTILIB_DIRNAMES); \ | |
3270 | else if [ "x$(MULTILIB_OPTIONS)" != x ] ; then \ | |
3271 | rm -rf `echo $(MULTILIB_OPTIONS) | sed -e 's/\// /g'`; \ | |
3272 | fi ; fi | |
79d8453e | 3273 | |
47547081 RS |
3274 | # Delete all files that users would normally create |
3275 | # while building and installing GCC. | |
6eb95e99 | 3276 | distclean: clean lang.distclean |
11642c3a | 3277 | -rm -f auto-host.h auto-build.h |
d1209685 | 3278 | -rm -f cstamp-h |
63d9b81c | 3279 | -rm -f config.status config.run config.cache config.bak |
d232dfa4 | 3280 | -rm -f Make-lang Make-hooks Make-host Make-target |
ad854f24 | 3281 | -rm -f Makefile *.oaux |
f24af81b | 3282 | -rm -f gthr-default.h |
27bf414c | 3283 | -rm -f TAGS */TAGS |
338023d4 | 3284 | -rm -f *.asm |
a051ad3a | 3285 | -rm -f site.exp site.bak testsuite/site.exp testsuite/site.bak |
ad854f24 | 3286 | -rm -f testsuite/*.log testsuite/*.sum |
1bb1f121 | 3287 | -cd testsuite && rm -f x *.x *.x? *.exe *.rpo *.o *.s *.S *.c |
4977bab6 | 3288 | -cd testsuite && rm -f *.out *.gcov *$(coverageexts) |
f362c762 | 3289 | -rm -rf ${QMTEST_DIR} stamp-qmtest |
06f0b04c | 3290 | -rm -f cxxmain.c |
fda9c731 | 3291 | -rm -f .gdbinit configargs.h |
c01a508e | 3292 | -rm -f gcov.pod |
ad854f24 ZW |
3293 | # Delete po/*.gmo only if we are not building in the source directory. |
3294 | -if [ ! -f po/exgettext ]; then rm -f po/*.gmo; fi | |
4adbd5dd | 3295 | -rmdir ada cp f java objc intl po testsuite plugin 2>/dev/null |
2e494f70 | 3296 | |
63d9b81c | 3297 | # Get rid of every file that's generated from some other file, except for `configure'. |
79d8453e | 3298 | # Most of these files ARE PRESENT in the GCC distribution. |
63d9b81c RK |
3299 | maintainer-clean: |
3300 | @echo 'This command is intended for maintainers to use; it' | |
3301 | @echo 'deletes files that may need special tools to rebuild.' | |
6eb95e99 | 3302 | $(MAKE) lang.maintainer-clean distclean |
17db6582 JM |
3303 | -rm -f cpp.??s cpp.*aux |
3304 | -rm -f gcc.??s gcc.*aux | |
b5422ad7 | 3305 | -rm -f $(gcc_docdir)/*.info $(gcc_docdir)/*.1 $(gcc_docdir)/*.7 $(gcc_docdir)/*.dvi $(gcc_docdir)/*.pdf |
544eb21e | 3306 | #\f |
455c8f48 | 3307 | # Entry points `install', `install-strip', and `uninstall'. |
2e494f70 | 3308 | # Also use `install-collect2' to install collect2 when the config files don't. |
79d8453e | 3309 | |
ba1811f1 | 3310 | # Copy the compiler files into directories where they will be run. |
aab26e16 RK |
3311 | # Install the driver last so that the window when things are |
3312 | # broken is small. | |
fa958513 | 3313 | install: install-common $(INSTALL_HEADERS) \ |
6eb95e99 | 3314 | install-cpp install-man install-info install-@POSUB@ \ |
b6b89215 | 3315 | install-driver install-lto-wrapper install-gcc-ar |
79d8453e | 3316 | |
bf016de8 RAE |
3317 | ifeq ($(enable_plugin),yes) |
3318 | install: install-plugin | |
3319 | endif | |
3320 | ||
455c8f48 RW |
3321 | install-strip: override INSTALL_PROGRAM = $(INSTALL_STRIP_PROGRAM) |
3322 | ifneq ($(STRIP),) | |
3323 | install-strip: STRIPPROG = $(STRIP) | |
3324 | export STRIPPROG | |
3325 | endif | |
3326 | install-strip: install | |
3327 | ||
587a4ba6 | 3328 | # Handle cpp installation. |
47b528da | 3329 | install-cpp: installdirs cpp$(exeext) |
85c64bbe BS |
3330 | -if test "$(enable_as_accelerator)" != "yes" ; then \ |
3331 | rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext); \ | |
3332 | $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext); \ | |
3333 | if [ x$(cpp_install_dir) != x ]; then \ | |
3334 | rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \ | |
3335 | $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \ | |
3336 | else true; fi; \ | |
3337 | fi | |
587a4ba6 | 3338 | |
69cbb85a | 3339 | # Create the installation directories. |
a8ee6e2d | 3340 | # $(libdir)/gcc/include isn't currently searched by cpp. |
69cbb85a | 3341 | installdirs: |
947c6b00 NN |
3342 | $(mkinstalldirs) $(DESTDIR)$(libsubdir) |
3343 | $(mkinstalldirs) $(DESTDIR)$(libexecsubdir) | |
3344 | $(mkinstalldirs) $(DESTDIR)$(bindir) | |
3345 | $(mkinstalldirs) $(DESTDIR)$(includedir) | |
3346 | $(mkinstalldirs) $(DESTDIR)$(infodir) | |
947c6b00 NN |
3347 | $(mkinstalldirs) $(DESTDIR)$(man1dir) |
3348 | $(mkinstalldirs) $(DESTDIR)$(man7dir) | |
79d8453e | 3349 | |
b71a6782 TV |
3350 | params.list: s-params.list; @true |
3351 | s-params.list: $(srcdir)/params-list.h $(srcdir)/params.def | |
3352 | $(CPP) $(srcdir)/params-list.h | sed 's/^#.*//;/^$$/d' > tmp-params.list | |
3353 | $(SHELL) $(srcdir)/../move-if-change tmp-params.list params.list | |
3354 | $(STAMP) s-params.list | |
3355 | ||
f507d202 ML |
3356 | params.options: s-params.options; @true |
3357 | s-params.options: $(srcdir)/params-options.h $(srcdir)/params.def | |
3358 | $(CPP) $(srcdir)/params-options.h | sed 's/^#.*//;/^$$/d' > tmp-params.options | |
3359 | $(SHELL) $(srcdir)/../move-if-change tmp-params.options params.options | |
3360 | $(STAMP) s-params.options | |
3361 | ||
3362 | ||
bf016de8 | 3363 | PLUGIN_HEADERS = $(TREE_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
9f25a338 | 3364 | toplev.h $(DIAGNOSTIC_CORE_H) $(BASIC_BLOCK_H) $(HASH_TABLE_H) \ |
2fb9a547 AM |
3365 | tree-ssa-alias.h $(INTERNAL_FN_H) gimple-fold.h tree-eh.h gimple-expr.h \ |
3366 | gimple.h is-a.h $(TREE_PASS_H) $(GCC_PLUGIN_H) \ | |
ee666c25 | 3367 | $(GGC_H) $(TREE_DUMP_H) $(PRETTY_PRINT_H) $(OPTS_H) $(PARAMS_H) \ |
cac1b0ee BS |
3368 | $(tm_file_list) $(tm_include_list) $(tm_p_file_list) $(tm_p_include_list) \ |
3369 | $(host_xm_file_list) $(host_xm_include_list) $(xm_include_list) \ | |
f895fc2a | 3370 | intl.h $(PLUGIN_VERSION_H) $(DIAGNOSTIC_H) ${C_TREE_H} \ |
61d3ce20 | 3371 | $(C_COMMON_H) c-family/c-objc.h $(C_PRETTY_PRINT_H) \ |
7a300452 | 3372 | tree-iterator.h $(PLUGIN_H) $(TREE_SSA_H) langhooks.h incpath.h debug.h \ |
3b06d379 | 3373 | $(EXCEPT_H) tree-ssa-sccvn.h real.h output.h $(IPA_UTILS_H) \ |
33887751 | 3374 | $(C_PRAGMA_H) $(CPPLIB_H) $(FUNCTION_H) \ |
d78182cc TV |
3375 | cppdefault.h flags.h $(MD5_H) params.def params.h params-enum.h \ |
3376 | prefix.h tree-inline.h $(GIMPLE_PRETTY_PRINT_H) realmpfr.h \ | |
e60661f0 | 3377 | $(IPA_PROP_H) $(TARGET_H) $(RTL_H) $(TM_P_H) $(CFGLOOP_H) $(EMIT_RTL_H) \ |
1aa26aac | 3378 | version.h stringpool.h gimplify.h gimple-iterator.h gimple-ssa.h \ |
5c1a2e63 RS |
3379 | fold-const.h fold-const-call.h tree-cfg.h tree-into-ssa.h tree-ssanames.h \ |
3380 | print-tree.h varasm.h context.h tree-phinodes.h stor-layout.h \ | |
3381 | ssa-iterators.h $(RESOURCE_H) tree-cfgcleanup.h attribs.h calls.h \ | |
3382 | cfgexpand.h diagnostic-color.h gcc-symtab.h gimple-builder.h gimple-low.h \ | |
4f0ddb6f JJ |
3383 | gimple-walk.h gimplify-me.h pass_manager.h print-rtl.h stmt.h \ |
3384 | tree-dfa.h tree-hasher.h tree-nested.h tree-object-size.h tree-outof-ssa.h \ | |
3385 | tree-parloops.h tree-ssa-address.h tree-ssa-coalesce.h tree-ssa-dom.h \ | |
3386 | tree-ssa-loop.h tree-ssa-loop-ivopts.h tree-ssa-loop-manip.h \ | |
3387 | tree-ssa-loop-niter.h tree-ssa-ter.h tree-ssa-threadedge.h \ | |
b3ba5f84 | 3388 | tree-ssa-threadupdate.h inchash.h wide-int.h signop.h hash-map.h \ |
6fb5f2f5 | 3389 | hash-set.h dominance.h cfg.h cfgrtl.h cfganal.h cfgbuild.h cfgcleanup.h \ |
26fb38a1 DM |
3390 | lcm.h cfgloopmanip.h builtins.def chkp-builtins.def pass-instances.def \ |
3391 | params.list | |
bf016de8 | 3392 | |
090fa0ab GF |
3393 | # generate the 'build fragment' b-header-vars |
3394 | s-header-vars: Makefile | |
3395 | rm -f tmp-header-vars | |
af0a7a92 OH |
3396 | # The first sed gets the list "header variables" as the list variables |
3397 | # assigned in Makefile and having _H at the end of the name. "sed -n" proved | |
3398 | # more portable than a trailing "-e d" to filter out the uninteresting lines, | |
3399 | # in particular on ia64-hpux where "s/.../p" only prints if -n was requested | |
3400 | # as well. | |
3401 | $(foreach header_var,$(shell sed < Makefile -n -e 's/^\([A-Z0-9_]*_H\)[ ]*=.*/\1/p'),echo $(header_var)=$(shell echo $($(header_var):$(srcdir)/%=.../%) | sed -e 's~\.\.\./config/~config/~' -e 's~\.\.\..*/~~') >> tmp-header-vars;) \ | |
090fa0ab GF |
3402 | $(SHELL) $(srcdir)/../move-if-change tmp-header-vars b-header-vars |
3403 | $(STAMP) s-header-vars | |
3404 | ||
f142b5bc RG |
3405 | # Install gengtype |
3406 | install-gengtype: installdirs gengtype$(exeext) gtype.state | |
3407 | $(mkinstalldirs) $(DESTDIR)$(plugin_resourcesdir) | |
3408 | $(INSTALL_DATA) gtype.state $(DESTDIR)$(plugin_resourcesdir)/gtype.state | |
3409 | $(mkinstalldirs) $(DESTDIR)$(plugin_bindir) | |
3410 | $(INSTALL_PROGRAM) gengtype$(exeext) $(DESTDIR)$(plugin_bindir)/gengtype$(exeext) | |
3411 | ||
bf016de8 | 3412 | # Install the headers needed to build a plugin. |
f142b5bc | 3413 | install-plugin: installdirs lang.install-plugin s-header-vars install-gengtype |
1baae426 RG |
3414 | # We keep the directory structure for files in config or c-family and .def |
3415 | # files. All other files are flattened to a single directory. | |
bf016de8 | 3416 | $(mkinstalldirs) $(DESTDIR)$(plugin_includedir) |
b626318e | 3417 | headers=`echo $(PLUGIN_HEADERS) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \ |
3b3e44eb | 3418 | srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \ |
bf016de8 RAE |
3419 | for file in $$headers; do \ |
3420 | if [ -f $$file ] ; then \ | |
3421 | path=$$file; \ | |
3422 | elif [ -f $(srcdir)/$$file ]; then \ | |
3423 | path=$(srcdir)/$$file; \ | |
3424 | else continue; \ | |
3425 | fi; \ | |
3426 | case $$path in \ | |
1baae426 | 3427 | "$(srcdir)"/config/* | "$(srcdir)"/c-family/* | "$(srcdir)"/*.def ) \ |
9419a9fd | 3428 | base=`echo "$$path" | sed -e "s|$$srcdirstrip/||"`;; \ |
bf016de8 RAE |
3429 | *) base=`basename $$path` ;; \ |
3430 | esac; \ | |
3431 | dest=$(plugin_includedir)/$$base; \ | |
86e3c83a | 3432 | echo $(INSTALL_DATA) $$path $(DESTDIR)$$dest; \ |
bf016de8 | 3433 | dir=`dirname $$dest`; \ |
86e3c83a MK |
3434 | $(mkinstalldirs) $(DESTDIR)$$dir; \ |
3435 | $(INSTALL_DATA) $$path $(DESTDIR)$$dest; \ | |
bf016de8 | 3436 | done |
090fa0ab | 3437 | $(INSTALL_DATA) b-header-vars $(DESTDIR)$(plugin_includedir)/b-header-vars |
bf016de8 | 3438 | |
79d8453e | 3439 | # Install the compiler executables built during cross compilation. |
fa958513 | 3440 | install-common: native lang.install-common installdirs |
79d8453e RS |
3441 | for file in $(COMPILERS); do \ |
3442 | if [ -f $$file ] ; then \ | |
a8ee6e2d GK |
3443 | rm -f $(DESTDIR)$(libexecsubdir)/$$file; \ |
3444 | $(INSTALL_PROGRAM) $$file $(DESTDIR)$(libexecsubdir)/$$file; \ | |
79d8453e RS |
3445 | else true; \ |
3446 | fi; \ | |
3447 | done | |
d82c57a8 | 3448 | for file in $(EXTRA_PROGRAMS) $(COLLECT2) ..; do \ |
79d8453e | 3449 | if [ x"$$file" != x.. ]; then \ |
a8ee6e2d GK |
3450 | rm -f $(DESTDIR)$(libexecsubdir)/$$file; \ |
3451 | $(INSTALL_PROGRAM) $$file $(DESTDIR)$(libexecsubdir)/$$file; \ | |
79d8453e RS |
3452 | else true; fi; \ |
3453 | done | |
e90f1b9d MM |
3454 | # We no longer install the specs file because its presence makes the |
3455 | # driver slower, and because people who need it can recreate it by | |
3456 | # using -dumpspecs. We remove any old version because it would | |
3457 | # otherwise override the specs built into the driver. | |
8ff61ea7 | 3458 | rm -f $(DESTDIR)$(libsubdir)/specs |
ca363bb6 | 3459 | # Install gcov if it was compiled. |
85c64bbe BS |
3460 | -if test "$(enable_as_accelerator)" != "yes" ; then \ |
3461 | if [ -f gcov$(exeext) ]; \ | |
3462 | then \ | |
3743ea05 | 3463 | rm -f $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \ |
90961eff | 3464 | $(INSTALL_PROGRAM) gcov$(exeext) $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \ |
85c64bbe | 3465 | fi; \ |
59a64126 | 3466 | fi |
c77556a5 | 3467 | # Install gcov-tool if it was compiled. |
85c64bbe BS |
3468 | -if test "$(enable_as_accelerator)" != "yes" ; then \ |
3469 | if [ -f gcov-tool$(exeext) ]; \ | |
3470 | then \ | |
c77556a5 RX |
3471 | rm -f $(DESTDIR)$(bindir)/$(GCOV_TOOL_INSTALL_NAME)$(exeext); \ |
3472 | $(INSTALL_PROGRAM) \ | |
3473 | gcov-tool$(exeext) $(DESTDIR)$(bindir)/$(GCOV_TOOL_INSTALL_NAME)$(exeext); \ | |
85c64bbe | 3474 | fi; \ |
c77556a5 | 3475 | fi |
aab26e16 | 3476 | |
5340bbea | 3477 | # Install the driver program as $(target_noncanonical)-gcc, |
90ae7019 | 3478 | # $(target_noncanonical)-gcc-$(version), and also as gcc if native. |
e658449e | 3479 | install-driver: installdirs xgcc$(exeext) |
439020ec KC |
3480 | -rm -f $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext) |
3481 | -$(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext) | |
85c64bbe BS |
3482 | -if test "$(enable_as_accelerator)" != "yes" ; then \ |
3483 | if [ "$(GCC_INSTALL_NAME)" != "$(target_noncanonical)-gcc-$(version)" ]; then \ | |
3484 | rm -f $(DESTDIR)$(bindir)/$(FULL_DRIVER_NAME); \ | |
3485 | ( cd $(DESTDIR)$(bindir) && \ | |
3486 | $(LN) $(GCC_INSTALL_NAME)$(exeext) $(FULL_DRIVER_NAME) ); \ | |
3487 | fi; \ | |
3488 | if [ ! -f gcc-cross$(exeext) ] \ | |
3489 | && [ "$(GCC_INSTALL_NAME)" != "$(GCC_TARGET_INSTALL_NAME)" ]; then \ | |
3490 | rm -f $(DESTDIR)$(bindir)/$(target_noncanonical)-gcc-tmp$(exeext); \ | |
3491 | ( cd $(DESTDIR)$(bindir) && \ | |
3492 | $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_noncanonical)-gcc-tmp$(exeext) && \ | |
3493 | mv -f $(target_noncanonical)-gcc-tmp$(exeext) $(GCC_TARGET_INSTALL_NAME)$(exeext) ); \ | |
3494 | fi; \ | |
79d8453e | 3495 | fi |
79d8453e | 3496 | |
0b2fbcb2 | 3497 | # Install the info files. |
feb9ea1a | 3498 | # $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir |
ee5b121e | 3499 | # to do the install. |
97ae108d MM |
3500 | install-info:: doc installdirs \ |
3501 | $(DESTDIR)$(infodir)/cpp.info \ | |
3502 | $(DESTDIR)$(infodir)/gcc.info \ | |
3503 | $(DESTDIR)$(infodir)/cppinternals.info \ | |
ee312cd0 | 3504 | $(DESTDIR)$(infodir)/gccinstall.info \ |
dedfa466 PB |
3505 | $(DESTDIR)$(infodir)/gccint.info \ |
3506 | lang.install-info | |
97ae108d | 3507 | |
a541f69d | 3508 | $(DESTDIR)$(infodir)/%.info: doc/%.info installdirs |
97ae108d MM |
3509 | rm -f $@ |
3510 | if [ -f $< ]; then \ | |
3511 | for f in $(<)*; do \ | |
17db6582 | 3512 | realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \ |
90961eff | 3513 | $(INSTALL_DATA) $$f $(DESTDIR)$(infodir)/$$realfile; \ |
3d56d025 | 3514 | chmod a-x $(DESTDIR)$(infodir)/$$realfile; \ |
17db6582 JM |
3515 | done; \ |
3516 | else true; fi | |
ee5b121e | 3517 | -if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \ |
a89f5df3 JM |
3518 | if [ -f $@ ]; then \ |
3519 | install-info --dir-file=$(DESTDIR)$(infodir)/dir $@; \ | |
f8c86b58 | 3520 | else true; fi; \ |
265ce5bb | 3521 | else true; fi; |
0b2fbcb2 | 3522 | |
bcc3d150 BM |
3523 | pdf__strip_dir = `echo $$p | sed -e 's|^.*/||'`; |
3524 | ||
3525 | install-pdf: $(PDFFILES) lang.install-pdf | |
3526 | @$(NORMAL_INSTALL) | |
3527 | test -z "$(pdfdir)/gcc" || $(mkinstalldirs) "$(DESTDIR)$(pdfdir)/gcc" | |
3528 | @list='$(PDFFILES)'; for p in $$list; do \ | |
3529 | if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ | |
3530 | f=$(pdf__strip_dir) \ | |
3531 | echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/gcc/$$f'"; \ | |
3532 | $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/gcc/$$f"; \ | |
3533 | done | |
3534 | ||
9288b845 | 3535 | html__strip_dir = `echo $$p | sed -e 's|^.*/||'`; |
d3dc619d | 3536 | |
55bcd32b | 3537 | install-html: $(HTMLS_BUILD) lang.install-html |
9288b845 | 3538 | @$(NORMAL_INSTALL) |
ab7efd91 | 3539 | test -z "$(htmldir)" || $(mkinstalldirs) "$(DESTDIR)$(htmldir)" |
9288b845 CD |
3540 | @list='$(HTMLS_INSTALL)'; for p in $$list; do \ |
3541 | if test -f "$$p" || test -d "$$p"; then d=""; else d="$(srcdir)/"; fi; \ | |
3542 | f=$(html__strip_dir) \ | |
3543 | if test -d "$$d$$p"; then \ | |
ab7efd91 CD |
3544 | echo " $(mkinstalldirs) '$(DESTDIR)$(htmldir)/$$f'"; \ |
3545 | $(mkinstalldirs) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \ | |
9288b845 CD |
3546 | echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \ |
3547 | $(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \ | |
3548 | else \ | |
3549 | echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \ | |
3550 | $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \ | |
3551 | fi; \ | |
3552 | done | |
3553 | ||
79d8453e | 3554 | # Install the man pages. |
7bfb5ccc | 3555 | install-man: lang.install-man \ |
a541f69d | 3556 | $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext) \ |
52ccb3d2 GK |
3557 | $(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext) \ |
3558 | $(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext) \ | |
a541f69d KC |
3559 | $(DESTDIR)$(man7dir)/fsf-funding$(man7ext) \ |
3560 | $(DESTDIR)$(man7dir)/gfdl$(man7ext) \ | |
3561 | $(DESTDIR)$(man7dir)/gpl$(man7ext) | |
3562 | ||
7bfb5ccc | 3563 | $(DESTDIR)$(man7dir)/%$(man7ext): doc/%.7 installdirs |
a541f69d KC |
3564 | -rm -f $@ |
3565 | -$(INSTALL_DATA) $< $@ | |
3566 | -chmod a-x $@ | |
3567 | ||
7bfb5ccc | 3568 | $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext): doc/gcc.1 installdirs |
a541f69d | 3569 | -rm -f $@ |
5340bbea | 3570 | -$(INSTALL_DATA) $< $@ |
a541f69d KC |
3571 | -chmod a-x $@ |
3572 | ||
7bfb5ccc | 3573 | $(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext): doc/cpp.1 installdirs |
52ccb3d2 | 3574 | -rm -f $@ |
5340bbea | 3575 | -$(INSTALL_DATA) $< $@ |
52ccb3d2 GK |
3576 | -chmod a-x $@ |
3577 | ||
7bfb5ccc | 3578 | $(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext): doc/gcov.1 installdirs |
a541f69d | 3579 | -rm -f $@ |
5340bbea | 3580 | -$(INSTALL_DATA) $< $@ |
a541f69d | 3581 | -chmod a-x $@ |
79d8453e | 3582 | |
c77556a5 RX |
3583 | $(DESTDIR)$(man1dir)/$(GCOV_TOOL_INSTALL_NAME)$(man1ext): doc/gcov-tool.1 installdirs |
3584 | -rm -f $@ | |
3585 | -$(INSTALL_DATA) $< $@ | |
3586 | -chmod a-x $@ | |
3587 | ||
ba1811f1 | 3588 | # Install all the header files built in the include subdirectory. |
fecd6201 | 3589 | install-headers: $(INSTALL_HEADERS_DIR) |
ba1811f1 ILT |
3590 | # Fix symlinks to absolute paths in the installed include directory to |
3591 | # point to the installed directory, not the build directory. | |
ac64120e | 3592 | # Don't need to use LN_S here since we really do need ln -s and no substitutes. |
f686ec05 | 3593 | -files=`cd $(DESTDIR)$(libsubdir)/include-fixed; find . -type l -print 2>/dev/null`; \ |
ba1811f1 | 3594 | if [ $$? -eq 0 ]; then \ |
f686ec05 | 3595 | dir=`cd include-fixed; ${PWD_COMMAND}`; \ |
ba1811f1 | 3596 | for i in $$files; do \ |
f686ec05 | 3597 | dest=`ls -ld $(DESTDIR)$(libsubdir)/include-fixed/$$i | sed -n 's/.*-> //p'`; \ |
ba1811f1 | 3598 | if expr "$$dest" : "$$dir.*" > /dev/null; then \ |
f686ec05 JM |
3599 | rm -f $(DESTDIR)$(libsubdir)/include-fixed/$$i; \ |
3600 | ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(DESTDIR)$(libsubdir)/include-fixed/$$i; \ | |
ba1811f1 ILT |
3601 | fi; \ |
3602 | done; \ | |
3603 | fi | |
79d8453e | 3604 | |
ba1811f1 | 3605 | # Create or recreate the gcc private include file directory. |
69cbb85a | 3606 | install-include-dir: installdirs |
d3dc619d | 3607 | $(mkinstalldirs) $(DESTDIR)$(libsubdir)/include |
f686ec05 | 3608 | -rm -rf $(DESTDIR)$(libsubdir)/include-fixed |
f686ec05 | 3609 | mkdir $(DESTDIR)$(libsubdir)/include-fixed |
f686ec05 | 3610 | -chmod a+rx $(DESTDIR)$(libsubdir)/include-fixed |
ba1811f1 | 3611 | |
f08dd1f8 ZW |
3612 | # Create or recreate the install-tools include file directory. |
3613 | itoolsdir = $(libexecsubdir)/install-tools | |
3614 | itoolsdatadir = $(libsubdir)/install-tools | |
3615 | install-itoolsdirs: installdirs | |
3616 | $(mkinstalldirs) $(DESTDIR)$(itoolsdatadir)/include | |
3617 | $(mkinstalldirs) $(DESTDIR)$(itoolsdir) | |
3618 | ||
ba1811f1 | 3619 | # Install the include directory using tar. |
52c0e446 | 3620 | install-headers-tar: stmp-int-hdrs install-include-dir |
965c3f43 AO |
3621 | # We use `pwd`/include instead of just include to problems with CDPATH |
3622 | # Unless a full pathname is provided, some shells would print the new CWD, | |
3623 | # found in CDPATH, corrupting the output. We could just redirect the | |
3624 | # output of `cd', but some shells lose on redirection within `()'s | |
8c90b13a | 3625 | (cd `${PWD_COMMAND}`/include ; \ |
90961eff | 3626 | tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include; tar xpf - ) |
f686ec05 JM |
3627 | (cd `${PWD_COMMAND}`/include-fixed ; \ |
3628 | tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include-fixed; tar xpf - ) | |
e6431ec5 RS |
3629 | # /bin/sh on some systems returns the status of the first tar, |
3630 | # and that can lose with GNU tar which always writes a full block. | |
3631 | # So use `exit 0' to ignore its exit status. | |
ba1811f1 ILT |
3632 | |
3633 | # Install the include directory using cpio. | |
52c0e446 | 3634 | install-headers-cpio: stmp-int-hdrs install-include-dir |
965c3f43 | 3635 | # See discussion about the use of `pwd` above |
8c90b13a | 3636 | cd `${PWD_COMMAND}`/include ; \ |
90961eff | 3637 | find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include |
f686ec05 JM |
3638 | cd `${PWD_COMMAND}`/include-fixed ; \ |
3639 | find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include-fixed | |
79d8453e | 3640 | |
ff3aaf17 | 3641 | # Install the include directory using cp. |
52c0e446 | 3642 | install-headers-cp: stmp-int-hdrs install-include-dir |
90961eff | 3643 | cp -p -r include $(DESTDIR)$(libsubdir) |
f686ec05 | 3644 | cp -p -r include-fixed $(DESTDIR)$(libsubdir) |
ff3aaf17 | 3645 | |
9fb03bd8 DJ |
3646 | # Targets without dependencies, for use in prev-gcc during bootstrap. |
3647 | real-install-headers-tar: | |
f686ec05 JM |
3648 | (cd `${PWD_COMMAND}`/include-fixed ; \ |
3649 | tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include-fixed; tar xpf - ) | |
9fb03bd8 DJ |
3650 | |
3651 | real-install-headers-cpio: | |
f686ec05 JM |
3652 | cd `${PWD_COMMAND}`/include-fixed ; \ |
3653 | find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include-fixed | |
9fb03bd8 DJ |
3654 | |
3655 | real-install-headers-cp: | |
f686ec05 | 3656 | cp -p -r include-fixed $(DESTDIR)$(libsubdir) |
9fb03bd8 | 3657 | |
53c7ffe7 | 3658 | # Install supporting files for fixincludes to be run later. |
52c0e446 | 3659 | install-mkheaders: stmp-int-hdrs install-itoolsdirs \ |
14da6073 | 3660 | macro_list fixinc_list |
53c7ffe7 GK |
3661 | $(INSTALL_DATA) $(srcdir)/gsyslimits.h \ |
3662 | $(DESTDIR)$(itoolsdatadir)/gsyslimits.h | |
3663 | $(INSTALL_DATA) macro_list $(DESTDIR)$(itoolsdatadir)/macro_list | |
14da6073 JM |
3664 | $(INSTALL_DATA) fixinc_list $(DESTDIR)$(itoolsdatadir)/fixinc_list |
3665 | set -e; for ml in `cat fixinc_list`; do \ | |
3666 | multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \ | |
3667 | $(mkinstalldirs) $(DESTDIR)$(itoolsdatadir)/include$${multi_dir}; \ | |
3668 | $(INSTALL_DATA) include-fixed$${multidir}/limits.h $(DESTDIR)$(itoolsdatadir)/include$${multi_dir}/limits.h; \ | |
3669 | done | |
3670 | $(INSTALL_SCRIPT) $(srcdir)/../mkinstalldirs \ | |
90961eff | 3671 | $(DESTDIR)$(itoolsdir)/mkinstalldirs ; \ |
14da6073 JM |
3672 | sysroot_headers_suffix='$${sysroot_headers_suffix}'; \ |
3673 | echo 'SYSTEM_HEADER_DIR="'"$(SYSTEM_HEADER_DIR)"'"' \ | |
a8ee6e2d | 3674 | > $(DESTDIR)$(itoolsdatadir)/mkheaders.conf |
e34a3d31 | 3675 | echo 'OTHER_FIXINCLUDES_DIRS="$(OTHER_FIXINCLUDES_DIRS)"' \ |
a8ee6e2d | 3676 | >> $(DESTDIR)$(itoolsdatadir)/mkheaders.conf |
a8ee6e2d GK |
3677 | echo 'STMP_FIXINC="$(STMP_FIXINC)"' \ |
3678 | >> $(DESTDIR)$(itoolsdatadir)/mkheaders.conf | |
e34a3d31 | 3679 | |
10da1131 | 3680 | # Use this target to install the program `collect2' under the name `collect2'. |
69cbb85a | 3681 | install-collect2: collect2 installdirs |
a8ee6e2d | 3682 | $(INSTALL_PROGRAM) collect2$(exeext) $(DESTDIR)$(libexecsubdir)/collect2$(exeext) |
2e494f70 | 3683 | # Install the driver program as $(libsubdir)/gcc for collect2. |
a8ee6e2d | 3684 | $(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(libexecsubdir)/gcc$(exeext) |
2e494f70 | 3685 | |
d7f09764 DN |
3686 | # Install lto-wrapper. |
3687 | install-lto-wrapper: lto-wrapper$(exeext) | |
3688 | $(INSTALL_PROGRAM) lto-wrapper$(exeext) $(DESTDIR)$(libexecsubdir)/lto-wrapper$(exeext) | |
7ac8318c | 3689 | |
d6baa446 | 3690 | install-gcc-ar: installdirs gcc-ar$(exeext) gcc-nm$(exeext) gcc-ranlib$(exeext) |
85c64bbe BS |
3691 | if test "$(enable_as_accelerator)" != "yes" ; then \ |
3692 | for i in gcc-ar gcc-nm gcc-ranlib; do \ | |
3693 | install_name=`echo $$i|sed '$(program_transform_name)'` ;\ | |
3694 | target_install_name=$(target_noncanonical)-`echo $$i|sed '$(program_transform_name)'` ; \ | |
3695 | rm -f $(DESTDIR)$(bindir)/$$install_name$(exeext) ; \ | |
3696 | $(INSTALL_PROGRAM) $$i$(exeext) $(DESTDIR)$(bindir)/$$install_name$(exeext) ;\ | |
3697 | if test -f gcc-cross$(exeext); then \ | |
3698 | :; \ | |
3699 | else \ | |
3700 | rm -f $(DESTDIR)$(bindir)/$$target_install_name$(exeext); \ | |
3701 | ( cd $(DESTDIR)$(bindir) && \ | |
3702 | $(LN) $$install_name$(exeext) $$target_install_name$(exeext) ) ; \ | |
3703 | fi ; \ | |
3704 | done; \ | |
3705 | fi | |
b6b89215 | 3706 | |
79d8453e | 3707 | # Cancel installation by deleting the installed files. |
6eb95e99 | 3708 | uninstall: lang.uninstall |
90961eff | 3709 | -rm -rf $(DESTDIR)$(libsubdir) |
a8ee6e2d | 3710 | -rm -rf $(DESTDIR)$(libexecsubdir) |
90961eff | 3711 | -rm -rf $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext) |
90961eff | 3712 | -rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext) |
1e730c5c | 3713 | -if [ x$(cpp_install_dir) != x ]; then \ |
90961eff | 3714 | rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \ |
1e730c5c | 3715 | else true; fi |
90961eff AJ |
3716 | -rm -rf $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext) |
3717 | -rm -rf $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext) | |
90961eff | 3718 | -rm -rf $(DESTDIR)$(man1dir)/cpp$(man1ext) |
90961eff AJ |
3719 | -rm -f $(DESTDIR)$(infodir)/cpp.info* $(DESTDIR)$(infodir)/gcc.info* |
3720 | -rm -f $(DESTDIR)$(infodir)/cppinternals.info* $(DESTDIR)$(infodir)/gccint.info* | |
b6b89215 AK |
3721 | for i in ar nm ranlib ; do \ |
3722 | install_name=`echo gcc-$$i|sed '$(program_transform_name)'`$(exeext) ;\ | |
3723 | target_install_name=$(target_noncanonical)-`echo gcc-$$i|sed '$(program_transform_name)'`$(exeext) ; \ | |
3724 | rm -f $(DESTDIR)$(bindir)/$$install_name ; \ | |
3725 | rm -f $(DESTDIR)$(bindir)/$$target_install_name ; \ | |
3726 | done | |
544eb21e | 3727 | #\f |
4c457b6b | 3728 | # These targets are for the dejagnu testsuites. The file site.exp |
e933cbe0 JL |
3729 | # contains global variables that all the testsuites will use. |
3730 | ||
e933cbe0 JL |
3731 | target_subdir = @target_subdir@ |
3732 | ||
3733 | site.exp: ./config.status Makefile | |
3734 | @echo "Making a new config file..." | |
f103fa7a | 3735 | -@rm -f ./site.tmp |
d9835ae8 | 3736 | @$(STAMP) site.exp |
e933cbe0 | 3737 | -@mv site.exp site.bak |
f103fa7a RG |
3738 | @echo "## these variables are automatically generated by make ##" > ./site.tmp |
3739 | @echo "# Do not edit here. If you wish to override these values" >> ./site.tmp | |
3740 | @echo "# add them to the last section" >> ./site.tmp | |
3741 | @echo "set rootme \"`${PWD_COMMAND}`\"" >> ./site.tmp | |
3742 | @echo "set srcdir \"`cd ${srcdir}; ${PWD_COMMAND}`\"" >> ./site.tmp | |
3743 | @echo "set host_triplet $(host)" >> ./site.tmp | |
3744 | @echo "set build_triplet $(build)" >> ./site.tmp | |
3745 | @echo "set target_triplet $(target)" >> ./site.tmp | |
3746 | @echo "set target_alias $(target_noncanonical)" >> ./site.tmp | |
3747 | @echo "set libiconv \"$(LIBICONV)\"" >> ./site.tmp | |
e933cbe0 | 3748 | # CFLAGS is set even though it's empty to show we reserve the right to set it. |
f103fa7a RG |
3749 | @echo "set CFLAGS \"\"" >> ./site.tmp |
3750 | @echo "set CXXFLAGS \"\"" >> ./site.tmp | |
3751 | @echo "set HOSTCC \"$(CC)\"" >> ./site.tmp | |
3752 | @echo "set HOSTCFLAGS \"$(CFLAGS)\"" >> ./site.tmp | |
c875f596 DN |
3753 | # TEST_ALWAYS_FLAGS are flags that should be passed to every compilation. |
3754 | # They are passed first to allow individual tests to override them. | |
3755 | @echo "set TEST_ALWAYS_FLAGS \"$(SYSROOT_CFLAGS_FOR_TARGET)\"" >> ./site.tmp | |
4d936aca JJ |
3756 | # When running the tests we set GCC_EXEC_PREFIX to the install tree so that |
3757 | # files that have already been installed there will be found. The -B option | |
3758 | # overrides it, so use of GCC_EXEC_PREFIX will not result in using GCC files | |
3759 | # from the install tree. | |
f103fa7a RG |
3760 | @echo "set TEST_GCC_EXEC_PREFIX \"$(libdir)/gcc/\"" >> ./site.tmp |
3761 | @echo "set TESTING_IN_BUILD_TREE 1" >> ./site.tmp | |
3762 | @echo "set HAVE_LIBSTDCXX_V3 1" >> ./site.tmp | |
68a607d8 | 3763 | @if test "@enable_plugin@" = "yes" ; then \ |
f103fa7a RG |
3764 | echo "set ENABLE_PLUGIN 1" >> ./site.tmp; \ |
3765 | echo "set PLUGINCC \"$(PLUGINCC)\"" >> ./site.tmp; \ | |
3766 | echo "set PLUGINCFLAGS \"$(PLUGINCFLAGS)\"" >> ./site.tmp; \ | |
3767 | echo "set GMPINC \"$(GMPINC)\"" >> ./site.tmp; \ | |
68a607d8 | 3768 | fi |
1e050c90 | 3769 | @echo "set ISLVER \"$(ISLVER)\"" >> ./site.tmp |
e933cbe0 JL |
3770 | # If newlib has been configured, we need to pass -B to gcc so it can find |
3771 | # newlib's crt0.o if it exists. This will cause a "path prefix not used" | |
3772 | # message if it doesn't, but the testsuite is supposed to ignore the message - | |
3773 | # it's too difficult to tell when to and when not to pass -B (not all targets | |
3774 | # have crt0's). We could only add the -B if ../newlib/crt0.o exists, but that | |
3775 | # seems like too selective a test. | |
3776 | # ??? Another way to solve this might be to rely on linker scripts. Then | |
3777 | # theoretically the -B won't be needed. | |
3778 | # We also need to pass -L ../ld so that the linker can find ldscripts. | |
6a1b7268 | 3779 | @if [ -d $(objdir)/../$(target_subdir)/newlib ] \ |
4665e56c | 3780 | && [ "${host}" != "${target}" ]; then \ |
f103fa7a RG |
3781 | echo "set newlib_cflags \"-I$(objdir)/../$(target_subdir)/newlib/targ-include -I\$$srcdir/../newlib/libc/include\"" >> ./site.tmp; \ |
3782 | echo "set newlib_ldflags \"-B$(objdir)/../$(target_subdir)/newlib/\"" >> ./site.tmp; \ | |
3783 | echo "append CFLAGS \" \$$newlib_cflags\"" >> ./site.tmp; \ | |
3784 | echo "append CXXFLAGS \" \$$newlib_cflags\"" >> ./site.tmp; \ | |
3785 | echo "append LDFLAGS \" \$$newlib_ldflags\"" >> ./site.tmp; \ | |
e933cbe0 JL |
3786 | else true; \ |
3787 | fi | |
3788 | @if [ -d $(objdir)/../ld ] ; then \ | |
f103fa7a | 3789 | echo "append LDFLAGS \" -L$(objdir)/../ld\"" >> ./site.tmp; \ |
e933cbe0 JL |
3790 | else true; \ |
3791 | fi | |
f103fa7a RG |
3792 | echo "set tmpdir $(objdir)/testsuite" >> ./site.tmp |
3793 | @echo "set srcdir \"\$${srcdir}/testsuite\"" >> ./site.tmp | |
6ccfe27c | 3794 | @if [ "X$(ALT_CC_UNDER_TEST)" != "X" ] ; then \ |
f103fa7a | 3795 | echo "set ALT_CC_UNDER_TEST \"$(ALT_CC_UNDER_TEST)\"" >> ./site.tmp; \ |
6ccfe27c JJ |
3796 | else true; \ |
3797 | fi | |
fa870451 | 3798 | @if [ "X$(ALT_CXX_UNDER_TEST)" != "X" ] ; then \ |
f103fa7a | 3799 | echo "set ALT_CXX_UNDER_TEST \"$(ALT_CXX_UNDER_TEST)\"" >> ./site.tmp; \ |
fa870451 JJ |
3800 | else true; \ |
3801 | fi | |
3802 | @if [ "X$(COMPAT_OPTIONS)" != "X" ] ; then \ | |
f103fa7a | 3803 | echo "set COMPAT_OPTIONS \"$(COMPAT_OPTIONS)\"" >> ./site.tmp; \ |
fa870451 JJ |
3804 | else true; \ |
3805 | fi | |
f103fa7a RG |
3806 | @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./site.tmp |
3807 | @cat ./site.tmp > site.exp | |
e933cbe0 JL |
3808 | @cat site.bak | sed \ |
3809 | -e '1,/^## All variables above are.*##/ d' >> site.exp | |
f103fa7a | 3810 | -@rm -f ./site.tmp |
e933cbe0 | 3811 | |
d4a10d0a | 3812 | CHECK_TARGETS = @check_languages@ |
cbc59f01 | 3813 | |
e933cbe0 JL |
3814 | check: $(CHECK_TARGETS) |
3815 | ||
7134e605 JJ |
3816 | check-subtargets: $(patsubst %,%-subtargets,$(CHECK_TARGETS)) |
3817 | ||
a738a85c | 3818 | # The idea is to parallelize testing of multilibs, for example: |
7dd232a8 | 3819 | # make -j3 check-gcc//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu} |
a738a85c AO |
3820 | # will run 3 concurrent sessions of check-gcc, eventually testing |
3821 | # all 10 combinations. GNU make is required, as is a shell that expands | |
3822 | # alternations within braces. | |
49a41726 JM |
3823 | lang_checks_parallel = $(lang_checks:=//%) |
3824 | $(lang_checks_parallel): site.exp | |
7dd232a8 AO |
3825 | target=`echo "$@" | sed 's,//.*,,'`; \ |
3826 | variant=`echo "$@" | sed 's,^[^/]*//,,'`; \ | |
a738a85c AO |
3827 | vardots=`echo "$$variant" | sed 's,/,.,g'`; \ |
3828 | $(MAKE) TESTSUITEDIR="testsuite.$$vardots" \ | |
8207e1fb | 3829 | RUNTESTFLAGS="--target_board=$$variant $(RUNTESTFLAGS)" \ |
a738a85c AO |
3830 | "$$target" |
3831 | ||
3832 | TESTSUITEDIR = testsuite | |
3833 | ||
3834 | $(TESTSUITEDIR)/site.exp: site.exp | |
577092ba | 3835 | -test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR) |
a738a85c | 3836 | -rm -f $@ |
453897b4 | 3837 | sed '/set tmpdir/ s|testsuite$$|$(TESTSUITEDIR)|' < site.exp > $@ |
a738a85c | 3838 | |
7134e605 JJ |
3839 | # This is only used for check-% targets that aren't parallelized. |
3840 | $(filter-out $(lang_checks_parallelized),$(lang_checks)): check-% : site.exp | |
4adbd5dd | 3841 | -test -d plugin || mkdir plugin |
577092ba | 3842 | -test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR) |
fea4cfe0 | 3843 | test -d $(TESTSUITEDIR)/$* || mkdir $(TESTSUITEDIR)/$* |
8c90b13a L |
3844 | -(rootme=`${PWD_COMMAND}`; export rootme; \ |
3845 | srcdir=`cd ${srcdir}; ${PWD_COMMAND}` ; export srcdir ; \ | |
fea4cfe0 L |
3846 | cd $(TESTSUITEDIR)/$*; \ |
3847 | rm -f tmp-site.exp; \ | |
453897b4 | 3848 | sed '/set tmpdir/ s|testsuite$$|$(TESTSUITEDIR)/$*|' \ |
fea4cfe0 | 3849 | < ../../site.exp > tmp-site.exp; \ |
88405bd3 | 3850 | $(SHELL) $${srcdir}/../move-if-change tmp-site.exp site.exp; \ |
d8bb17c8 OP |
3851 | EXPECT=${EXPECT} ; export EXPECT ; \ |
3852 | if [ -f $${rootme}/../expect/expect ] ; then \ | |
88405bd3 | 3853 | TCL_LIBRARY=`cd .. ; cd $${srcdir}/../tcl/library ; ${PWD_COMMAND}` ; \ |
d8bb17c8 | 3854 | export TCL_LIBRARY ; fi ; \ |
4b09846b | 3855 | $(RUNTEST) --tool $* $(RUNTESTFLAGS)) |
d8bb17c8 | 3856 | |
717c4789 | 3857 | $(patsubst %,%-subtargets,$(lang_checks)): check-%-subtargets: |
7134e605 JJ |
3858 | @echo check-$* |
3859 | ||
3860 | check_p_tool=$(firstword $(subst _, ,$*)) | |
717c4789 | 3861 | check_p_count=$(check_$(check_p_tool)_parallelize) |
7134e605 | 3862 | check_p_subno=$(word 2,$(subst _, ,$*)) |
717c4789 JJ |
3863 | check_p_numbers0:=1 2 3 4 5 6 7 8 9 |
3864 | check_p_numbers1:=0 $(check_p_numbers0) | |
3865 | check_p_numbers2:=$(foreach i,$(check_p_numbers0),$(addprefix $(i),$(check_p_numbers1))) | |
3866 | check_p_numbers3:=$(addprefix 0,$(check_p_numbers1)) $(check_p_numbers2) | |
3867 | check_p_numbers4:=$(foreach i,$(check_p_numbers0),$(addprefix $(i),$(check_p_numbers3))) | |
3868 | check_p_numbers5:=$(addprefix 0,$(check_p_numbers3)) $(check_p_numbers4) | |
3869 | check_p_numbers6:=$(foreach i,$(check_p_numbers0),$(addprefix $(i),$(check_p_numbers5))) | |
3870 | check_p_numbers:=$(check_p_numbers0) $(check_p_numbers2) $(check_p_numbers4) $(check_p_numbers6) | |
7134e605 | 3871 | check_p_subdir=$(subst _,,$*) |
717c4789 JJ |
3872 | check_p_subdirs=$(wordlist 1,$(check_p_count),$(wordlist 1, \ |
3873 | $(if $(GCC_TEST_PARALLEL_SLOTS),$(GCC_TEST_PARALLEL_SLOTS),128), \ | |
3874 | $(check_p_numbers))) | |
7134e605 JJ |
3875 | |
3876 | # For parallelized check-% targets, this decides whether parallelization | |
83022253 CL |
3877 | # is desirable (if -jN is used). If desirable, recursive make is run with |
3878 | # check-parallel-$lang{,1,2,3,4,5} etc. goals, which can be executed in | |
3879 | # parallel, as they are run in separate directories. | |
717c4789 JJ |
3880 | # check-parallel-$lang{,1,2,3,4,5} etc. goals invoke runtest with |
3881 | # GCC_RUNTEST_PARALLELIZE_DIR var in the environment and runtest_file_p | |
3882 | # dejaGNU procedure is overridden to additionally synchronize through | |
3883 | # a $lang-parallel directory which tests will be run by which runtest instance. | |
7134e605 JJ |
3884 | # Afterwards contrib/dg-extract-results.sh is used to merge the sum and log |
3885 | # files. If parallelization isn't desirable, only one recursive make | |
3886 | # is run with check-parallel-$lang goal and check_$lang_parallelize variable | |
3887 | # cleared to say that no additional arguments beyond $(RUNTESTFLAGS) | |
3888 | # should be passed to runtest. | |
3889 | # | |
3890 | # To parallelize some language check, add the corresponding check-$lang | |
3891 | # to lang_checks_parallelized variable and define check_$lang_parallelize | |
a95492ab JW |
3892 | # variable. This is the upper limit to which it is useful to parallelize the |
3893 | # check-$lang target. It doesn't make sense to try e.g. 128 goals for small | |
3894 | # testsuites like objc or go. | |
7134e605 | 3895 | $(lang_checks_parallelized): check-% : site.exp |
717c4789 JJ |
3896 | -rm -rf $(TESTSUITEDIR)/$*-parallel |
3897 | @if [ "$(filter -j, $(MFLAGS))" = "-j" ]; then \ | |
3898 | test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR) || true; \ | |
3899 | test -d $(TESTSUITEDIR)/$*-parallel || mkdir $(TESTSUITEDIR)/$*-parallel || true; \ | |
3900 | GCC_RUNTEST_PARALLELIZE_DIR=`${PWD_COMMAND}`/$(TESTSUITEDIR)/$(check_p_tool)-parallel ; \ | |
3901 | export GCC_RUNTEST_PARALLELIZE_DIR ; \ | |
8207e1fb | 3902 | $(MAKE) TESTSUITEDIR="$(TESTSUITEDIR)" RUNTESTFLAGS="$(RUNTESTFLAGS)" \ |
7134e605 JJ |
3903 | check-parallel-$* \ |
3904 | $(patsubst %,check-parallel-$*_%, $(check_p_subdirs)); \ | |
717c4789 JJ |
3905 | sums= ; logs= ; \ |
3906 | for dir in $(TESTSUITEDIR)/$* \ | |
3907 | $(patsubst %,$(TESTSUITEDIR)/$*%,$(check_p_subdirs));\ | |
7134e605 | 3908 | do \ |
717c4789 JJ |
3909 | if [ -d $$dir ]; then \ |
3910 | mv -f $$dir/$*.sum $$dir/$*.sum.sep; mv -f $$dir/$*.log $$dir/$*.log.sep; \ | |
3911 | sums="$$sums $$dir/$*.sum.sep"; logs="$$logs $$dir/$*.log.sep"; \ | |
3912 | fi; \ | |
7134e605 | 3913 | done; \ |
717c4789 | 3914 | $(SHELL) $(srcdir)/../contrib/dg-extract-results.sh $$sums \ |
7134e605 | 3915 | > $(TESTSUITEDIR)/$*/$*.sum; \ |
717c4789 | 3916 | $(SHELL) $(srcdir)/../contrib/dg-extract-results.sh -L $$logs \ |
7134e605 | 3917 | > $(TESTSUITEDIR)/$*/$*.log; \ |
717c4789 | 3918 | rm -rf $(TESTSUITEDIR)/$*-parallel || true; \ |
7134e605 | 3919 | else \ |
8207e1fb | 3920 | $(MAKE) TESTSUITEDIR="$(TESTSUITEDIR)" RUNTESTFLAGS="$(RUNTESTFLAGS)" \ |
7134e605 JJ |
3921 | check_$*_parallelize= check-parallel-$*; \ |
3922 | fi | |
3923 | ||
7134e605 | 3924 | check-parallel-% : site.exp |
2eac0853 JM |
3925 | -@test -d plugin || mkdir plugin |
3926 | -@test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR) | |
3927 | @test -d $(TESTSUITEDIR)/$(check_p_subdir) || mkdir $(TESTSUITEDIR)/$(check_p_subdir) | |
3928 | -$(if $(check_p_subno),@)(rootme=`${PWD_COMMAND}`; export rootme; \ | |
7134e605 | 3929 | srcdir=`cd ${srcdir}; ${PWD_COMMAND}` ; export srcdir ; \ |
717c4789 JJ |
3930 | if [ -n "$(check_p_subno)" ] \ |
3931 | && [ -n "$$GCC_RUNTEST_PARALLELIZE_DIR" ] \ | |
3932 | && [ -f $(TESTSUITEDIR)/$(check_p_tool)-parallel/finished ]; then \ | |
3933 | rm -rf $(TESTSUITEDIR)/$(check_p_subdir); \ | |
3934 | else \ | |
3935 | cd $(TESTSUITEDIR)/$(check_p_subdir); \ | |
3936 | rm -f tmp-site.exp; \ | |
3937 | sed '/set tmpdir/ s|testsuite$$|$(TESTSUITEDIR)/$(check_p_subdir)|' \ | |
7134e605 | 3938 | < ../../site.exp > tmp-site.exp; \ |
717c4789 JJ |
3939 | $(SHELL) $${srcdir}/../move-if-change tmp-site.exp site.exp; \ |
3940 | EXPECT=${EXPECT} ; export EXPECT ; \ | |
3941 | if [ -f $${rootme}/../expect/expect ] ; then \ | |
3942 | TCL_LIBRARY=`cd .. ; cd $${srcdir}/../tcl/library ; ${PWD_COMMAND}` ; \ | |
3943 | export TCL_LIBRARY ; \ | |
3944 | fi ; \ | |
3945 | $(RUNTEST) --tool $(check_p_tool) $(RUNTESTFLAGS); \ | |
3946 | if [ -n "$$GCC_RUNTEST_PARALLELIZE_DIR" ] ; then \ | |
3947 | touch $${rootme}/$(TESTSUITEDIR)/$(check_p_tool)-parallel/finished; \ | |
3948 | fi ; \ | |
3949 | fi ) | |
7134e605 | 3950 | |
f362c762 MM |
3951 | # QMTest targets |
3952 | ||
3953 | # The path to qmtest. | |
3954 | QMTEST_PATH=qmtest | |
3955 | ||
3956 | # The flags to pass to qmtest. | |
3957 | QMTESTFLAGS= | |
3958 | ||
3959 | # The flags to pass to "qmtest run". | |
d7068b3d | 3960 | QMTESTRUNFLAGS=-f none --result-stream dejagnu_stream.DejaGNUStream |
f362c762 MM |
3961 | |
3962 | # The command to use to invoke qmtest. | |
3963 | QMTEST=${QMTEST_PATH} ${QMTESTFLAGS} | |
3964 | ||
3965 | # The tests (or suites) to run. | |
d7068b3d | 3966 | QMTEST_GPP_TESTS=g++ |
f362c762 MM |
3967 | |
3968 | # The subdirectory of the OBJDIR that will be used to store the QMTest | |
3969 | # test database configuration and that will be used for temporary | |
3970 | # scratch space during QMTest's execution. | |
62363d99 | 3971 | QMTEST_DIR=qmtestsuite |
f362c762 MM |
3972 | |
3973 | # Create the QMTest database configuration. | |
3974 | ${QMTEST_DIR} stamp-qmtest: | |
d7068b3d MM |
3975 | ${QMTEST} -D ${QMTEST_DIR} create-tdb \ |
3976 | -c gcc_database.GCCDatabase \ | |
7134e605 | 3977 | -a srcdir=`cd ${srcdir}/testsuite && ${PWD_COMMAND}` && \ |
d7068b3d | 3978 | $(STAMP) stamp-qmtest |
f362c762 MM |
3979 | |
3980 | # Create the QMTest context file. | |
3981 | ${QMTEST_DIR}/context: stamp-qmtest | |
d7068b3d MM |
3982 | rm -f $@ |
3983 | echo "CompilerTable.languages=c cplusplus" >> $@ | |
3984 | echo "CompilerTable.c_kind=GCC" >> $@ | |
3985 | echo "CompilerTable.c_path=${objdir}/xgcc" >> $@ | |
3986 | echo "CompilerTable.c_options=-B${objdir}/" >> $@ | |
3987 | echo "CompilerTable.cplusplus_kind=GCC" >> $@ | |
5d99894e | 3988 | echo "CompilerTable.cplusplus_path=${objdir}/xg++" >> $@ |
d7068b3d | 3989 | echo "CompilerTable.cplusplus_options=-B${objdir}/" >> $@ |
caa55b1e | 3990 | echo "DejaGNUTest.target=${target_noncanonical}" >> $@ |
f362c762 MM |
3991 | |
3992 | # Run the G++ testsuite using QMTest. | |
d7068b3d | 3993 | qmtest-g++: ${QMTEST_DIR}/context |
f362c762 | 3994 | cd ${QMTEST_DIR} && ${QMTEST} run ${QMTESTRUNFLAGS} -C context \ |
d7068b3d | 3995 | -o g++.qmr ${QMTEST_GPP_TESTS} |
f362c762 MM |
3996 | |
3997 | # Use the QMTest GUI. | |
3998 | qmtest-gui: ${QMTEST_DIR}/context | |
3999 | cd ${QMTEST_DIR} && ${QMTEST} gui -C context | |
4000 | ||
f362c762 MM |
4001 | .PHONY: qmtest-g++ |
4002 | ||
efdc7e19 RH |
4003 | # Run Paranoia on real.c. |
4004 | ||
40013784 | 4005 | paranoia.o: $(srcdir)/../contrib/paranoia.cc $(CONFIG_H) $(SYSTEM_H) $(TREE_H) |
3a6ebcdc | 4006 | g++ -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $< $(OUTPUT_OPTION) |
efdc7e19 RH |
4007 | |
4008 | paranoia: paranoia.o real.o $(LIBIBERTY) | |
4009 | g++ -o $@ paranoia.o real.o $(LIBIBERTY) | |
4010 | ||
79d8453e RS |
4011 | # These exist for maintenance purposes. |
4012 | ||
4013 | # Update the tags table. | |
65ebbf81 | 4014 | TAGS: lang.tags |
7d60db05 JM |
4015 | (cd $(srcdir); \ |
4016 | incs= ; \ | |
4017 | list='$(SUBDIRS)'; for dir in $$list; do \ | |
4018 | if test -f $$dir/TAGS; then \ | |
4019 | incs="$$incs --include $$dir/TAGS.sub"; \ | |
4020 | fi; \ | |
4021 | done; \ | |
4e2b2eee | 4022 | etags -o TAGS.sub c-family/*.h c-family/*.c *.h *.c *.cc \ |
08585fba JM |
4023 | ../include/*.h ../libiberty/*.c \ |
4024 | ../libcpp/*.c ../libcpp/include/*.h \ | |
4e2b2eee AH |
4025 | --language=none --regex="/\(char\|unsigned int\|int\|bool\|void\|HOST_WIDE_INT\|enum [A-Za-z_0-9]+\) [*]?\([A-Za-z_0-9]+\)/\2/" common.opt \ |
4026 | --language=none --regex="/\(DEF_RTL_EXPR\|DEFTREECODE\|DEFGSCODE\).*(\([A-Za-z_0-9]+\)/\2/" rtl.def tree.def gimple.def \ | |
b67b29f6 | 4027 | --language=none --regex="/DEFTIMEVAR (\([A-Za-z_0-9]+\)/\1/" timevar.def \ |
4e2b2eee | 4028 | ; \ |
7d60db05 | 4029 | etags --include TAGS.sub $$incs) |
79d8453e | 4030 | |
39e73137 | 4031 | # ----------------------------------------------------- |
5b7874aa ZW |
4032 | # Rules for generating translated message descriptions. |
4033 | # Disabled by autoconf if the tools are not available. | |
39e73137 | 4034 | # ----------------------------------------------------- |
5b7874aa ZW |
4035 | |
4036 | XGETTEXT = @XGETTEXT@ | |
4037 | GMSGFMT = @GMSGFMT@ | |
4038 | MSGMERGE = msgmerge | |
5c3c3683 | 4039 | CATALOGS = $(patsubst %,po/%,@CATALOGS@) |
5b7874aa | 4040 | |
0f81faf6 | 4041 | .PHONY: build- install- build-po install-po update-po |
5b7874aa ZW |
4042 | |
4043 | # Dummy rules to deal with dependencies produced by use of | |
4044 | # "build-@POSUB@" and "install-@POSUB@" above, when NLS is disabled. | |
4045 | build-: ; @true | |
4046 | install-: ; @true | |
4047 | ||
4048 | build-po: $(CATALOGS) | |
4049 | ||
4050 | # This notation should be acceptable to all Make implementations used | |
4051 | # by people who are interested in updating .po files. | |
4052 | update-po: $(CATALOGS:.gmo=.pox) | |
4053 | ||
9f6682b7 ZW |
4054 | # N.B. We do not attempt to copy these into $(srcdir). The snapshot |
4055 | # script does that. | |
5b7874aa | 4056 | .po.gmo: |
fc0cd180 | 4057 | $(mkinstalldirs) po |
bc524dd0 | 4058 | $(GMSGFMT) --statistics -o $@ $< |
5b7874aa | 4059 | |
9f6682b7 ZW |
4060 | # The new .po has to be gone over by hand, so we deposit it into |
4061 | # build/po with a different extension. | |
a1286ef5 | 4062 | # If build/po/gcc.pot exists, use it (it was just created), |
359cd11e | 4063 | # else use the one in srcdir. |
5b7874aa | 4064 | .po.pox: |
fc0cd180 | 4065 | $(mkinstalldirs) po |
a1286ef5 ZW |
4066 | $(MSGMERGE) $< `if test -f po/gcc.pot; \ |
4067 | then echo po/gcc.pot; \ | |
4068 | else echo $(srcdir)/po/gcc.pot; fi` -o $@ | |
5b7874aa | 4069 | |
9f6682b7 ZW |
4070 | # This rule has to look for .gmo modules in both srcdir and |
4071 | # the cwd, and has to check that we actually have a catalog | |
4072 | # for each language, in case they weren't built or included | |
4073 | # with the distribution. | |
5b7874aa | 4074 | install-po: |
947c6b00 | 4075 | $(mkinstalldirs) $(DESTDIR)$(datadir) |
318b7749 | 4076 | cats="$(CATALOGS)"; for cat in $$cats; do \ |
9f6682b7 ZW |
4077 | lang=`basename $$cat | sed 's/\.gmo$$//'`; \ |
4078 | if [ -f $$cat ]; then :; \ | |
4079 | elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \ | |
4080 | else continue; \ | |
4081 | fi; \ | |
5b7874aa | 4082 | dir=$(localedir)/$$lang/LC_MESSAGES; \ |
947c6b00 NN |
4083 | echo $(mkinstalldirs) $(DESTDIR)$$dir; \ |
4084 | $(mkinstalldirs) $(DESTDIR)$$dir || exit 1; \ | |
a1286ef5 ZW |
4085 | echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/gcc.mo; \ |
4086 | $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/gcc.mo; \ | |
5b7874aa ZW |
4087 | done |
4088 | ||
4089 | # Rule for regenerating the message template (gcc.pot). | |
4090 | # Instead of forcing everyone to edit POTFILES.in, which proved impractical, | |
4091 | # this rule has no dependencies and always regenerates gcc.pot. This is | |
4092 | # relatively harmless since the .po files do not directly depend on it. | |
4093 | # Note that exgettext has an awk script embedded in it which requires a | |
4094 | # fairly modern (POSIX-compliant) awk. | |
359cd11e | 4095 | # The .pot file is left in the build directory. |
a1286ef5 | 4096 | gcc.pot: po/gcc.pot |
fb72a0a3 | 4097 | po/gcc.pot: force |
fc0cd180 | 4098 | $(mkinstalldirs) po |
02ba6b22 | 4099 | $(MAKE) srcextra |
5b7874aa | 4100 | AWK=$(AWK) $(SHELL) $(srcdir)/po/exgettext \ |
a1286ef5 | 4101 | $(XGETTEXT) gcc $(srcdir) |
eab34643 | 4102 | |
043378c3 TT |
4103 | #\f |
4104 | ||
4105 | # Dependency information. | |
4106 | ||
eab34643 TT |
4107 | # In order for parallel make to really start compiling the expensive |
4108 | # objects from $(OBJS) as early as possible, build all their | |
4109 | # prerequisites strictly before all objects. | |
4110 | $(ALL_HOST_OBJS) : | $(generated_files) | |
043378c3 TT |
4111 | |
4112 | # Include the auto-generated dependencies for all host objects. | |
4113 | DEPFILES = \ | |
4114 | $(foreach obj,$(ALL_HOST_OBJS),\ | |
4115 | $(dir $(obj))$(DEPDIR)/$(patsubst %.o,%.Po,$(notdir $(obj)))) | |
4116 | -include $(DEPFILES) |