]>
Commit | Line | Data |
---|---|---|
252b5132 RH |
1 | # |
2 | # Makefile for directory with subdirs to build. | |
3 | # Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 1998 | |
4 | # Free Software Foundation | |
5 | # | |
6 | # This file is free software; you can redistribute it and/or modify | |
7 | # it under the terms of the GNU General Public License as published by | |
8 | # the Free Software Foundation; either version 2 of the License, or | |
9 | # (at your option) any later version. | |
10 | # | |
11 | # This program is distributed in the hope that it will be useful, | |
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | # GNU General Public License for more details. | |
15 | # | |
16 | # You should have received a copy of the GNU General Public License | |
17 | # along with this program; if not, write to the Free Software | |
18 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
19 | # | |
20 | ||
21 | srcdir = . | |
22 | ||
23 | prefix = /usr/local | |
24 | exec_prefix = $(prefix) | |
25 | ||
26 | bindir=${exec_prefix}/bin | |
27 | sbindir=${exec_prefix}/sbin | |
28 | libexecdir=${exec_prefix}/libexec | |
29 | datadir=${prefix}/share | |
30 | sysconfdir=${prefix}/etc | |
31 | sharedstatedir=${prefix}/com | |
32 | localstatedir=${prefix}/var | |
33 | libdir=${exec_prefix}/lib | |
34 | includedir=${prefix}/include | |
35 | oldincludedir=/usr/include | |
36 | infodir=${prefix}/info | |
37 | mandir=${prefix}/man | |
38 | gxx_include_dir=${includedir}/g++ | |
39 | ||
ba73c63f JM |
40 | tooldir = $(exec_prefix)/$(target_alias) |
41 | build_tooldir = $(exec_prefix)/$(target_alias) | |
252b5132 RH |
42 | |
43 | program_transform_name = | |
44 | ||
45 | man1dir = $(mandir)/man1 | |
46 | man2dir = $(mandir)/man2 | |
47 | man3dir = $(mandir)/man3 | |
48 | man4dir = $(mandir)/man4 | |
49 | man5dir = $(mandir)/man5 | |
50 | man6dir = $(mandir)/man6 | |
51 | man7dir = $(mandir)/man7 | |
52 | man8dir = $(mandir)/man8 | |
53 | man9dir = $(mandir)/man9 | |
54 | infodir = $(prefix)/info | |
55 | includedir = $(prefix)/include | |
56 | # Directory in which the compiler finds executables, libraries, etc. | |
57 | libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(gcc_version) | |
58 | GDB_NLM_DEPS = | |
59 | ||
60 | SHELL = /bin/sh | |
61 | ||
62 | # INSTALL_PROGRAM_ARGS is changed by configure.in to use -x for a | |
63 | # cygwin host. | |
64 | INSTALL_PROGRAM_ARGS = | |
65 | ||
66 | INSTALL = $(SHELL) $$s/install-sh -c | |
67 | INSTALL_PROGRAM = $(INSTALL) $(INSTALL_PROGRAM_ARGS) | |
68 | INSTALL_SCRIPT = $(INSTALL) | |
69 | INSTALL_DATA = $(INSTALL) -m 644 | |
70 | ||
71 | INSTALL_DOSREL = install-dosrel-fake | |
72 | ||
73 | AS = as | |
74 | AR = ar | |
75 | AR_FLAGS = rc | |
76 | CC = cc | |
77 | ||
78 | # Special variables passed down in EXTRA_GCC_FLAGS. They are defined | |
79 | # here so that they can be overridden by Makefile fragments. | |
80 | HOST_CC = $(CC_FOR_BUILD) | |
81 | HOST_PREFIX = | |
82 | HOST_PREFIX_1 = loser- | |
83 | ||
84 | # These flag values are normally overridden by the configure script. | |
85 | CFLAGS = -g | |
86 | CXXFLAGS = -g -O2 | |
87 | ||
c363de44 | 88 | LDFLAGS = |
252b5132 RH |
89 | LIBCFLAGS = $(CFLAGS) |
90 | CFLAGS_FOR_TARGET = $(CFLAGS) | |
91 | LDFLAGS_FOR_TARGET = | |
92 | LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET) | |
93 | PICFLAG = | |
94 | PICFLAG_FOR_TARGET = | |
95 | ||
96 | CHILLFLAGS = $(CFLAGS) | |
97 | CHILL_LIB = -lchill | |
98 | CXX = c++ | |
99 | ||
100 | # Use -O2 to stress test the compiler. | |
ba73c63f | 101 | LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates |
252b5132 | 102 | CXXFLAGS_FOR_TARGET = $(CXXFLAGS) |
ba73c63f | 103 | LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET) -fno-implicit-templates |
252b5132 RH |
104 | |
105 | RANLIB = ranlib | |
106 | ||
107 | DLLTOOL = dlltool | |
108 | WINDRES = windres | |
109 | ||
110 | NM = nm | |
111 | ||
112 | LD = ld | |
113 | ||
c376f4ed | 114 | BZIPPROG = bzip2 |
b35ece4e | 115 | MD5PROG = md5sum |
252b5132 RH |
116 | |
117 | # These values are substituted by configure. | |
118 | DEFAULT_YACC = yacc | |
119 | DEFAULT_LEX = lex | |
120 | DEFAULT_M4 = m4 | |
121 | ||
122 | BISON = `if [ -f $$r/bison/bison ] ; then \ | |
123 | echo $$r/bison/bison -L $$s/bison/ ; \ | |
124 | else \ | |
125 | echo bison ; \ | |
126 | fi` | |
127 | ||
128 | YACC = `if [ -f $$r/bison/bison ] ; then \ | |
129 | echo $$r/bison/bison -y -L $$s/bison/ ; \ | |
130 | elif [ -f $$r/byacc/byacc ] ; then \ | |
131 | echo $$r/byacc/byacc ; \ | |
132 | else \ | |
133 | echo ${DEFAULT_YACC} ; \ | |
134 | fi` | |
135 | ||
136 | LEX = `if [ -f $$r/flex/flex ] ; \ | |
137 | then echo $$r/flex/flex ; \ | |
138 | else echo ${DEFAULT_LEX} ; fi` | |
139 | ||
140 | M4 = `if [ -f $$r/m4/m4 ] ; \ | |
141 | then echo $$r/m4/m4 ; \ | |
142 | else echo ${DEFAULT_M4} ; fi` | |
143 | ||
144 | MAKEINFO = `if [ -f $$r/texinfo/makeinfo/Makefile ] ; \ | |
145 | then echo $$r/texinfo/makeinfo/makeinfo ; \ | |
146 | else echo makeinfo ; fi` | |
147 | ||
148 | # This just becomes part of the MAKEINFO definition passed down to | |
149 | # sub-makes. It lets flags be given on the command line while still | |
150 | # using the makeinfo from the object tree. | |
151 | MAKEINFOFLAGS = | |
152 | ||
153 | EXPECT = `if [ -f $$r/expect/expect ] ; \ | |
154 | then echo $$r/expect/expect ; \ | |
155 | else echo expect ; fi` | |
156 | ||
157 | RUNTEST = `if [ -f $$s/dejagnu/runtest ] ; \ | |
158 | then echo $$s/dejagnu/runtest ; \ | |
159 | else echo runtest ; fi` | |
160 | ||
161 | ||
162 | # compilers to use to create programs which must be run in the build | |
163 | # environment. | |
164 | CC_FOR_BUILD = $(CC) | |
165 | CXX_FOR_BUILD = $(CXX) | |
166 | ||
167 | SUBDIRS = "this is set via configure, don't edit this" | |
168 | OTHERS = | |
169 | ||
170 | # This is set by the configure script to the list of directories which | |
171 | # should be built using the target tools. | |
ba73c63f | 172 | TARGET_CONFIGDIRS = libiberty libgloss $(SPECIAL_LIBS) newlib libio librx libstdc++ libg++ winsup opcodes bsp libstub cygmon libf2c libchill libobjc |
252b5132 RH |
173 | |
174 | # Target libraries are put under this directory: | |
175 | # Changed by configure to $(target_alias) if cross. | |
176 | TARGET_SUBDIR = . | |
177 | ||
178 | # This is set by the configure script to the arguments passed to configure. | |
179 | CONFIG_ARGUMENTS = | |
180 | ||
181 | # This is set by configure to REALLY_SET_LIB_PATH if --enable-shared | |
182 | # was used. | |
183 | SET_LIB_PATH = | |
184 | ||
185 | # This is the name of the environment variable used for the path to | |
186 | # the libraries. This may be changed by configure.in. | |
187 | RPATH_ENVVAR = LD_LIBRARY_PATH | |
188 | ||
189 | # configure.in sets SET_LIB_PATH to this if --enable-shared was used. | |
190 | REALLY_SET_LIB_PATH = \ | |
191 | if [ x"$$$(RPATH_ENVVAR)" != x ]; then \ | |
192 | $(RPATH_ENVVAR)=$$r/bfd:$$r/opcodes:$$$(RPATH_ENVVAR); \ | |
193 | else \ | |
194 | $(RPATH_ENVVAR)=$$r/bfd:$$r/opcodes; \ | |
195 | fi; \ | |
196 | export $(RPATH_ENVVAR); | |
197 | ||
198 | ALL = all.normal | |
199 | INSTALL_TARGET = installdirs \ | |
200 | install-gcc \ | |
201 | $(INSTALL_MODULES) \ | |
202 | $(INSTALL_TARGET_MODULES) \ | |
203 | $(INSTALL_X11_MODULES) \ | |
204 | $(INSTALL_DOSREL) | |
205 | ||
206 | INSTALL_TARGET_CROSS = installdirs \ | |
207 | install-gcc-cross \ | |
208 | $(INSTALL_MODULES) \ | |
209 | $(INSTALL_TARGET_MODULES) \ | |
210 | $(INSTALL_X11_MODULES) \ | |
211 | $(INSTALL_DOSREL) | |
212 | ||
9e449d3e AO |
213 | # Should be substed by configure.in |
214 | FLAGS_FOR_TARGET = | |
215 | CC_FOR_TARGET = | |
216 | CHILL_FOR_TARGET = | |
217 | CXX_FOR_TARGET = | |
252b5132 | 218 | |
9e449d3e | 219 | # If GCC_FOR_TARGET is not overriden on the command line, then this |
252b5132 RH |
220 | # variable is passed down to the gcc Makefile, where it is used to |
221 | # build libgcc2.a. We define it here so that it can itself be | |
222 | # overridden on the command line. | |
9e449d3e | 223 | GCC_FOR_TARGET = $$r/gcc/xgcc $(FLAGS_FOR_TARGET) |
252b5132 RH |
224 | |
225 | AS_FOR_TARGET = ` \ | |
226 | if [ -f $$r/gas/as-new ] ; then \ | |
227 | echo $$r/gas/as-new ; \ | |
228 | else \ | |
229 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
230 | echo $(AS); \ | |
231 | else \ | |
232 | t='$(program_transform_name)'; echo as | sed -e 's/x/x/' $$t ; \ | |
233 | fi; \ | |
234 | fi` | |
235 | ||
236 | LD_FOR_TARGET = ` \ | |
237 | if [ -f $$r/ld/ld-new ] ; then \ | |
238 | echo $$r/ld/ld-new ; \ | |
239 | else \ | |
240 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
241 | echo $(LD); \ | |
242 | else \ | |
243 | t='$(program_transform_name)'; echo ld | sed -e 's/x/x/' $$t ; \ | |
244 | fi; \ | |
245 | fi` | |
246 | ||
247 | DLLTOOL_FOR_TARGET = ` \ | |
248 | if [ -f $$r/binutils/dlltool ] ; then \ | |
249 | echo $$r/binutils/dlltool ; \ | |
250 | else \ | |
251 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
252 | echo $(DLLTOOL); \ | |
253 | else \ | |
254 | t='$(program_transform_name)'; echo dlltool | sed -e 's/x/x/' $$t ; \ | |
255 | fi; \ | |
256 | fi` | |
257 | ||
258 | WINDRES_FOR_TARGET = ` \ | |
259 | if [ -f $$r/binutils/windres ] ; then \ | |
260 | echo $$r/binutils/windres ; \ | |
261 | else \ | |
262 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
263 | echo $(WINDRES); \ | |
264 | else \ | |
265 | t='$(program_transform_name)'; echo windres | sed -e 's/x/x/' $$t ; \ | |
266 | fi; \ | |
267 | fi` | |
268 | ||
269 | AR_FOR_TARGET = ` \ | |
270 | if [ -f $$r/binutils/ar ] ; then \ | |
271 | echo $$r/binutils/ar ; \ | |
272 | else \ | |
273 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
274 | echo $(AR); \ | |
275 | else \ | |
276 | t='$(program_transform_name)'; echo ar | sed -e 's/x/x/' $$t ; \ | |
277 | fi; \ | |
278 | fi` | |
279 | ||
280 | RANLIB_FOR_TARGET = ` \ | |
281 | if [ -f $$r/binutils/ranlib ] ; then \ | |
282 | echo $$r/binutils/ranlib ; \ | |
283 | else \ | |
284 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
285 | echo $(RANLIB); \ | |
286 | else \ | |
287 | t='$(program_transform_name)'; echo ranlib | sed -e 's/x/x/' $$t ; \ | |
288 | fi; \ | |
289 | fi` | |
290 | ||
291 | NM_FOR_TARGET = ` \ | |
292 | if [ -f $$r/binutils/nm-new ] ; then \ | |
293 | echo $$r/binutils/nm-new ; \ | |
294 | else \ | |
295 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
296 | echo $(NM); \ | |
297 | else \ | |
298 | t='$(program_transform_name)'; echo nm | sed -e 's/x/x/' $$t ; \ | |
299 | fi; \ | |
300 | fi` | |
301 | ||
302 | # The first rule in the file had better be this one. Don't put any above it. | |
303 | # This lives here to allow makefile fragments to contain dependencies. | |
304 | all: all.normal | |
305 | .PHONY: all | |
306 | ||
307 | # These can be overridden by config/mt-*. | |
308 | # The _TARGET_ is because they're specified in mt-foo. | |
309 | # The _HOST_ is because they're programs that run on the host. | |
310 | EXTRA_TARGET_HOST_ALL_MODULES = | |
311 | EXTRA_TARGET_HOST_INSTALL_MODULES = | |
312 | EXTRA_TARGET_HOST_CHECK_MODULES = | |
313 | ||
314 | #### host and target specific makefile fragments come in here. | |
315 | ### | |
316 | ||
317 | # Flags to pass down to all sub-makes. | |
318 | # Please keep these in alphabetical order. | |
319 | BASE_FLAGS_TO_PASS = \ | |
320 | "AR_FLAGS=$(AR_FLAGS)" \ | |
321 | "AR_FOR_TARGET=$(AR_FOR_TARGET)" \ | |
322 | "AS_FOR_TARGET=$(AS_FOR_TARGET)" \ | |
323 | "BISON=$(BISON)" \ | |
324 | "CC_FOR_BUILD=$(CC_FOR_BUILD)" \ | |
325 | "CC_FOR_TARGET=$(CC_FOR_TARGET)" \ | |
326 | "CFLAGS=$(CFLAGS)" \ | |
327 | "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \ | |
328 | "CHILLFLAGS=$(CHILLFLAGS)" \ | |
329 | "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \ | |
330 | "CHILL_LIB=$(CHILL_LIB)" \ | |
331 | "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \ | |
332 | "CXXFLAGS=$(CXXFLAGS)" \ | |
333 | "CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \ | |
334 | "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \ | |
335 | "DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \ | |
336 | "INSTALL=$(INSTALL)" \ | |
337 | "INSTALL_DATA=$(INSTALL_DATA)" \ | |
338 | "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \ | |
339 | "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \ | |
340 | "LDFLAGS=$(LDFLAGS)" \ | |
341 | "LEX=$(LEX)" \ | |
342 | "LD_FOR_TARGET=$(LD_FOR_TARGET)" \ | |
343 | "LIBCFLAGS=$(LIBCFLAGS)" \ | |
344 | "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \ | |
345 | "LIBCXXFLAGS=$(LIBCXXFLAGS)" \ | |
346 | "LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \ | |
347 | "M4=$(M4)" \ | |
348 | "MAKE=$(MAKE)" \ | |
349 | "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \ | |
350 | "NM_FOR_TARGET=$(NM_FOR_TARGET)" \ | |
351 | "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \ | |
352 | "RPATH_ENVVAR=$(RPATH_ENVVAR)" \ | |
353 | "SHELL=$(SHELL)" \ | |
354 | "EXPECT=$(EXPECT)" \ | |
355 | "RUNTEST=$(RUNTEST)" \ | |
356 | "RUNTESTFLAGS=$(RUNTESTFLAGS)" \ | |
357 | "TARGET_SUBDIR=$(TARGET_SUBDIR)" \ | |
358 | "WINDRES_FOR_TARGET=$(WINDRES_FOR_TARGET)" \ | |
359 | "YACC=$(YACC)" \ | |
360 | "bindir=$(bindir)" \ | |
361 | "datadir=$(datadir)" \ | |
362 | "exec_prefix=$(exec_prefix)" \ | |
363 | "includedir=$(includedir)" \ | |
364 | "infodir=$(infodir)" \ | |
365 | "libdir=$(libdir)" \ | |
366 | "libexecdir=$(libexecdir)" \ | |
367 | "lispdir=$(lispdir)" \ | |
368 | "localstatedir=$(localstatedir)" \ | |
369 | "mandir=$(mandir)" \ | |
370 | "oldincludedir=$(oldincludedir)" \ | |
371 | "prefix=$(prefix)" \ | |
372 | "sbindir=$(sbindir)" \ | |
373 | "sharedstatedir=$(sharedstatedir)" \ | |
374 | "sysconfdir=$(sysconfdir)" \ | |
375 | "tooldir=$(tooldir)" \ | |
ba73c63f | 376 | "build_tooldir=$(build_tooldir)" \ |
252b5132 RH |
377 | "gxx_include_dir=$(gxx_include_dir)" \ |
378 | "gcc_version=$(gcc_version)" \ | |
379 | "gcc_version_trigger=$(gcc_version_trigger)" \ | |
380 | "target_alias=$(target_alias)" \ | |
381 | "libsubdir=$(libsubdir)" | |
382 | ||
383 | # Flags to pass down to most sub-makes, in which we're building with | |
384 | # the host environment. | |
385 | # If any variables are added here, they must be added to do-*, below. | |
386 | EXTRA_HOST_FLAGS = \ | |
387 | 'AR=$(AR)' \ | |
388 | 'AS=$(AS)' \ | |
389 | 'CC=$(CC)' \ | |
390 | 'CXX=$(CXX)' \ | |
391 | 'DLLTOOL=$(DLLTOOL)' \ | |
392 | 'LD=$(LD)' \ | |
393 | 'NM=$(NM)' \ | |
394 | 'RANLIB=$(RANLIB)' \ | |
395 | 'WINDRES=$(WINDRES)' | |
396 | ||
397 | FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) | |
398 | ||
399 | # Flags that are concerned with the location of the X11 include files | |
400 | # and library files | |
401 | # | |
402 | # NOTE: until the top-level is getting the values via autoconf, it only | |
403 | # causes problems to have this top-level Makefile overriding the autoconf-set | |
404 | # values in child directories. Only variables that don't conflict with | |
405 | # autoconf'ed ones should be passed by X11_FLAGS_TO_PASS for now. | |
406 | # | |
407 | X11_FLAGS_TO_PASS = \ | |
408 | 'X11_EXTRA_CFLAGS=$(X11_EXTRA_CFLAGS)' \ | |
409 | 'X11_EXTRA_LIBS=$(X11_EXTRA_LIBS)' | |
410 | ||
411 | # Flags to pass down to makes which are built with the target environment. | |
412 | # The double $ decreases the length of the command line; the variables | |
413 | # are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them. | |
414 | # If any variables are added here, they must be added to do-*, below. | |
415 | EXTRA_TARGET_FLAGS = \ | |
416 | 'AR=$$(AR_FOR_TARGET)' \ | |
417 | 'AS=$$(AS_FOR_TARGET)' \ | |
418 | 'CC=$$(CC_FOR_TARGET)' \ | |
419 | 'CFLAGS=$$(CFLAGS_FOR_TARGET)' \ | |
420 | 'CXX=$$(CXX_FOR_TARGET)' \ | |
421 | 'CXXFLAGS=$$(CXXFLAGS_FOR_TARGET)' \ | |
422 | 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \ | |
423 | 'LD=$$(LD_FOR_TARGET)' \ | |
424 | 'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET)' \ | |
425 | 'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET)' \ | |
426 | 'NM=$$(NM_FOR_TARGET)' \ | |
427 | 'RANLIB=$$(RANLIB_FOR_TARGET)' \ | |
428 | 'WINDRES=$$(WINDRES_FOR_TARGET)' | |
429 | ||
430 | TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS) | |
431 | ||
432 | # Flags to pass down to gcc. gcc builds a library, libgcc.a, so it | |
433 | # unfortunately needs the native compiler and the target ar and | |
434 | # ranlib. | |
435 | # If any variables are added here, they must be added to do-*, below. | |
436 | # The HOST_* variables are a special case, which are used for the gcc | |
437 | # cross-building scheme. | |
438 | EXTRA_GCC_FLAGS = \ | |
439 | 'AR=$(AR)' \ | |
440 | 'AS=$(AS)' \ | |
441 | 'CC=$(CC)' \ | |
442 | 'CXX=$(CXX)' \ | |
443 | 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \ | |
444 | 'HOST_CC=$(CC_FOR_BUILD)' \ | |
445 | 'HOST_PREFIX=$(HOST_PREFIX)' \ | |
446 | 'HOST_PREFIX_1=$(HOST_PREFIX_1)' \ | |
447 | 'NM=$(NM)' \ | |
448 | 'RANLIB=$(RANLIB)' \ | |
449 | 'WINDRES=$$(WINDRES_FOR_TARGET)' \ | |
450 | "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \ | |
451 | "`echo 'LANGUAGES=$(LANGUAGES)' | sed -e s/.*=$$/XFOO=/`" \ | |
452 | "`echo 'STMP_FIXPROTO=$(STMP_FIXPROTO)' | sed -e s/.*=$$/XFOO=/`" \ | |
453 | "`echo 'LIMITS_H_TEST=$(LIMITS_H_TEST)' | sed -e s/.*=$$/XFOO=/`" \ | |
454 | "`echo 'LIBGCC1_TEST=$(LIBGCC1_TEST)' | sed -e s/.*=$$/XFOO=/`" \ | |
455 | "`echo 'LIBGCC2_CFLAGS=$(LIBGCC2_CFLAGS)' | sed -e s/.*=$$/XFOO=/`" \ | |
456 | "`echo 'LIBGCC2_DEBUG_CFLAGS=$(LIBGCC2_DEBUG_CFLAGS)' | sed -e s/.*=$$/XFOO=/`" \ | |
457 | "`echo 'LIBGCC2_INCLUDES=$(LIBGCC2_INCLUDES)' | sed -e s/.*=$$/XFOO=/`" \ | |
458 | "`echo 'ENQUIRE=$(ENQUIRE)' | sed -e s/.*=$$/XFOO=/`" \ | |
459 | "`echo 'BOOT_CFLAGS=$(BOOT_CFLAGS)' | sed -e s/.*=$$/XFOO=/`" | |
460 | ||
461 | GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) | |
462 | ||
463 | # This is a list of the targets for all of the modules which are compiled | |
464 | # using $(FLAGS_TO_PASS). | |
465 | ALL_MODULES = \ | |
466 | all-apache \ | |
467 | all-ash \ | |
468 | all-autoconf \ | |
469 | all-automake \ | |
470 | all-bash \ | |
471 | all-bfd \ | |
472 | all-binutils \ | |
473 | all-bison \ | |
474 | all-byacc \ | |
475 | all-bzip2 \ | |
9765193e | 476 | all-cgen \ |
252b5132 RH |
477 | all-cvssrc \ |
478 | all-db \ | |
479 | all-dejagnu \ | |
480 | all-diff \ | |
481 | all-dosutils \ | |
482 | all-etc \ | |
483 | all-fileutils \ | |
484 | all-findutils \ | |
485 | all-find \ | |
486 | all-flex \ | |
487 | all-gas \ | |
488 | all-gawk \ | |
489 | all-gettext \ | |
490 | all-gnuserv \ | |
491 | all-gprof \ | |
492 | all-grep \ | |
493 | all-grez \ | |
494 | all-gzip \ | |
495 | all-hello \ | |
496 | all-indent \ | |
497 | all-inet \ | |
498 | all-intl \ | |
499 | all-ispell \ | |
500 | all-itcl \ | |
501 | all-ld \ | |
502 | all-libgui \ | |
503 | all-libiberty \ | |
504 | all-libtool \ | |
505 | all-m4 \ | |
506 | all-make \ | |
507 | all-mmalloc \ | |
508 | all-opcodes \ | |
509 | all-patch \ | |
510 | all-perl \ | |
511 | all-prms \ | |
512 | all-rcs \ | |
513 | all-readline \ | |
514 | all-release \ | |
515 | all-recode \ | |
516 | all-sed \ | |
517 | all-send-pr \ | |
518 | all-shellutils \ | |
519 | all-sim \ | |
ba73c63f | 520 | all-snavigator \ |
252b5132 RH |
521 | all-tar \ |
522 | all-tcl \ | |
523 | all-tcl8.1 \ | |
524 | all-texinfo \ | |
525 | all-textutils \ | |
526 | all-tgas \ | |
527 | all-time \ | |
528 | all-uudecode \ | |
529 | all-wdiff \ | |
530 | all-zip \ | |
531 | $(EXTRA_TARGET_HOST_ALL_MODULES) | |
532 | ||
533 | # This is a list of the check targets for all of the modules which are | |
534 | # compiled using $(FLAGS_TO_PASS). | |
535 | # | |
536 | # The list is in two parts. The first lists those tools which | |
537 | # are tested as part of the host's native tool-chain, and not | |
538 | # tested in a cross configuration. | |
539 | NATIVE_CHECK_MODULES = \ | |
540 | check-bison \ | |
541 | check-byacc \ | |
542 | check-flex \ | |
543 | check-zip | |
544 | ||
545 | CROSS_CHECK_MODULES = \ | |
546 | check-apache \ | |
547 | check-ash \ | |
548 | check-autoconf \ | |
549 | check-automake \ | |
550 | check-bash \ | |
551 | check-bfd \ | |
552 | check-binutils \ | |
553 | check-bzip2 \ | |
9765193e | 554 | check-cgen \ |
252b5132 RH |
555 | check-cvssrc \ |
556 | check-db \ | |
557 | check-dejagnu \ | |
558 | check-diff \ | |
559 | check-etc \ | |
560 | check-fileutils \ | |
561 | check-findutils \ | |
562 | check-find \ | |
563 | check-gas \ | |
564 | check-gawk \ | |
565 | check-gettext \ | |
566 | check-gnuserv \ | |
567 | check-gprof \ | |
568 | check-grep \ | |
569 | check-gzip \ | |
570 | check-hello \ | |
571 | check-indent \ | |
572 | check-inet \ | |
573 | check-intl \ | |
574 | check-ispell \ | |
575 | check-itcl \ | |
576 | check-ld \ | |
577 | check-libgui \ | |
578 | check-libiberty \ | |
579 | check-libtool \ | |
580 | check-m4 \ | |
581 | check-make \ | |
582 | check-mmcheckoc \ | |
583 | check-opcodes \ | |
584 | check-patch \ | |
585 | check-perl \ | |
586 | check-prms \ | |
587 | check-rcs \ | |
588 | check-readline \ | |
589 | check-recode \ | |
590 | check-sed \ | |
591 | check-send-pr \ | |
592 | check-shellutils \ | |
ba73c63f | 593 | check-snavigator \ |
252b5132 RH |
594 | check-sim \ |
595 | check-tar \ | |
596 | check-tcl \ | |
597 | check-texinfo \ | |
598 | check-textutils \ | |
599 | check-tgas \ | |
600 | check-time \ | |
601 | check-uudecode \ | |
602 | check-wdiff \ | |
603 | $(EXTRA_TARGET_HOST_CHECK_MODULES) | |
604 | ||
605 | CHECK_MODULES=$(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES) | |
606 | ||
607 | # This is a list of the install targets for all of the modules which are | |
608 | # compiled using $(FLAGS_TO_PASS). | |
609 | # We put install-opcodes before install-binutils because the installed | |
610 | # binutils might be on PATH, and they might need the shared opcodes | |
611 | # library. | |
612 | # We put install-tcl before install-itcl because itcl wants to run a | |
613 | # program on installation which uses the Tcl libraries. | |
614 | INSTALL_MODULES = \ | |
615 | install-apache \ | |
616 | install-ash \ | |
617 | install-autoconf \ | |
618 | install-automake \ | |
619 | install-bash \ | |
620 | install-bfd \ | |
621 | install-bzip2 \ | |
622 | install-opcodes \ | |
623 | install-binutils \ | |
624 | install-bison \ | |
625 | install-byacc \ | |
9765193e | 626 | install-cgen \ |
252b5132 RH |
627 | install-cvssrc \ |
628 | install-db \ | |
629 | install-dejagnu \ | |
630 | install-diff \ | |
631 | install-dosutils \ | |
632 | install-etc \ | |
633 | install-fileutils \ | |
634 | install-findutils \ | |
635 | install-find \ | |
636 | install-flex \ | |
637 | install-gas \ | |
638 | install-gawk \ | |
639 | install-gettext \ | |
640 | install-gnuserv \ | |
641 | install-gprof \ | |
642 | install-grep \ | |
643 | install-grez \ | |
644 | install-gzip \ | |
645 | install-hello \ | |
646 | install-indent \ | |
647 | install-inet \ | |
648 | install-intl \ | |
649 | install-ispell \ | |
650 | install-tcl \ | |
651 | install-tcl8.1 \ | |
652 | install-itcl \ | |
653 | install-ld \ | |
654 | install-libgui \ | |
655 | install-libiberty \ | |
656 | install-libtool \ | |
657 | install-m4 \ | |
658 | install-make \ | |
659 | install-mmalloc \ | |
660 | install-patch \ | |
661 | install-perl \ | |
662 | install-prms \ | |
663 | install-rcs \ | |
664 | install-readline \ | |
665 | install-recode \ | |
666 | install-sed \ | |
667 | install-send-pr \ | |
668 | install-shellutils \ | |
669 | install-sim \ | |
ba73c63f | 670 | install-snavigator \ |
252b5132 | 671 | install-tar \ |
252b5132 RH |
672 | install-textutils \ |
673 | install-tgas \ | |
674 | install-time \ | |
675 | install-uudecode \ | |
676 | install-wdiff \ | |
677 | install-zip \ | |
678 | $(EXTRA_TARGET_HOST_INSTALL_MODULES) | |
679 | ||
680 | # This is a list of the targets for all of the modules which are compiled | |
681 | # using $(X11_FLAGS_TO_PASS). | |
682 | ALL_X11_MODULES = \ | |
683 | all-emacs \ | |
684 | all-emacs19 \ | |
685 | all-gdb \ | |
686 | all-expect \ | |
687 | all-gash \ | |
688 | all-guile \ | |
689 | all-tclX \ | |
690 | all-tk \ | |
691 | all-tk8.1 \ | |
692 | all-tix | |
693 | ||
694 | # This is a list of the check targets for all of the modules which are | |
695 | # compiled using $(X11_FLAGS_TO_PASS). | |
696 | CHECK_X11_MODULES = \ | |
697 | check-emacs \ | |
698 | check-gdb \ | |
699 | check-guile \ | |
700 | check-expect \ | |
701 | check-gash \ | |
702 | check-tclX \ | |
703 | check-tk \ | |
704 | check-tix | |
705 | ||
706 | # This is a list of the install targets for all the modules which are | |
707 | # compiled using $(X11_FLAGS_TO_PASS). | |
708 | INSTALL_X11_MODULES = \ | |
709 | install-emacs \ | |
710 | install-emacs19 \ | |
711 | install-gdb \ | |
712 | install-guile \ | |
713 | install-expect \ | |
714 | install-gash \ | |
715 | install-tclX \ | |
716 | install-tk \ | |
717 | install-tk8.1 \ | |
718 | install-tix | |
719 | ||
720 | # This is a list of the targets for all of the modules which are compiled | |
721 | # using $(TARGET_FLAGS_TO_PASS). | |
722 | ALL_TARGET_MODULES = \ | |
723 | all-target-libio \ | |
724 | all-target-libstdc++ \ | |
ba73c63f | 725 | all-target-libstdc++-v3 \ |
252b5132 RH |
726 | all-target-librx \ |
727 | all-target-libg++ \ | |
728 | all-target-newlib \ | |
ba73c63f JM |
729 | all-target-libf2c \ |
730 | all-target-libchill \ | |
731 | all-target-libobjc \ | |
252b5132 RH |
732 | all-target-libtermcap \ |
733 | all-target-winsup \ | |
734 | all-target-libgloss \ | |
735 | all-target-libiberty \ | |
736 | all-target-gperf \ | |
737 | all-target-examples \ | |
738 | all-target-libstub \ | |
ba73c63f JM |
739 | all-target-libffi \ |
740 | all-target-libjava \ | |
741 | all-target-zlib \ | |
742 | all-target-boehm-gc \ | |
743 | all-target-qthreads \ | |
252b5132 RH |
744 | all-target-bsp \ |
745 | all-target-cygmon | |
746 | ||
747 | # This is a list of the configure targets for all of the modules which | |
748 | # are compiled using the target tools. | |
749 | CONFIGURE_TARGET_MODULES = \ | |
750 | configure-target-libio \ | |
751 | configure-target-libstdc++ \ | |
ba73c63f | 752 | configure-target-libstdc++-v3 \ |
252b5132 RH |
753 | configure-target-librx \ |
754 | configure-target-libg++ \ | |
755 | configure-target-newlib \ | |
ba73c63f JM |
756 | configure-target-libf2c \ |
757 | configure-target-libchill \ | |
758 | configure-target-libobjc \ | |
252b5132 RH |
759 | configure-target-libtermcap \ |
760 | configure-target-winsup \ | |
761 | configure-target-libgloss \ | |
762 | configure-target-libiberty \ | |
763 | configure-target-gperf \ | |
764 | configure-target-examples \ | |
765 | configure-target-libstub \ | |
ba73c63f JM |
766 | configure-target-libffi \ |
767 | configure-target-libjava \ | |
768 | configure-target-zlib \ | |
769 | configure-target-boehm-gc \ | |
770 | configure-target-qthreads \ | |
252b5132 RH |
771 | configure-target-bsp \ |
772 | configure-target-cygmon | |
773 | ||
774 | # This is a list of the check targets for all of the modules which are | |
775 | # compiled using $(TARGET_FLAGS_TO_PASS). | |
776 | CHECK_TARGET_MODULES = \ | |
777 | check-target-libio \ | |
778 | check-target-libstdc++ \ | |
ba73c63f | 779 | check-target-libstdc++-v3 \ |
252b5132 RH |
780 | check-target-libg++ \ |
781 | check-target-newlib \ | |
ba73c63f JM |
782 | check-target-libf2c \ |
783 | check-target-libchill \ | |
784 | check-target-libobjc \ | |
252b5132 RH |
785 | check-target-winsup \ |
786 | check-target-libiberty \ | |
ba73c63f JM |
787 | check-target-libffi \ |
788 | check-target-libjava \ | |
789 | check-target-zlib \ | |
790 | check-target-boehm-gc \ | |
791 | check-target-qthreads \ | |
252b5132 RH |
792 | check-target-gperf |
793 | ||
794 | # This is a list of the install targets for all of the modules which are | |
795 | # compiled using $(TARGET_FLAGS_TO_PASS). | |
796 | INSTALL_TARGET_MODULES = \ | |
797 | install-target-libio \ | |
798 | install-target-libstdc++ \ | |
ba73c63f | 799 | install-target-libstdc++-v3 \ |
252b5132 RH |
800 | install-target-libg++ \ |
801 | install-target-newlib \ | |
ba73c63f JM |
802 | install-target-libf2c \ |
803 | install-target-libchill \ | |
804 | install-target-libobjc \ | |
252b5132 RH |
805 | install-target-libtermcap \ |
806 | install-target-winsup \ | |
807 | install-target-libgloss \ | |
808 | install-target-libiberty \ | |
809 | install-target-bsp \ | |
ba73c63f JM |
810 | install-target-libjava \ |
811 | install-target-zlib \ | |
812 | install-target-boehm-gc \ | |
813 | install-target-qthreads \ | |
252b5132 RH |
814 | install-target-gperf |
815 | ||
816 | # This is a list of the targets for which we can do a clean-{target}. | |
817 | CLEAN_MODULES = \ | |
818 | clean-apache \ | |
819 | clean-ash \ | |
820 | clean-autoconf \ | |
821 | clean-automake \ | |
822 | clean-bash \ | |
823 | clean-bfd \ | |
824 | clean-binutils \ | |
825 | clean-bison \ | |
826 | clean-byacc \ | |
827 | clean-bzip2 \ | |
9765193e | 828 | clean-cgen \ |
252b5132 RH |
829 | clean-cvssrc \ |
830 | clean-db \ | |
831 | clean-dejagnu \ | |
832 | clean-diff \ | |
833 | clean-dosutils \ | |
834 | clean-etc \ | |
835 | clean-fileutils \ | |
836 | clean-findutils \ | |
837 | clean-find \ | |
838 | clean-flex \ | |
839 | clean-gas \ | |
840 | clean-gawk \ | |
841 | clean-gettext \ | |
842 | clean-gnuserv \ | |
843 | clean-gprof \ | |
844 | clean-grep \ | |
845 | clean-grez \ | |
846 | clean-gzip \ | |
847 | clean-hello \ | |
848 | clean-indent \ | |
849 | clean-inet \ | |
850 | clean-intl \ | |
851 | clean-ispell \ | |
852 | clean-itcl \ | |
853 | clean-ld \ | |
854 | clean-libgui \ | |
855 | clean-libiberty \ | |
856 | clean-libtool \ | |
857 | clean-m4 \ | |
858 | clean-make \ | |
859 | clean-mmalloc \ | |
860 | clean-opcodes \ | |
861 | clean-patch \ | |
862 | clean-perl \ | |
863 | clean-prms \ | |
864 | clean-rcs \ | |
865 | clean-readline \ | |
866 | clean-release \ | |
867 | clean-recode \ | |
868 | clean-sed \ | |
869 | clean-send-pr \ | |
870 | clean-shellutils \ | |
871 | clean-sim \ | |
ba73c63f | 872 | clean-snavigator \ |
252b5132 RH |
873 | clean-tar \ |
874 | clean-tcl \ | |
875 | clean-texinfo \ | |
876 | clean-textutils \ | |
877 | clean-tgas \ | |
878 | clean-time \ | |
879 | clean-uudecode \ | |
880 | clean-wdiff \ | |
881 | clean-zip | |
882 | ||
883 | # All of the target modules that can be cleaned | |
884 | CLEAN_TARGET_MODULES = \ | |
885 | clean-target-libio \ | |
886 | clean-target-libstdc++ \ | |
ba73c63f | 887 | clean-target-libstdc++-v3 \ |
252b5132 RH |
888 | clean-target-librx \ |
889 | clean-target-libg++ \ | |
890 | clean-target-newlib \ | |
ba73c63f JM |
891 | clean-target-libf2c \ |
892 | clean-target-libchill \ | |
893 | clean-target-libobjc \ | |
252b5132 RH |
894 | clean-target-winsup \ |
895 | clean-target-libgloss \ | |
896 | clean-target-libiberty \ | |
897 | clean-target-gperf \ | |
898 | clean-target-examples \ | |
899 | clean-target-libstub \ | |
ba73c63f JM |
900 | clean-target-libffi \ |
901 | clean-target-libjava \ | |
902 | clean-target-zlib \ | |
903 | clean-target-boehm-gc \ | |
904 | clean-target-qthreads \ | |
252b5132 RH |
905 | clean-target-bsp \ |
906 | clean-target-cygmon | |
907 | ||
908 | # All of the x11 modules that can be cleaned | |
909 | CLEAN_X11_MODULES = \ | |
910 | clean-emacs \ | |
911 | clean-emacs19 \ | |
912 | clean-gdb \ | |
913 | clean-expect \ | |
914 | clean-gash \ | |
915 | clean-guile \ | |
916 | clean-tclX \ | |
917 | clean-tk \ | |
918 | clean-tix | |
919 | ||
920 | # The target built for a native build. | |
921 | .PHONY: all.normal | |
922 | all.normal: \ | |
923 | $(ALL_MODULES) \ | |
924 | $(ALL_X11_MODULES) \ | |
925 | $(ALL_TARGET_MODULES) \ | |
926 | all-gcc | |
927 | ||
928 | # Do a target for all the subdirectories. A ``make do-X'' will do a | |
929 | # ``make X'' in all subdirectories (because, in general, there is a | |
930 | # dependency (below) of X upon do-X, a ``make X'' will also do this, | |
931 | # but it may do additional work as well). | |
932 | # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once, | |
933 | # because it is so large that it can easily overflow the command line | |
934 | # length limit on some systems. | |
935 | DO_X = \ | |
936 | do-clean \ | |
937 | do-distclean \ | |
938 | do-dvi \ | |
939 | do-info \ | |
940 | do-install-info \ | |
941 | do-installcheck \ | |
942 | do-mostlyclean \ | |
943 | do-maintainer-clean \ | |
944 | do-TAGS | |
945 | .PHONY: $(DO_X) | |
946 | $(DO_X): | |
947 | @target=`echo $@ | sed -e 's/^do-//'`; \ | |
948 | r=`pwd`; export r; \ | |
949 | s=`cd $(srcdir); pwd`; export s; \ | |
950 | $(SET_LIB_PATH) \ | |
951 | for i in $(SUBDIRS) -dummy-; do \ | |
952 | if [ -f ./$$i/Makefile ]; then \ | |
953 | case $$i in \ | |
954 | gcc) \ | |
955 | for flag in $(EXTRA_GCC_FLAGS); do \ | |
956 | eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \ | |
957 | done; \ | |
958 | ;; \ | |
959 | *) \ | |
960 | for flag in $(EXTRA_HOST_FLAGS); do \ | |
961 | eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \ | |
962 | done; \ | |
963 | ;; \ | |
964 | esac ; \ | |
965 | export AR AS CC CXX LD NM RANLIB DLLTOOL WINDRES; \ | |
966 | if (cd ./$$i; \ | |
967 | $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \ | |
968 | "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \ | |
969 | "RANLIB=$${RANLIB}" \ | |
970 | "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \ | |
971 | $${target}); \ | |
972 | then true; else exit 1; fi; \ | |
973 | else true; fi; \ | |
974 | done | |
975 | @target=`echo $@ | sed -e 's/^do-//'`; \ | |
976 | r=`pwd`; export r; \ | |
977 | s=`cd $(srcdir); pwd`; export s; \ | |
978 | $(SET_LIB_PATH) \ | |
979 | for i in $(TARGET_CONFIGDIRS) -dummy-; do \ | |
980 | if [ -f $(TARGET_SUBDIR)/$$i/Makefile ]; then \ | |
981 | for flag in $(EXTRA_TARGET_FLAGS); do \ | |
982 | eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \ | |
983 | done; \ | |
984 | export AR AS CC CXX LD NM RANLIB DLLTOOL WINDRES; \ | |
985 | if (cd $(TARGET_SUBDIR)/$$i; \ | |
986 | $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \ | |
987 | "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \ | |
988 | "RANLIB=$${RANLIB}" \ | |
989 | "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \ | |
990 | $${target}); \ | |
991 | then true; else exit 1; fi; \ | |
992 | else true; fi; \ | |
993 | done | |
994 | ||
995 | # Here are the targets which correspond to the do-X targets. | |
996 | ||
997 | .PHONY: info installcheck dvi install-info | |
998 | .PHONY: clean distclean mostlyclean maintainer-clean realclean | |
999 | .PHONY: local-clean local-distclean local-maintainer-clean | |
1000 | info: do-info | |
1001 | installcheck: do-installcheck | |
1002 | dvi: do-dvi | |
1003 | ||
1004 | # Make sure makeinfo is built before we do a `make info'. | |
1005 | do-info: all-texinfo | |
1006 | ||
1007 | install-info: do-install-info dir.info | |
1008 | s=`cd $(srcdir); pwd`; export s; \ | |
1009 | if [ -f dir.info ] ; then \ | |
1010 | $(INSTALL_DATA) dir.info $(infodir)/dir.info ; \ | |
1011 | else true ; fi | |
1012 | ||
1013 | local-clean: | |
1014 | -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E *.log | |
1015 | ||
1016 | local-distclean: | |
1017 | -rm -f Makefile config.status config.cache mh-frag mt-frag | |
1018 | -if [ "$(TARGET_SUBDIR)" != "." ]; then \ | |
1019 | rm -rf $(TARGET_SUBDIR); \ | |
1020 | else true; fi | |
1021 | ||
1022 | local-maintainer-clean: | |
1023 | @echo "This command is intended for maintainers to use;" | |
1024 | @echo "it deletes files that may require special tools to rebuild." | |
1025 | ||
1026 | clean: do-clean local-clean | |
1027 | mostlyclean: do-mostlyclean local-clean | |
1028 | distclean: do-distclean local-clean local-distclean | |
1029 | maintainer-clean: local-maintainer-clean do-maintainer-clean local-clean | |
1030 | maintainer-clean: local-distclean | |
1031 | realclean: maintainer-clean | |
1032 | ||
1033 | # This rule is used to clean specific modules. | |
1034 | .PHONY: $(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc | |
1035 | $(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc: | |
1036 | @dir=`echo $@ | sed -e 's/clean-//'`; \ | |
1037 | if [ -f ./$${dir}/Makefile ] ; then \ | |
1038 | r=`pwd`; export r; \ | |
1039 | s=`cd $(srcdir); pwd`; export s; \ | |
1040 | $(SET_LIB_PATH) \ | |
1041 | (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) clean); \ | |
1042 | else \ | |
1043 | true; \ | |
1044 | fi | |
1045 | ||
1046 | .PHONY: $(CLEAN_TARGET_MODULES) | |
1047 | $(CLEAN_TARGET_MODULES): | |
1048 | @dir=`echo $@ | sed -e 's/clean-target-//'`; \ | |
1049 | rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \ | |
1050 | if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \ | |
1051 | r=`pwd`; export r; \ | |
1052 | s=`cd $(srcdir); pwd`; export s; \ | |
1053 | $(SET_LIB_PATH) \ | |
1054 | (cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) clean); \ | |
1055 | else \ | |
1056 | true; \ | |
1057 | fi | |
1058 | ||
1059 | clean-target: $(CLEAN_TARGET_MODULES) | |
1060 | ||
1061 | # Check target. | |
1062 | ||
1063 | .PHONY: check | |
1064 | check: $(CHECK_MODULES) \ | |
1065 | $(CHECK_TARGET_MODULES) \ | |
1066 | $(CHECK_X11_MODULES) \ | |
1067 | check-gcc | |
1068 | ||
1069 | # Automated reporting of test results. | |
1070 | ||
1071 | warning.log: build.log | |
1072 | $(srcdir)/contrib/warn_summary build.log > $@ | |
1073 | ||
1074 | mail-report.log: | |
1075 | if test x'$(BOOT_CFLAGS)' != x''; then \ | |
1076 | BOOT_CFLAGS='$(BOOT_CFLAGS)'; export BOOT_CFLAGS; \ | |
1077 | fi; \ | |
1078 | $(srcdir)/contrib/test_summary -t >$@ | |
1079 | chmod +x $@ | |
1080 | echo If you really want to send e-mail, run ./$@ now | |
1081 | ||
1082 | mail-report-with-warnings.log: warning.log | |
1083 | if test x'$(BOOT_CFLAGS)' != x''; then \ | |
1084 | BOOT_CFLAGS='$(BOOT_CFLAGS)'; export BOOT_CFLAGS; \ | |
1085 | fi; \ | |
1086 | $(srcdir)/contrib/test_summary -t -i warning.log >$@ | |
1087 | chmod +x $@ | |
1088 | echo If you really want to send e-mail, run ./$@ now | |
1089 | ||
1090 | # Installation targets. | |
1091 | ||
1092 | .PHONY: install install-cross uninstall source-vault binary-vault vault-install | |
1093 | install: $(INSTALL_TARGET) | |
1094 | install-cross: $(INSTALL_TARGET_CROSS) | |
1095 | ||
1096 | uninstall: | |
1097 | @echo "the uninstall target is not supported in this tree" | |
1098 | ||
1099 | source-vault: | |
1100 | $(MAKE) -f ./release/Build-A-Release \ | |
1101 | host=$(host_alias) source-vault | |
1102 | ||
1103 | binary-vault: | |
1104 | $(MAKE) -f ./release/Build-A-Release \ | |
1105 | host=$(host_alias) target=$(target_alias) | |
1106 | ||
1107 | vault-install: | |
1108 | @if [ -f ./release/vault-install ] ; then \ | |
1109 | ./release/vault-install $(host_alias) $(target_alias) ; \ | |
1110 | else \ | |
1111 | true ; \ | |
1112 | fi | |
1113 | ||
1114 | .PHONY: install.all | |
1115 | install.all: install-no-fixedincludes | |
1116 | @if [ -f ./gcc/Makefile ] ; then \ | |
1117 | r=`pwd` ; export r ; \ | |
1118 | $(SET_LIB_PATH) \ | |
1119 | (cd ./gcc; \ | |
1120 | $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \ | |
1121 | else \ | |
1122 | true ; \ | |
1123 | fi | |
1124 | ||
1125 | # inet-install is used because the I*Net wants DejaGNU installed but | |
1126 | # not built. Similarly, gzip is built but not installed. | |
1127 | inet-install: | |
1128 | $(MAKE) INSTALL_MODULES="`echo $(INSTALL_MODULES) | sed -e 's/install-dejagnu//' -e 's/install-gzip//'`" install | |
1129 | ||
1130 | # install-no-fixedincludes is used because Cygnus can not distribute | |
1131 | # the fixed header files. | |
1132 | .PHONY: install-no-fixedincludes | |
1133 | install-no-fixedincludes: \ | |
1134 | installdirs \ | |
1135 | $(INSTALL_MODULES) \ | |
1136 | $(INSTALL_TARGET_MODULES) \ | |
1137 | $(INSTALL_X11_MODULES) \ | |
1138 | gcc-no-fixedincludes | |
1139 | ||
1140 | # Install the gcc headers files, but not the fixed include files, | |
1141 | # which Cygnus is not allowed to distribute. This rule is very | |
1142 | # dependent on the workings of the gcc Makefile.in. | |
1143 | .PHONY: gcc-no-fixedincludes | |
1144 | gcc-no-fixedincludes: | |
1145 | @if [ -f ./gcc/Makefile ]; then \ | |
1146 | rm -rf gcc/tmp-include; \ | |
1147 | mv gcc/include gcc/tmp-include 2>/dev/null; \ | |
1148 | mkdir gcc/include; \ | |
1149 | cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \ | |
1150 | touch gcc/stmp-fixinc gcc/include/fixed; \ | |
1151 | rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \ | |
1152 | r=`pwd`; export r; \ | |
1153 | s=`cd $(srcdir); pwd` ; export s; \ | |
1154 | $(SET_LIB_PATH) \ | |
1155 | (cd ./gcc; \ | |
1156 | $(MAKE) $(GCC_FLAGS_TO_PASS) install); \ | |
1157 | rm -rf gcc/include; \ | |
1158 | mv gcc/tmp-include gcc/include 2>/dev/null; \ | |
1159 | else true; fi | |
1160 | ||
252b5132 RH |
1161 | # This rule is used to build the modules which use FLAGS_TO_PASS. To |
1162 | # build a target all-X means to cd to X and make all. | |
1163 | # | |
1164 | # all-gui, and all-libproc are handled specially because | |
1165 | # they are still experimental, and if they fail to build, that | |
1166 | # shouldn't stop "make all". | |
1167 | .PHONY: $(ALL_MODULES) all-gui all-libproc | |
1168 | $(ALL_MODULES) all-gui all-libproc: | |
1169 | @dir=`echo $@ | sed -e 's/all-//'`; \ | |
1170 | if [ -f ./$${dir}/Makefile ] ; then \ | |
1171 | r=`pwd`; export r; \ | |
1172 | s=`cd $(srcdir); pwd`; export s; \ | |
1173 | $(SET_LIB_PATH) \ | |
1174 | (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \ | |
1175 | else \ | |
1176 | true; \ | |
1177 | fi | |
1178 | ||
1179 | # These rules are used to check the modules which use FLAGS_TO_PASS. | |
1180 | # To build a target check-X means to cd to X and make check. Some | |
1181 | # modules are only tested in a native toolchain. | |
1182 | ||
1183 | .PHONY: $(CHECK_MODULES) $(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES) | |
1184 | $(NATIVE_CHECK_MODULES): | |
1185 | @if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
1186 | dir=`echo $@ | sed -e 's/check-//'`; \ | |
1187 | if [ -f ./$${dir}/Makefile ] ; then \ | |
1188 | r=`pwd`; export r; \ | |
1189 | s=`cd $(srcdir); pwd`; export s; \ | |
1190 | $(SET_LIB_PATH) \ | |
1191 | (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \ | |
1192 | else \ | |
1193 | true; \ | |
1194 | fi; \ | |
1195 | fi | |
1196 | ||
1197 | $(CROSS_CHECK_MODULES): | |
1198 | @dir=`echo $@ | sed -e 's/check-//'`; \ | |
1199 | if [ -f ./$${dir}/Makefile ] ; then \ | |
1200 | r=`pwd`; export r; \ | |
1201 | s=`cd $(srcdir); pwd`; export s; \ | |
1202 | $(SET_LIB_PATH) \ | |
1203 | (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \ | |
1204 | else \ | |
1205 | true; \ | |
1206 | fi | |
1207 | ||
1208 | # This rule is used to install the modules which use FLAGS_TO_PASS. | |
1209 | # To build a target install-X means to cd to X and make install. | |
1210 | .PHONY: $(INSTALL_MODULES) | |
1211 | $(INSTALL_MODULES): installdirs | |
1212 | @dir=`echo $@ | sed -e 's/install-//'`; \ | |
1213 | if [ -f ./$${dir}/Makefile ] ; then \ | |
1214 | r=`pwd`; export r; \ | |
1215 | s=`cd $(srcdir); pwd`; export s; \ | |
1216 | $(SET_LIB_PATH) \ | |
1217 | (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \ | |
1218 | else \ | |
1219 | true; \ | |
1220 | fi | |
1221 | ||
1222 | # This rule is used to configure the modules which are built with the | |
1223 | # target tools. | |
1224 | .PHONY: $(CONFIGURE_TARGET_MODULES) | |
1225 | $(CONFIGURE_TARGET_MODULES): | |
1226 | @dir=`echo $@ | sed -e 's/configure-target-//'`; \ | |
1227 | if [ -d $(TARGET_SUBDIR)/$${dir} ]; then \ | |
1228 | r=`pwd`; export r; \ | |
1229 | $(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/$${dir}/tmpmulti.out 2> /dev/null; \ | |
1230 | if [ -s $(TARGET_SUBDIR)/$${dir}/tmpmulti.out ]; then \ | |
1231 | if [ -f $(TARGET_SUBDIR)/$${dir}/multilib.out ]; then \ | |
1232 | if cmp $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out > /dev/null; then \ | |
1233 | rm -f $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \ | |
1234 | else \ | |
1235 | echo "Multilibs changed for $${dir}, reconfiguring"; \ | |
1236 | rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/Makefile; \ | |
1237 | mv $(TARGET_SUBDIR)/$${dir}/tmpmulti.out $(TARGET_SUBDIR)/$${dir}/multilib.out; \ | |
1238 | fi; \ | |
1239 | else \ | |
1240 | mv $(TARGET_SUBDIR)/$${dir}/tmpmulti.out $(TARGET_SUBDIR)/$${dir}/multilib.out; \ | |
1241 | fi; \ | |
1242 | fi; \ | |
1243 | fi; exit 0 # break command into two pieces | |
1244 | @dir=`echo $@ | sed -e 's/configure-target-//'`; \ | |
1245 | if [ ! -d $(TARGET_SUBDIR) ]; then \ | |
1246 | true; \ | |
1247 | elif [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \ | |
1248 | true; \ | |
1249 | elif echo " $(TARGET_CONFIGDIRS) " | grep " $${dir} " >/dev/null 2>&1; then \ | |
1250 | if [ -d $(srcdir)/$${dir} ]; then \ | |
1251 | [ -d $(TARGET_SUBDIR)/$${dir} ] || mkdir $(TARGET_SUBDIR)/$${dir};\ | |
1252 | r=`pwd`; export r; \ | |
1253 | s=`cd $(srcdir); pwd`; export s; \ | |
1254 | $(SET_LIB_PATH) \ | |
1255 | AR="$(AR_FOR_TARGET)"; export AR; \ | |
1256 | AS="$(AS_FOR_TARGET)"; export AS; \ | |
1257 | CC="$(CC_FOR_TARGET)"; export CC; \ | |
1258 | CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \ | |
1259 | CXX="$(CXX_FOR_TARGET)"; export CXX; \ | |
1260 | CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \ | |
1261 | DLLTOOL="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL; \ | |
1262 | LD="$(LD_FOR_TARGET)"; export LD; \ | |
1263 | LDFLAGS="$(LDFLAGS_FOR_TARGET)"; export LDFLAGS; \ | |
1264 | NM="$(NM_FOR_TARGET)"; export NM; \ | |
1265 | RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \ | |
1266 | WINDRES="$(WINDRES_FOR_TARGET)"; export WINDRES; \ | |
1267 | echo Configuring in $(TARGET_SUBDIR)/$${dir}; \ | |
1268 | cd $(TARGET_SUBDIR)/$${dir}; \ | |
1269 | case $(srcdir) in \ | |
1270 | /*) \ | |
1271 | topdir=$(srcdir) ;; \ | |
1272 | *) \ | |
1273 | case "$(TARGET_SUBDIR)" in \ | |
1274 | .) topdir="../$(srcdir)" ;; \ | |
1275 | *) topdir="../../$(srcdir)" ;; \ | |
1276 | esac ;; \ | |
1277 | esac; \ | |
1278 | if [ "$(srcdir)" = "." ] ; then \ | |
1279 | if [ "$(TARGET_SUBDIR)" != "." ] ; then \ | |
1280 | if $(SHELL) $$s/symlink-tree $${topdir}/$${dir} "no-such-file" ; then \ | |
1281 | if [ -f Makefile ]; then \ | |
1282 | if $(MAKE) distclean; then \ | |
1283 | true; \ | |
1284 | else \ | |
1285 | exit 1; \ | |
1286 | fi; \ | |
1287 | else \ | |
1288 | true; \ | |
1289 | fi; \ | |
1290 | else \ | |
1291 | exit 1; \ | |
1292 | fi; \ | |
1293 | else \ | |
1294 | true; \ | |
1295 | fi; \ | |
1296 | srcdiroption="--srcdir=."; \ | |
1297 | libsrcdir="."; \ | |
1298 | else \ | |
1299 | srcdiroption="--srcdir=$${topdir}/$${dir}"; \ | |
1300 | libsrcdir="$$s/$${dir}"; \ | |
1301 | fi; \ | |
1302 | if [ -f $${libsrcdir}/configure ] ; then \ | |
1303 | rm -f no-such-file skip-this-dir; \ | |
1304 | CONFIG_SITE=no-such-file $(SHELL) $${libsrcdir}/configure \ | |
1305 | $(CONFIG_ARGUMENTS) $${srcdiroption} \ | |
1306 | --with-target-subdir="$(TARGET_SUBDIR)"; \ | |
1307 | else \ | |
1308 | rm -f no-such-file skip-this-dir; \ | |
1309 | CONFIG_SITE=no-such-file $(SHELL) $$s/configure \ | |
1310 | $(CONFIG_ARGUMENTS) $${srcdiroption} \ | |
1311 | --with-target-subdir="$(TARGET_SUBDIR)"; \ | |
1312 | fi; \ | |
1313 | if [ -f skip-this-dir ] ; then \ | |
1314 | sh skip-this-dir; \ | |
1315 | rm -f skip-this-dir; \ | |
1316 | cd ..; rmdir $${dir} || true; \ | |
1317 | else \ | |
1318 | true; \ | |
1319 | fi; \ | |
1320 | else \ | |
1321 | true; \ | |
1322 | fi; \ | |
1323 | else \ | |
1324 | true; \ | |
1325 | fi | |
1326 | ||
1327 | # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS. | |
1328 | # To build a target all-X means to cd to X and make all. | |
1329 | .PHONY: $(ALL_TARGET_MODULES) | |
1330 | $(ALL_TARGET_MODULES): | |
1331 | @dir=`echo $@ | sed -e 's/all-target-//'`; \ | |
1332 | if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \ | |
1333 | r=`pwd`; export r; \ | |
1334 | s=`cd $(srcdir); pwd`; export s; \ | |
1335 | $(SET_LIB_PATH) \ | |
1336 | (cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) all); \ | |
1337 | else \ | |
1338 | true; \ | |
1339 | fi | |
1340 | ||
1341 | # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS. | |
1342 | # To build a target install-X means to cd to X and make install. | |
1343 | .PHONY: $(CHECK_TARGET_MODULES) | |
1344 | $(CHECK_TARGET_MODULES): | |
1345 | @dir=`echo $@ | sed -e 's/check-target-//'`; \ | |
1346 | if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \ | |
1347 | r=`pwd`; export r; \ | |
1348 | s=`cd $(srcdir); pwd`; export s; \ | |
1349 | $(SET_LIB_PATH) \ | |
1350 | (cd $(TARGET_SUBDIR)/$${dir};$(MAKE) $(TARGET_FLAGS_TO_PASS) check);\ | |
1351 | else \ | |
1352 | true; \ | |
1353 | fi | |
1354 | ||
1355 | # This rule is used to install the modules which use | |
1356 | # TARGET_FLAGS_TO_PASS. To build a target install-X means to cd to X | |
1357 | # and make install. | |
1358 | .PHONY: $(INSTALL_TARGET_MODULES) | |
1359 | $(INSTALL_TARGET_MODULES): installdirs | |
1360 | @dir=`echo $@ | sed -e 's/install-target-//'`; \ | |
1361 | if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \ | |
1362 | r=`pwd`; export r; \ | |
1363 | s=`cd $(srcdir); pwd`; export s; \ | |
1364 | $(SET_LIB_PATH) \ | |
1365 | (cd $(TARGET_SUBDIR)/$${dir}; \ | |
1366 | $(MAKE) $(TARGET_FLAGS_TO_PASS) install); \ | |
1367 | else \ | |
1368 | true; \ | |
1369 | fi | |
1370 | ||
1371 | # This rule is used to build the modules which use X11_FLAGS_TO_PASS. | |
1372 | # To build a target all-X means to cd to X and make all. | |
1373 | .PHONY: $(ALL_X11_MODULES) | |
1374 | $(ALL_X11_MODULES): | |
1375 | @dir=`echo $@ | sed -e 's/all-//'`; \ | |
1376 | if [ -f ./$${dir}/Makefile ] ; then \ | |
1377 | r=`pwd`; export r; \ | |
1378 | s=`cd $(srcdir); pwd`; export s; \ | |
1379 | $(SET_LIB_PATH) \ | |
1380 | (cd $${dir}; \ | |
1381 | $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \ | |
1382 | else \ | |
1383 | true; \ | |
1384 | fi | |
1385 | ||
1386 | # This rule is used to check the modules which use X11_FLAGS_TO_PASS. | |
1387 | # To build a target check-X means to cd to X and make all. | |
1388 | .PHONY: $(CHECK_X11_MODULES) | |
1389 | $(CHECK_X11_MODULES): | |
1390 | @dir=`echo $@ | sed -e 's/check-//'`; \ | |
1391 | if [ -f ./$${dir}/Makefile ] ; then \ | |
1392 | r=`pwd`; export r; \ | |
1393 | s=`cd $(srcdir); pwd`; export s; \ | |
1394 | $(SET_LIB_PATH) \ | |
1395 | (cd $${dir}; \ | |
1396 | $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \ | |
1397 | else \ | |
1398 | true; \ | |
1399 | fi | |
1400 | ||
1401 | # This rule is used to install the modules which use X11_FLAGS_TO_PASS. | |
1402 | # To build a target install-X means to cd to X and make install. | |
1403 | .PHONY: $(INSTALL_X11_MODULES) | |
1404 | $(INSTALL_X11_MODULES): installdirs | |
1405 | @dir=`echo $@ | sed -e 's/install-//'`; \ | |
1406 | if [ -f ./$${dir}/Makefile ] ; then \ | |
1407 | r=`pwd`; export r; \ | |
1408 | s=`cd $(srcdir); pwd`; export s; \ | |
1409 | $(SET_LIB_PATH) \ | |
1410 | (cd $${dir}; \ | |
1411 | $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \ | |
1412 | else \ | |
1413 | true; \ | |
1414 | fi | |
1415 | ||
1416 | # gcc is the only module which uses GCC_FLAGS_TO_PASS. | |
1417 | .PHONY: all-gcc | |
1418 | all-gcc: | |
1419 | @if [ -f ./gcc/Makefile ] ; then \ | |
1420 | r=`pwd`; export r; \ | |
1421 | s=`cd $(srcdir); pwd`; export s; \ | |
1422 | $(SET_LIB_PATH) \ | |
1423 | (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \ | |
1424 | else \ | |
1425 | true; \ | |
1426 | fi | |
1427 | ||
1428 | # Building GCC uses some tools for rebuilding "source" files | |
1429 | # like texinfo, bison/byacc, etc. So we must depend on those. | |
1430 | # | |
1431 | # While building GCC, it may be necessary to run various target | |
1432 | # programs like the assembler, linker, etc. So we depend on | |
1433 | # those too. | |
1434 | # | |
1435 | # In theory, on an SMP all those dependencies can be resolved | |
1436 | # in parallel. | |
1437 | # | |
1438 | .PHONY: bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean | |
2809b4b9 | 1439 | bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean: all-bootstrap |
252b5132 RH |
1440 | @r=`pwd`; export r; \ |
1441 | s=`cd $(srcdir); pwd`; export s; \ | |
1442 | $(SET_LIB_PATH) \ | |
1443 | echo "Bootstrapping the compiler"; \ | |
1444 | cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) $@ | |
1445 | @r=`pwd`; export r; \ | |
1446 | s=`cd $(srcdir); pwd`; export s; \ | |
1447 | case "$@" in \ | |
1448 | *bootstrap4-lean ) \ | |
1449 | msg="Comparing stage3 and stage4 of the compiler"; \ | |
1450 | compare=compare3-lean ;; \ | |
1451 | *bootstrap4 ) msg="Comparing stage3 and stage4 of the compiler"; \ | |
1452 | compare=compare3 ;; \ | |
1453 | *-lean ) msg="Comparing stage2 and stage3 of the compiler"; \ | |
1454 | compare=compare-lean ;; \ | |
1455 | * ) msg="Comparing stage2 and stage3 of the compiler"; \ | |
1456 | compare=compare ;; \ | |
1457 | esac; \ | |
1458 | $(SET_LIB_PATH) \ | |
1459 | echo "$$msg"; \ | |
1460 | cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) $$compare | |
1461 | @r=`pwd`; export r; \ | |
1462 | s=`cd $(srcdir); pwd` ; export s; \ | |
1463 | $(SET_LIB_PATH) \ | |
1464 | echo "Building runtime libraries"; \ | |
1465 | $(MAKE) $(BASE_FLAGS_TO_PASS) all | |
1466 | ||
1467 | .PHONY: cross | |
1468 | cross: all-texinfo all-bison all-byacc all-binutils all-gas all-ld | |
1469 | @r=`pwd`; export r; \ | |
1470 | s=`cd $(srcdir); pwd`; export s; \ | |
1471 | $(SET_LIB_PATH) \ | |
1472 | echo "Building the C and C++ compiler"; \ | |
1473 | cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++" | |
1474 | @r=`pwd`; export r; \ | |
1475 | s=`cd $(srcdir); pwd` ; export s; \ | |
1476 | $(SET_LIB_PATH) \ | |
1477 | echo "Building runtime libraries"; \ | |
1478 | $(MAKE) $(BASE_FLAGS_TO_PASS) all LANGUAGES="c c++" | |
1479 | ||
1480 | .PHONY: check-gcc | |
1481 | check-gcc: | |
1482 | @if [ -f ./gcc/Makefile ] ; then \ | |
1483 | r=`pwd`; export r; \ | |
1484 | s=`cd $(srcdir); pwd`; export s; \ | |
1485 | $(SET_LIB_PATH) \ | |
1486 | (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \ | |
1487 | else \ | |
1488 | true; \ | |
1489 | fi | |
1490 | ||
1491 | .PHONY: install-gcc | |
1492 | install-gcc: | |
1493 | @if [ -f ./gcc/Makefile ] ; then \ | |
1494 | r=`pwd`; export r; \ | |
1495 | s=`cd $(srcdir); pwd`; export s; \ | |
1496 | $(SET_LIB_PATH) \ | |
1497 | (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \ | |
1498 | else \ | |
1499 | true; \ | |
1500 | fi | |
1501 | ||
1502 | .PHONY: install-gcc-cross | |
1503 | install-gcc-cross: | |
1504 | @if [ -f ./gcc/Makefile ] ; then \ | |
1505 | r=`pwd`; export r; \ | |
1506 | s=`cd $(srcdir); pwd`; export s; \ | |
1507 | $(SET_LIB_PATH) \ | |
1508 | (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++" install); \ | |
1509 | else \ | |
1510 | true; \ | |
1511 | fi | |
1512 | # EXPERIMENTAL STUFF | |
1513 | # This rule is used to install the modules which use FLAGS_TO_PASS. | |
1514 | # To build a target install-X means to cd to X and make install. | |
1515 | .PHONY: install-dosrel | |
1516 | install-dosrel: installdirs info | |
1517 | @dir=`echo $@ | sed -e 's/install-//'`; \ | |
1518 | if [ -f ./$${dir}/Makefile ] ; then \ | |
1519 | r=`pwd`; export r; \ | |
1520 | s=`cd $(srcdir); pwd`; export s; \ | |
1521 | $(SET_LIB_PATH) \ | |
1522 | (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \ | |
1523 | else \ | |
1524 | true; \ | |
1525 | fi | |
1526 | ||
1527 | install-dosrel-fake: | |
1528 | ||
1529 | ||
1530 | # This is a list of inter-dependencies among modules. | |
1531 | all-apache: | |
1532 | all-ash: | |
1533 | all-autoconf: all-m4 all-texinfo | |
1534 | all-automake: all-m4 all-texinfo | |
1535 | all-bash: | |
1536 | all-bfd: all-libiberty all-intl | |
1537 | all-binutils: all-libiberty all-opcodes all-bfd all-flex all-bison all-byacc all-intl | |
1538 | all-bison: all-texinfo | |
ba73c63f JM |
1539 | configure-target-boehm-gc: configure-target-newlib configure-target-qthreads |
1540 | all-target-boehm-gc: configure-target-boehm-gc | |
252b5132 RH |
1541 | configure-target-bsp: $(ALL_GCC) |
1542 | all-target-bsp: configure-target-bsp all-gcc all-binutils all-target-newlib | |
1543 | all-byacc: | |
1544 | all-bzip2: | |
9765193e | 1545 | all-cgen: all-libiberty |
252b5132 RH |
1546 | all-cvssrc: |
1547 | configure-target-cygmon: $(ALL_GCC) | |
1548 | all-target-cygmon: configure-target-cygmon all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio all-target-libstub all-target-bsp | |
1549 | all-db: | |
1550 | all-dejagnu: all-tcl all-expect all-tk | |
1551 | all-diff: all-libiberty | |
1552 | all-emacs: | |
1553 | all-emacs19: all-bison all-byacc | |
1554 | all-etc: | |
1555 | configure-target-examples: $(ALL_GCC) | |
1556 | all-target-examples: configure-target-examples | |
1557 | all-expect: all-tcl all-tk | |
1558 | all-fileutils: all-libiberty | |
1559 | all-findutils: | |
1560 | all-find: | |
1561 | all-flex: all-libiberty all-bison all-byacc | |
1562 | all-gas: all-libiberty all-opcodes all-bfd all-intl | |
1563 | all-gash: all-tcl | |
1564 | all-gawk: | |
1565 | ALL_GCC = all-gcc | |
1566 | all-gcc: all-bison all-byacc all-binutils all-gas all-ld | |
2809b4b9 | 1567 | all-bootstrap: all-libiberty all-texinfo all-bison all-byacc all-binutils all-gas all-ld all-zlib |
252b5132 RH |
1568 | GDB_TK = all-tk all-tcl all-itcl all-tix all-libgui |
1569 | all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-bison all-byacc all-sim $(gdbnlmrequirements) $(GDB_TK) | |
1570 | all-gettext: | |
1571 | all-gnuserv: | |
1572 | configure-target-gperf: $(ALL_GCC) | |
1573 | all-target-gperf: configure-target-gperf all-target-libiberty all-target-libstdc++ | |
1574 | all-gprof: all-libiberty all-bfd all-opcodes all-intl | |
ba73c63f | 1575 | all-grep: all-libiberty |
252b5132 RH |
1576 | all-grez: all-libiberty all-bfd all-opcodes |
1577 | all-gui: all-gdb all-libproc all-target-librx | |
1578 | all-guile: | |
1579 | all-gzip: all-libiberty | |
1580 | all-hello: all-libiberty | |
1581 | all-indent: | |
1582 | all-inet: all-tcl all-send-pr all-perl | |
1583 | all-intl: | |
1584 | all-ispell: all-emacs19 | |
1585 | all-itcl: all-tcl all-tk all-tcl8.1 all-tk8.1 | |
1586 | all-ld: all-libiberty all-bfd all-opcodes all-bison all-byacc all-flex all-intl | |
1587 | configure-target-libg++: $(ALL_GCC) configure-target-librx | |
1588 | all-target-libg++: configure-target-libg++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio all-target-librx all-target-libstdc++ | |
1589 | configure-target-libgloss: $(ALL_GCC) | |
1590 | all-target-libgloss: configure-target-libgloss configure-target-newlib | |
1591 | configure-target-libio: $(ALL_GCC) | |
1592 | all-target-libio: configure-target-libio all-gas all-ld all-gcc all-target-libiberty all-target-newlib | |
2735a327 | 1593 | check-target-libio: |
252b5132 RH |
1594 | all-libgui: all-tcl all-tk all-tcl8.1 all-tk8.1 all-itcl |
1595 | all-libiberty: | |
ba73c63f JM |
1596 | configure-target-libffi: $(ALL_GCC) |
1597 | configure-target-libjava: $(ALL_GCC) configure-target-zlib configure-target-boehm-gc configure-target-qthreads configure-target-newlib configure-target-libffi | |
1598 | all-target-libffi: configure-target-libffi | |
1599 | all-target-libjava: configure-target-libjava all-gcc all-zip all-target-newlib all-target-zlib all-target-boehm-gc all-target-qthreads all-target-libffi | |
252b5132 RH |
1600 | configure-target-librx: $(ALL_GCC) configure-target-newlib |
1601 | all-target-librx: configure-target-librx | |
1602 | configure-target-libstdc++: $(ALL_GCC) | |
ba73c63f | 1603 | configure-target-libstdc++-v3: $(ALL_GCC) |
252b5132 | 1604 | all-target-libstdc++: configure-target-libstdc++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio |
ba73c63f | 1605 | all-target-libstdc++-v3: configure-target-libstdc++-v3 all-gas all-ld all-gcc all-target-libiberty all-target-newlib |
252b5132 RH |
1606 | configure-target-libstub: $(ALL_GCC) |
1607 | all-target-libstub: configure-target-libstub | |
1608 | all-libtool: | |
fd1f87b2 | 1609 | configure-target-libf2c: $(ALL_GCC) |
ba73c63f | 1610 | all-target-libf2c: configure-target-libf2c all-gas all-ld all-gcc all-target-libiberty all-target-newlib |
fd1f87b2 | 1611 | configure-target-libchill: $(ALL_GCC) |
ba73c63f | 1612 | all-target-libchill: configure-target-libchill all-gas all-ld all-gcc all-target-libiberty all-target-newlib |
fd1f87b2 | 1613 | configure-target-libobjc: $(ALL_GCC) |
ba73c63f | 1614 | all-target-libobjc: configure-target-libobjc all-gas all-ld all-gcc all-target-libiberty all-target-newlib |
252b5132 RH |
1615 | all-m4: all-libiberty |
1616 | all-make: all-libiberty | |
1617 | all-mmalloc: | |
1618 | configure-target-newlib: $(ALL_GCC) | |
1619 | configure-target-libtermcap: $(ALL_GCC) | |
1620 | all-target-newlib: configure-target-newlib all-binutils all-gas all-gcc | |
1621 | all-target-libtermcap: configure-target-libtermcap all-binutils all-gas all-gcc | |
9765193e | 1622 | all-opcodes: all-bfd all-libiberty all-cgen |
252b5132 RH |
1623 | all-patch: all-libiberty |
1624 | all-perl: | |
1625 | all-prms: all-libiberty | |
ba73c63f JM |
1626 | configure-target-qthreads: configure-target-newlib |
1627 | all-target-qthreads: configure-target-qthreads | |
252b5132 RH |
1628 | all-rcs: |
1629 | all-readline: | |
1630 | all-recode: all-libiberty | |
1631 | all-sed: all-libiberty | |
1632 | all-send-pr: all-prms | |
1633 | all-shellutils: | |
9765193e | 1634 | all-sim: all-libiberty all-bfd all-opcodes all-readline all-cgen |
ba73c63f | 1635 | all-snavigator: all-tcl all-tk all-itcl all-db all-grep all-libgui |
252b5132 RH |
1636 | all-tar: all-libiberty |
1637 | all-tcl: | |
1638 | all-tcl8.1: | |
1639 | all-tclX: all-tcl all-tk | |
1640 | all-tk: all-tcl | |
1641 | all-tk8.1: all-tcl8.1 | |
1642 | all-texinfo: all-libiberty | |
1643 | all-textutils: | |
1644 | all-tgas: all-libiberty all-bfd all-opcodes | |
1645 | all-time: | |
1646 | all-tix: all-tcl all-tk all-tcl8.1 all-tk8.1 | |
1647 | all-wdiff: | |
1648 | all-target-winsup: all-target-newlib all-target-libiberty all-target-libtermcap configure-target-winsup | |
1649 | configure-target-winsup: configure-target-newlib | |
1650 | all-uudecode: all-libiberty | |
1651 | all-zip: | |
51601921 | 1652 | all-zlib: |
ba73c63f JM |
1653 | configure-target-zlib: $(ALL_GCC) |
1654 | all-target-zlib: configure-target-zlib | |
f4bd37da | 1655 | configure-target-libiberty: $(ALL_GCC) configure-target-newlib |
252b5132 RH |
1656 | all-target-libiberty: configure-target-libiberty all-gcc all-ld all-target-newlib |
1657 | all-target: $(ALL_TARGET_MODULES) | |
1658 | install-target: $(INSTALL_TARGET_MODULES) | |
afb8d725 | 1659 | install-gdb: install-tcl install-tk install-itcl install-tix install-libgui |
252b5132 RH |
1660 | ### other supporting targets |
1661 | ||
1662 | MAKEDIRS= \ | |
1663 | $(prefix) \ | |
1664 | $(exec_prefix) | |
1665 | .PHONY: installdirs | |
1666 | installdirs: mkinstalldirs | |
1667 | $(SHELL) $(srcdir)/mkinstalldirs $(MAKEDIRS) | |
1668 | ||
1669 | dir.info: do-install-info | |
1670 | if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \ | |
1671 | $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \ | |
1672 | mv -f dir.info.new dir.info ; \ | |
1673 | else true ; \ | |
1674 | fi | |
1675 | ||
1676 | dist: | |
1677 | @echo "Building a full distribution of this tree isn't done" | |
1678 | @echo "via 'make dist'. Check out the etc/ subdirectory" | |
1679 | ||
1680 | etags tags: TAGS | |
1681 | ||
1682 | # Right now this just builds TAGS in each subdirectory. emacs19 has the | |
1683 | # ability to use several tags files at once, so there is probably no need | |
1684 | # to combine them into one big TAGS file (like CVS 1.3 does). We could | |
1685 | # (if we felt like it) have this Makefile write a piece of elisp which | |
1686 | # the user could load to tell emacs19 where all the TAGS files we just | |
1687 | # built are. | |
1688 | TAGS: do-TAGS | |
1689 | ||
1690 | # with the gnu make, this is done automatically. | |
1691 | ||
1692 | Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag) $(gcc_version_trigger) | |
1693 | $(SHELL) ./config.status | |
1694 | ||
1695 | # | |
1696 | # Support for building net releases | |
1697 | ||
1698 | # Files in devo used in any net release. | |
1699 | # ChangeLog omitted because it may refer to files which are not in this | |
1700 | # distribution (perhaps it would be better to include it anyway). | |
1701 | DEVO_SUPPORT= README Makefile.in configure configure.in \ | |
1702 | config.guess config.if config.sub config move-if-change \ | |
1703 | mpw-README mpw-build.in mpw-config.in mpw-configure mpw-install \ | |
1704 | COPYING COPYING.LIB install-sh config-ml.in symlink-tree \ | |
97f60b31 AO |
1705 | mkinstalldirs ltconfig ltmain.sh missing ylwrap \ |
1706 | libtool.m4 gettext.m4 ltcf-c.sh | |
252b5132 RH |
1707 | |
1708 | # Files in devo/etc used in any net release. | |
1709 | # ChangeLog omitted because it may refer to files which are not in this | |
1710 | # distribution (perhaps it would be better to include it anyway). | |
1711 | ETC_SUPPORT= Makefile.in configure configure.in standards.texi \ | |
1712 | make-stds.texi standards.info* | |
1713 | ||
1714 | # When you use `make setup-dirs' or `make taz' you should always redefine | |
1715 | # this macro. | |
1716 | SUPPORT_FILES = list-of-support-files-for-tool-in-question | |
1717 | ||
b35ece4e AC |
1718 | # NOTE: No double quotes in the below. It is used within shell script |
1719 | # as VER="$(VER)" | |
1720 | VER = ` if grep AM_INIT_AUTOMAKE $(TOOL)/configure.in >/dev/null 2>&1; then \ | |
1721 | sed < $(TOOL)/configure.in -n 's/AM_INIT_AUTOMAKE[^,]*, *\([^)]*\))/\1/p'; \ | |
1722 | else \ | |
1723 | sed < $(TOOL)/Makefile.in -n 's/^VERSION *= *//p'; \ | |
1724 | fi` | |
1725 | PACKAGE = $(TOOL) | |
252b5132 | 1726 | |
b35ece4e | 1727 | .PHONY: taz |
c1b640f7 | 1728 | taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex |
b35ece4e AC |
1729 | $(MAKE) -f Makefile.in do-proto-toplev \ |
1730 | TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \ | |
fd751128 | 1731 | MD5PROG="$(MD5PROG)" \ |
b35ece4e AC |
1732 | SUPPORT_FILES="$(SUPPORT_FILES)" |
1733 | $(MAKE) -f Makefile.in do-md5sum \ | |
1734 | TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \ | |
fd751128 | 1735 | MD5PROG="$(MD5PROG)" \ |
b35ece4e AC |
1736 | SUPPORT_FILES="$(SUPPORT_FILES)" |
1737 | $(MAKE) -f Makefile.in do-tar-bz2 \ | |
1738 | TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \ | |
fd751128 | 1739 | MD5PROG="$(MD5PROG)" \ |
b35ece4e AC |
1740 | SUPPORT_FILES="$(SUPPORT_FILES)" |
1741 | ||
1742 | .PHONY: gdb-taz | |
1743 | gdb-taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex | |
b5a23627 AC |
1744 | $(MAKE) -f Makefile.in do-proto-toplev \ |
1745 | TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \ | |
1746 | MD5PROG="$(MD5PROG)" \ | |
1747 | SUPPORT_FILES="$(SUPPORT_FILES)" | |
1748 | $(MAKE) -f Makefile.in do-md5sum \ | |
1749 | TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \ | |
1750 | MD5PROG="$(MD5PROG)" \ | |
1751 | SUPPORT_FILES="$(SUPPORT_FILES)" | |
1752 | $(MAKE) -f Makefile.in do-djunpack \ | |
1753 | TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \ | |
1754 | MD5PROG="$(MD5PROG)" \ | |
1755 | SUPPORT_FILES="$(SUPPORT_FILES)" | |
1756 | $(MAKE) -f Makefile.in do-tar-bz2 \ | |
b35ece4e | 1757 | TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \ |
fd751128 | 1758 | MD5PROG="$(MD5PROG)" \ |
b35ece4e AC |
1759 | SUPPORT_FILES="$(SUPPORT_FILES)" |
1760 | ||
1761 | .PHONY: do-proto-toplev | |
1762 | do-proto-toplev: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex | |
1763 | echo "==> Making $(PACKAGE)-$(VER)/" | |
252b5132 RH |
1764 | # Take out texinfo from a few places. |
1765 | sed -e '/^all\.normal: /s/\all-texinfo //' \ | |
1766 | -e '/^ install-texinfo /d' \ | |
1767 | <Makefile.in >tmp | |
1768 | mv -f tmp Makefile.in | |
1769 | # | |
1770 | ./configure sun4 | |
1771 | [ -z "$(CONFIGURE_TARGET_MODULES)" ] \ | |
1772 | || $(MAKE) $(CONFIGURE_TARGET_MODULES) ALL_GCC="" \ | |
1773 | CC_FOR_TARGET="$(CC)" CXX_FOR_TARGET="$(CXX)" | |
1774 | # Make links, and run "make diststuff" or "make info" when needed. | |
1775 | rm -rf proto-toplev ; mkdir proto-toplev | |
1776 | set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \ | |
1777 | for d in $$dirs ; do \ | |
1778 | if [ -d $$d ]; then \ | |
1779 | if [ ! -f $$d/Makefile ] ; then true ; \ | |
1780 | elif grep '^diststuff:' $$d/Makefile >/dev/null ; then \ | |
1781 | (cd $$d ; $(MAKE) diststuff ) || exit 1 ; \ | |
1782 | elif grep '^info:' $$d/Makefile >/dev/null ; then \ | |
1783 | (cd $$d ; $(MAKE) info ) || exit 1 ; \ | |
1784 | fi ; \ | |
1785 | if [ -d $$d/proto-$$d.dir ]; then \ | |
1786 | ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \ | |
1787 | else \ | |
1788 | ln -s ../$$d proto-toplev/$$d ; \ | |
1789 | fi ; \ | |
1790 | else ln -s ../$$d proto-toplev/$$d ; fi ; \ | |
1791 | done | |
1792 | cd etc ; $(MAKE) info | |
1793 | $(MAKE) distclean | |
1794 | # | |
1795 | mkdir proto-toplev/etc | |
1796 | (cd proto-toplev/etc; \ | |
1797 | for i in $(ETC_SUPPORT); do \ | |
1798 | ln -s ../../etc/$$i . ; \ | |
1799 | done) | |
1800 | # | |
1801 | # Take out texinfo from configurable dirs | |
1802 | rm proto-toplev/configure.in | |
1803 | sed -e '/^host_tools=/s/texinfo //' \ | |
1804 | <configure.in >proto-toplev/configure.in | |
1805 | # | |
1806 | mkdir proto-toplev/texinfo | |
1807 | ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/ | |
252b5132 RH |
1808 | if test -r texinfo/util/tex3patch ; then \ |
1809 | mkdir proto-toplev/texinfo/util && \ | |
1810 | ln -s ../../../texinfo/util/tex3patch proto-toplev/texinfo/util ; \ | |
1811 | else true; fi | |
1812 | chmod -R og=u . || chmod og=u `find . -print` | |
b35ece4e AC |
1813 | # |
1814 | -rm -f $(PACKAGE)-$(VER) | |
1815 | ln -s proto-toplev $(PACKAGE)-$(VER) | |
252b5132 | 1816 | |
b35ece4e | 1817 | .PHONY: do-tar-bz2 |
c376f4ed | 1818 | do-tar-bz2: |
6dcbc97b | 1819 | echo "==> Making $(PACKAGE)-$(VER).tar.bz2" |
82b43a09 AC |
1820 | -rm -f $(PACKAGE)-$(VER).tar.bz2 |
1821 | find $(PACKAGE)-$(VER) -follow -name CVS -prune -o -type f -print \ | |
1822 | | tar cTfh - $(PACKAGE)-$(VER).tar | |
6dcbc97b | 1823 | $(BZIPPROG) -v -9 $(PACKAGE)-$(VER).tar |
252b5132 | 1824 | |
b35ece4e AC |
1825 | .PHONY: do-md5sum |
1826 | do-md5sum: | |
1827 | echo "==> Adding md5 checksum to top-level directory" | |
82b43a09 AC |
1828 | cd proto-toplev && find * -follow -name CVS -prune -o -type f -print \ |
1829 | | xargs $(MD5PROG) > ../md5.sum | |
b35ece4e AC |
1830 | mv md5.sum proto-toplev |
1831 | ||
b5a23627 AC |
1832 | .PHONY: do-djunpack |
1833 | do-djunpack: | |
1834 | echo "==> Adding updated djunpack.bat to top-level directory" | |
1835 | echo - 's /gdb-[0-9\.]*/gdb-'"$(VER)"'/' | |
1836 | sed < djunpack.bat > djunpack.new \ | |
1837 | -e 's/gdb-[0-9][0-9\.]*/gdb-'"$(VER)"'/' | |
1838 | mv djunpack.new djunpack.bat | |
1839 | -rm -f proto-toplev/djunpack.bat | |
1840 | ln -s ../djunpack.bat proto-toplev/djunpack.bat | |
1841 | ||
c376f4ed | 1842 | TEXINFO_SUPPORT= texinfo/texinfo.tex |
252b5132 RH |
1843 | DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT) |
1844 | ||
c376f4ed | 1845 | .PHONY: gas.tar.bz2 |
71141bb6 | 1846 | GAS_SUPPORT_DIRS= bfd include libiberty opcodes intl setup.com makefile.vms mkdep |
c376f4ed | 1847 | gas.tar.bz2: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas |
252b5132 | 1848 | $(MAKE) -f Makefile.in taz TOOL=gas \ |
fd751128 | 1849 | MD5PROG="$(MD5PROG)" \ |
252b5132 RH |
1850 | SUPPORT_FILES="$(GAS_SUPPORT_DIRS)" |
1851 | ||
1852 | # The FSF "binutils" release includes gprof and ld. | |
c376f4ed | 1853 | .PHONY: binutils.tar.bz2 |
71141bb6 | 1854 | BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof intl setup.com makefile.vms mkdep |
c376f4ed | 1855 | binutils.tar.bz2: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils |
252b5132 | 1856 | $(MAKE) -f Makefile.in taz TOOL=binutils \ |
fd751128 | 1857 | MD5PROG="$(MD5PROG)" \ |
08d836d6 | 1858 | SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS)" |
252b5132 | 1859 | |
c376f4ed | 1860 | .PHONY: gas+binutils.tar.bz2 |
252b5132 | 1861 | GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof |
c376f4ed | 1862 | gas+binutils.tar.bz2: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas |
252b5132 | 1863 | $(MAKE) -f Makefile.in taz TOOL=gas \ |
fd751128 | 1864 | MD5PROG="$(MD5PROG)" \ |
08d836d6 | 1865 | SUPPORT_FILES="$(GASB_SUPPORT_DIRS)" |
252b5132 | 1866 | |
c376f4ed | 1867 | .PHONY: libg++.tar.bz2 |
252b5132 | 1868 | LIBGXX_SUPPORT_DIRS=include libstdc++ libio librx libiberty |
c376f4ed | 1869 | libg++.tar.bz2: $(DIST_SUPPORT) libg++ |
252b5132 | 1870 | $(MAKE) -f Makefile.in taz TOOL=libg++ \ |
fd751128 | 1871 | MD5PROG="$(MD5PROG)" \ |
252b5132 RH |
1872 | SUPPORT_FILES="$(LIBGXX_SUPPORT_DIRS)" |
1873 | ||
1874 | GNATS_SUPPORT_DIRS=include libiberty send-pr | |
c376f4ed | 1875 | gnats.tar.bz2: $(DIST_SUPPORT) $(GNATS_SUPPORT_DIRS) gnats |
252b5132 | 1876 | $(MAKE) -f Makefile.in taz TOOL=gnats \ |
fd751128 | 1877 | MD5PROG="$(MD5PROG)" \ |
252b5132 RH |
1878 | SUPPORT_FILES="$(GNATS_SUPPORT_DIRS)" |
1879 | ||
c376f4ed | 1880 | .PHONY: gdb.tar.bz2 |
252b5132 | 1881 | GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline sim utils intl |
c376f4ed | 1882 | gdb.tar.bz2: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb |
b35ece4e | 1883 | $(MAKE) -f Makefile.in gdb-taz TOOL=gdb \ |
fd751128 | 1884 | MD5PROG="$(MD5PROG)" \ |
6dcbc97b AC |
1885 | SUPPORT_FILES="$(GDB_SUPPORT_DIRS)" |
1886 | ||
1887 | .PHONY: dejagnu.tar.bz2 | |
1888 | DEJAGNU_SUPPORT_DIRS= tcl expect libiberty | |
1889 | dejagnu.tar.bz2: $(DIST_SUPPORT) $(DEJAGNU_SUPPORT_DIRS) dejagnu | |
1890 | $(MAKE) -f Makefile.in taz TOOL=dejagnu \ | |
fd751128 | 1891 | MD5PROG="$(MD5PROG)" \ |
6dcbc97b AC |
1892 | SUPPORT_FILES="$(DEJAGNU_SUPPORT_DIRS)" |
1893 | ||
1894 | .PHONY: gdb+dejagnu.tar.bz2 | |
1895 | GDBD_SUPPORT_DIRS= $(GDB_SUPPORT_DIRS) tcl expect dejagnu | |
1896 | gdb+dejagnu.tar.bz2: $(DIST_SUPPORT) $(GDBD_SUPPORT_DIRS) gdb | |
b35ece4e | 1897 | $(MAKE) -f Makefile.in gdb-taz TOOL=gdb PACKAGE=gdb+dejagnu \ |
fd751128 | 1898 | MD5PROG="$(MD5PROG)" \ |
6dcbc97b AC |
1899 | SUPPORT_FILES="$(GDBD_SUPPORT_DIRS)" |
1900 | ||
1901 | .PHONY: insight.tar.bz2 | |
1902 | INSIGHT_SUPPORT_DIRS= $(GDB_SUPPORT_DIRS) tcl tk itcl tix libgui | |
1903 | insight.tar.bz2: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb | |
b35ece4e | 1904 | $(MAKE) -f Makefile.in gdb-taz TOOL=gdb PACKAGE=insight \ |
fd751128 | 1905 | MD5PROG="$(MD5PROG)" \ |
6dcbc97b AC |
1906 | SUPPORT_FILES="$(INSIGHT_SUPPORT_DIRS)" |
1907 | ||
1908 | .PHONY: insight+dejagnu.tar.bz2 | |
1909 | INSIGHTD_SUPPORT_DIRS= $(INSIGHT_SUPPORT_DIRS) expect dejagnu | |
1910 | insight+dejagnu.tar.bz2: $(DIST_SUPPORT) $(INSIGHTD_SUPPORT_DIRS) gdb | |
b35ece4e | 1911 | $(MAKE) -f Makefile.in gdb-taz TOOL=gdb PACKAGE="insight+dejagnu" \ |
fd751128 | 1912 | MD5PROG="$(MD5PROG)" \ |
6dcbc97b | 1913 | SUPPORT_FILES="$(INSIGHTD_SUPPORT_DIRS)" |
252b5132 | 1914 | |
c376f4ed | 1915 | .PHONY: newlib.tar.bz2 |
252b5132 RH |
1916 | NEWLIB_SUPPORT_DIRS=libgloss |
1917 | # taz configures for the sun4 target which won't configure newlib. | |
1918 | # We need newlib configured so that the .info files are made. | |
1919 | # Unfortunately, it is not enough to just configure newlib separately: | |
1920 | # taz will build the .info files but since SUBDIRS won't contain newlib, | |
1921 | # distclean won't be run (leaving Makefile, config.status, and the tmp files | |
1922 | # used in building the .info files, eg: *.def, *.ref). | |
1923 | # The problem isn't solvable however without a lot of extra work because | |
1924 | # target libraries are built in subdir $(target_alias) which gets nuked during | |
1925 | # the make distclean. For now punt on the issue of shipping newlib info files | |
1926 | # with newlib net releases and wait for a day when some native target (sun4?) | |
1927 | # supports newlib (if only minimally). | |
c376f4ed | 1928 | newlib.tar.bz2: $(DIST_SUPPORT) $(NEWLIB_SUPPORT_DIRS) newlib |
252b5132 | 1929 | $(MAKE) -f Makefile.in taz TOOL=newlib \ |
fd751128 | 1930 | MD5PROG="$(MD5PROG)" \ |
252b5132 RH |
1931 | SUPPORT_FILES="$(NEWLIB_SUPPORT_DIRS)" \ |
1932 | DEVO_SUPPORT="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib | |
1933 | ||
1934 | .NOEXPORT: | |
1935 | MAKEOVERRIDES= | |
1936 | ||
1937 | # end of Makefile.in |