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