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