Delete debugging -x's.
[deliverable/binutils-gdb.git] / Makefile.in
CommitLineData
eb02fd64 1#
131a3881 2# Makefile for directory with subdirs to build.
79337c85 3# Copyright (C) 1990, 1991, 1992, 1993 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
81597186 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
4d714963 31datadir = $(prefix)/lib
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
RP
43includedir = $(prefix)/include
44docdir = $(datadir)/doc
04103845 45GDB_NLM_DEPS =
4d714963
RP
46
47SHELL = /bin/sh
48
f35c6160 49INSTALL = $${srcroot}/install.sh -c
4d714963 50INSTALL_PROGRAM = $(INSTALL)
5cc73086 51INSTALL_DATA = $(INSTALL) -m 644
fe560b9f 52INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
3c8735af 53
09985c96 54INSTALL_DOSREL = install-dosrel-fake
a987271c 55
440868a0 56AS = as
ec342d7d 57AR = ar
b5329d84 58AR_FLAGS = rc
e85e07cb 59CC = cc
7b636683 60
66957ce4
ILT
61# Special variables passed down in EXTRA_GCC_FLAGS. They are defined
62# here so that they can be overridden by Makefile fragments.
753d5049
SC
63HOST_CC = $(CC_FOR_BUILD)
64HOST_PREFIX =
65HOST_PREFIX_1 = loser-
66
7b636683
JK
67# We don't specify -g -O because many compilers don't support -g -O,
68# and/or -O is broken in and of itself.
f8a6ad66 69CFLAGS = -g
3585593d
BK
70LIBCFLAGS = $(CFLAGS)
71CFLAGS_FOR_TARGET = $(CFLAGS)
72LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET)
04103845
DE
73PICFLAG =
74PICFLAG_FOR_TARGET =
7b636683 75
a4e879a1 76# start-sanitize-chill
7d9f0c54
MW
77CHILLFLAGS = $(CFLAGS)
78CHILL_LIB = -lchill
a4e879a1 79# end-sanitize-chill
e85e07cb 80CXX = gcc
7b636683 81
1d5fcc66 82# Use -O2 to stress test the compiler.
864a5888
PB
83CXXFLAGS = -g -O2
84LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates
3585593d 85CXXFLAGS_FOR_TARGET = $(CXXFLAGS)
2f64ef77 86LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET) -fno-implicit-templates
7b636683 87
4d714963 88RANLIB = ranlib
51489233 89NM = nm
5cc73086
KR
90# Not plain GZIP, since gzip looks there for extra command-line options.
91GZIPPROG = gzip
eb02fd64 92
40e16078 93# BISON: This line sed'ed to BISON = bison -y for FSF releases, don't remove.
5cc73086
KR
94BISON = `if [ -f $$r/byacc/byacc ] ; \
95 then echo $$r/byacc/byacc ; \
378fd382 96 else echo byacc ; \
06a07944 97 fi`
2645fb0c 98
5cc73086
KR
99LEX = `if [ -f $$r/flex/flex ] ; \
100 then echo $$r/flex/flex ; \
2198e4ba
MT
101 else echo flex ; fi`
102
5cc73086
KR
103M4 = `if [ -f $$r/m4/m4 ] ; \
104 then echo $$r/m4/m4 ; \
65e21701
KR
105 else echo m4 ; fi`
106
5cc73086
KR
107MAKEINFO = `if [ -f $$r/texinfo/makeinfo/makeinfo ] ; \
108 then echo $$r/texinfo/makeinfo/makeinfo ; \
77806c3e 109 else echo makeinfo ; fi`
484fa12d 110
9823504d
ILT
111# This just becomes part of the MAKEINFO definition passed down to
112# sub-makes. It lets flags be given on the command line while still
113# using the makeinfo from the object tree.
114MAKEINFOFLAGS =
b772d75e 115
5cc73086
KR
116EXPECT = `if [ -f $$r/expect/expect ] ; \
117 then echo $$r/expect/expect ; \
a54e05f6
KR
118 else echo expect ; fi`
119
120RUNTEST = `if [ -f $${srcroot}/dejagnu/runtest ] ; \
121 then echo $${srcroot}/dejagnu/runtest ; \
6a42d184
DZ
122 else echo runtest ; fi`
123
f980fcfb 124
e85e07cb 125# compilers to use to create programs which must be run in the build
440868a0
ILT
126# environment.
127CC_FOR_BUILD = $(CC)
e85e07cb 128CXX_FOR_BUILD = $(CXX)
440868a0 129
9f73dd6a 130SUBDIRS = "this is set via configure, don't edit this"
6a3958b2
RP
131OTHERS =
132
ca2ce3b3
ILT
133# This is set by the configure script to the list of directories which
134# should be built using the target tools.
ab1cbc67 135TARGET_CONFIGDIRS = libiberty libgloss newlib libio librx libstdc++ libg++ winsup
ca2ce3b3 136
e66eb658
PB
137# Target libraries are put under this directory:
138TARGET_SUBDIR = . # Changed by configure to $(target_alias) if cross.
139
ca2ce3b3
ILT
140# This is set by the configure script to the arguments passed to configure.
141CONFIG_ARGUMENTS =
142
a0f47eb7 143ALL = all.normal
f35c6160
DZ
144INSTALL_TARGET = install-dirs \
145 $(INSTALL_MODULES) \
146 $(INSTALL_TARGET_MODULES) \
147 $(INSTALL_X11_MODULES) \
753d5049 148 install-gcc \
09985c96 149 $(INSTALL_DOSREL)
753d5049 150
fb660409 151
51489233 152CC_FOR_TARGET = ` \
5cc73086 153 if [ -f $$r/gcc/Makefile ] ; then \
e66eb658
PB
154 if [ -f $$r/$(TARGET_SUBDIR)/newlib/Makefile ] ; then \
155 echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $${srcroot}/newlib/libc/include -nostdinc; \
753d5049
SC
156 else \
157 echo $$r/gcc/xgcc -B$$r/gcc/; \
158 fi; \
51489233 159 else \
378fd382 160 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
51489233
ILT
161 echo $(CC); \
162 else \
ea6d5817 163 t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \
51489233
ILT
164 fi; \
165 fi`
166
a4e879a1 167# start-sanitize-chill
7d9f0c54 168CHILL_FOR_TARGET = ` \
5cc73086 169 if [ -f $$r/gcc/Makefile ] ; then \
04103845 170 echo $$r/gcc/xgcc -B$$r/gcc/ -L$$r/gcc/ch/runtime/; \
7d9f0c54
MW
171 else \
172 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
173 echo $(CC); \
174 else \
ea6d5817 175 t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \
7d9f0c54
MW
176 fi; \
177 fi`
34b3298b 178
a4e879a1 179# end-sanitize-chill
7d9f0c54 180
d1bea4c7 181CXX_FOR_TARGET = ` \
5cc73086 182 if [ -f $$r/gcc/Makefile ] ; then \
e66eb658
PB
183 if [ -f $$r/$(TARGET_SUBDIR)/newlib/Makefile ] ; then \
184 echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $${srcroot}/newlib/libc/include -nostdinc; \
753d5049
SC
185 else \
186 echo $$r/gcc/xgcc -B$$r/gcc/; \
187 fi; \
fca4f908 188 else \
e85e07cb
ILT
189 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
190 echo $(CXX); \
fca4f908 191 else \
ea6d5817 192 t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \
fca4f908
MW
193 fi; \
194 fi`
195
440868a0 196AS_FOR_TARGET = ` \
ea6d5817 197 if [ -f $$r/gas/as.new ] ; then \
5cc73086 198 echo $$r/gas/as.new ; \
440868a0 199 else \
e85e07cb 200 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
440868a0
ILT
201 echo $(AS); \
202 else \
ea6d5817 203 t='$(program_transform_name)'; echo as | sed -e 's/x/x/' $$t ; \
81246025 204 fi; \
440868a0
ILT
205 fi`
206
054f9ada
JM
207LD_FOR_TARGET = ` \
208 if [ -f $$r/ld/ld.new ] ; then \
209 echo $$r/ld/ld.new ; \
210 else \
211 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
212 echo $(LD); \
213 else \
214 t='$(program_transform_name)'; echo ld | sed -e 's/x/x/' $$t ; \
215 fi; \
216 fi`
217
a220ba0f
SC
218DLLTOOL_FOR_TARGET = ` \
219 if [ -f $$r/binutils/dlltool ] ; then \
220 echo $$r/binutils/dlltool ; \
221 else \
222 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
223 echo $(DLLTOOL); \
224 else \
225 t='$(program_transform_name)'; echo dlltool | sed -e 's/x/x/' $$t ; \
226 fi; \
227 fi`
228
51489233 229AR_FOR_TARGET = ` \
5cc73086
KR
230 if [ -f $$r/binutils/ar ] ; then \
231 echo $$r/binutils/ar ; \
51489233 232 else \
378fd382 233 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
51489233
ILT
234 echo $(AR); \
235 else \
ea6d5817 236 t='$(program_transform_name)'; echo ar | sed -e 's/x/x/' $$t ; \
81246025 237 fi; \
51489233
ILT
238 fi`
239
240RANLIB_FOR_TARGET = ` \
5cc73086
KR
241 if [ -f $$r/binutils/ranlib ] ; then \
242 echo $$r/binutils/ranlib ; \
51489233 243 else \
378fd382 244 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
51489233
ILT
245 echo $(RANLIB); \
246 else \
ea6d5817 247 t='$(program_transform_name)'; echo ranlib | sed -e 's/x/x/' $$t ; \
81246025 248 fi; \
51489233
ILT
249 fi`
250
251NM_FOR_TARGET = ` \
ea6d5817 252 if [ -f $$r/binutils/nm.new ] ; then \
753d5049 253 echo $$r/binutils/nm.new ; \
51489233 254 else \
378fd382 255 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
51489233
ILT
256 echo $(NM); \
257 else \
ea6d5817 258 t='$(program_transform_name)'; echo nm | sed -e 's/x/x/' $$t ; \
81246025 259 fi; \
51489233
ILT
260 fi`
261
eb02fd64 262#### host and target specific makefile fragments come in here.
ec342d7d 263###
eb02fd64 264
0ef4728f
ILT
265# Flags to pass down to all sub-makes.
266# Please keep these in alphabetical order.
267BASE_FLAGS_TO_PASS = \
2198e4ba 268 "AR_FLAGS=$(AR_FLAGS)" \
d09de70e 269 "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
0ef4728f 270 "AS_FOR_TARGET=$(AS_FOR_TARGET)" \
378fd382 271 "BISON=$(BISON)" \
378fd382 272 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
0ef4728f 273 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
2198e4ba 274 "CFLAGS=$(CFLAGS)" \
3585593d 275 "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
a4e879a1 276 $(start-sanitize-chill)\
7d9f0c54
MW
277 "CHILLFLAGS=$(CHILLFLAGS)" \
278 "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
279 "CHILL_LIB=$(CHILL_LIB)" \
a4e879a1 280 $(end-sanitize-chill)\
0ef4728f
ILT
281 "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
282 "CXXFLAGS=$(CXXFLAGS)" \
3585593d 283 "CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \
0ef4728f 284 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
a220ba0f 285 "DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \
a9a2f22f 286 "GCC_FOR_TARGET=$(CC_FOR_TARGET)" \
2198e4ba
MT
287 "INSTALL=$(INSTALL)" \
288 "INSTALL_DATA=$(INSTALL_DATA)" \
440868a0 289 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
f35c6160 290 "INSTALL_XFORM=$(INSTALL_XFORM)" \
378fd382
DZ
291 "LDFLAGS=$(LDFLAGS)" \
292 "LEX=$(LEX)" \
054f9ada 293 "LD_FOR_TARGET=$(LD_FOR_TARGET)" \
3585593d
BK
294 "LIBCFLAGS=$(LIBCFLAGS)" \
295 "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
04103845
DE
296 "LIBCXXFLAGS=$(LIBCXXFLAGS)" \
297 "LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \
65e21701 298 "M4=$(M4)" \
9823504d 299 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
0ef4728f 300 "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
04103845
DE
301 "PICFLAG=$(PICFLAG)" \
302 "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
d09de70e 303 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
49dfa984 304 "SHELL=$(SHELL)" \
a54e05f6 305 "EXPECT=$(EXPECT)" \
6a42d184 306 "RUNTEST=$(RUNTEST)" \
86365152 307 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
5cc73086 308 "YACC=$(BISON)" \
378fd382
DZ
309 "exec_prefix=$(exec_prefix)" \
310 "prefix=$(prefix)" \
311 "tooldir=$(tooldir)"
2198e4ba 312
0ef4728f
ILT
313# Flags to pass down to most sub-makes, in which we're building with
314# the host environment.
6d681784 315# If any variables are added here, they must be added to do-*, below.
0ef4728f 316EXTRA_HOST_FLAGS = \
6d681784
JG
317 'AR=$(AR)' \
318 'AS=$(AS)' \
319 'CC=$(CC)' \
320 'CXX=$(CXX)' \
321 'NM=$(NM)' \
753d5049 322 'RANLIB=$(RANLIB)'
0ef4728f
ILT
323
324FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)
325
d1bea4c7
DZ
326# Flags that are concerned with the location of the X11 include files
327# and library files
054f9ada
JM
328#
329# NOTE: until the top-level is getting the values via autoconf, it only
330# causes problems to have this top-level Makefile overriding the autoconf-set
331# values in child directories. Only variables that don't conflict with
332# autoconf'ed ones should be passed by X11_FLAGS_TO_PASS for now.
333#
d1bea4c7 334X11_FLAGS_TO_PASS = \
054f9ada
JM
335 'X11_EXTRA_CFLAGS=$(X11_EXTRA_CFLAGS)' \
336 'X11_EXTRA_LIBS=$(X11_EXTRA_LIBS)'
d1bea4c7 337
0ef4728f
ILT
338# Flags to pass down to makes which are built with the target environment.
339# The double $ decreases the length of the command line; the variables
340# are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them.
6d681784 341# If any variables are added here, they must be added to do-*, below.
0ef4728f
ILT
342EXTRA_TARGET_FLAGS = \
343 'AR=$$(AR_FOR_TARGET)' \
344 'AS=$$(AS_FOR_TARGET)' \
345 'CC=$$(CC_FOR_TARGET)' \
3585593d 346 'CFLAGS=$$(CFLAGS_FOR_TARGET)' \
0ef4728f 347 'CXX=$$(CXX_FOR_TARGET)' \
3585593d 348 'CXXFLAGS=$$(CXXFLAGS_FOR_TARGET)' \
a220ba0f 349 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
054f9ada 350 'LD=$$(LD_FOR_TARGET)' \
3585593d
BK
351 'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET)' \
352 'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET)' \
0ef4728f 353 'NM=$$(NM_FOR_TARGET)' \
04103845 354 'PICFLAG=$$(PICFLAG_FOR_TARGET)' \
753d5049 355 'RANLIB=$$(RANLIB_FOR_TARGET)'
0ef4728f
ILT
356
357TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)
51489233 358
f4e414f1
ILT
359# Flags to pass down to gcc. gcc builds a library, libgcc.a, so it
360# unfortunately needs the native compiler and the target ar and
0ef4728f 361# ranlib.
66957ce4
ILT
362# If any variables are added here, they must be added to do-*, below.
363# The HOST_* variables are a special case, which are used for the gcc
364# cross-building scheme.
0ef4728f
ILT
365EXTRA_GCC_FLAGS = \
366 'AR=$$(AR_FOR_TARGET)' \
6d681784
JG
367 'AS=$(AS)' \
368 'CC=$(CC)' \
369 'CXX=$(CXX)' \
a54e05f6
KR
370 'HOST_CC=$(CC_FOR_BUILD)' \
371 'HOST_PREFIX=$(HOST_PREFIX)' \
372 'HOST_PREFIX_1=$(HOST_PREFIX_1)' \
6d681784 373 'NM=$(NM)' \
753d5049 374 'RANLIB=$$(RANLIB_FOR_TARGET)'
0ef4728f 375
34b3298b 376GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS)
f4e414f1 377
6a42d184 378# This is a list of the targets for all of the modules which are compiled
79337c85
ILT
379# using $(FLAGS_TO_PASS).
380ALL_MODULES = \
381 all-autoconf \
382 all-bfd \
383 all-binutils \
384 all-byacc \
385 all-cvs \
386 all-dejagnu \
387 all-diff \
ac259c28 388 all-dosutils \
79337c85
ILT
389 all-etc \
390 all-fileutils \
391 all-find \
392 all-flex \
393 all-gas \
394 all-gawk \
79337c85
ILT
395 all-gprof \
396 all-grep \
19b1d034 397 all-grez \
79337c85
ILT
398 all-gzip \
399 all-hello \
400 all-indent \
401 all-ispell \
402 all-ld \
403 all-libiberty \
404 all-m4 \
405 all-make \
406 all-mmalloc \
407 all-opcodes \
408 all-patch \
409 all-prms \
410 all-rcs \
411 all-readline \
275049c0 412 all-release \
79337c85
ILT
413 all-recode \
414 all-sed \
415 all-send-pr \
416 all-shellutils \
417 all-sim \
418 all-tar \
419 all-tcl \
420 all-texinfo \
421 all-textutils \
422 all-tgas \
423 all-time \
424 all-uudecode \
753d5049
SC
425 all-wdiff
426
6a42d184
DZ
427# This is a list of the check targets for all of the modules which are
428# compiled using $(FLAGS_TO_PASS).
4f0b8f27
TL
429# This is a list of the check targets for all of the modules which are
430# compiled using $(FLAGS_TO_PASS).
431#
d237841c
BC
432# The list is in two parts. The first lists those tools which
433# are tested as part of the host's native tool-chain, and not
434# tested in a cross configuration.
435NATIVE_CHECK_MODULES = \
436 check-byacc \
4f0b8f27
TL
437 check-flex
438
d237841c 439CROSS_CHECK_MODULES = \
6a42d184
DZ
440 check-autoconf \
441 check-bfd \
442 check-binutils \
6a42d184
DZ
443 check-cvs \
444 check-dejagnu \
445 check-diff \
446 check-etc \
447 check-fileutils \
448 check-find \
6a42d184
DZ
449 check-gas \
450 check-gawk \
6a42d184
DZ
451 check-gprof \
452 check-grep \
453 check-gzip \
454 check-hello \
455 check-indent \
456 check-ispell \
457 check-ld \
458 check-libiberty \
459 check-m4 \
460 check-make \
461 check-mmcheckoc \
462 check-opcodes \
463 check-patch \
464 check-prms \
465 check-rcs \
466 check-readline \
467 check-recode \
468 check-sed \
469 check-send-pr \
470 check-shellutils \
471 check-sim \
472 check-tar \
473 check-tcl \
474 check-texinfo \
475 check-textutils \
476 check-tgas \
477 check-time \
478 check-uudecode \
479 check-wdiff
d237841c
BC
480
481CHECK_MODULES=$(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
6a42d184
DZ
482
483# This is a list of the install targets for all of the modules which are
79337c85
ILT
484# compiled using $(FLAGS_TO_PASS).
485INSTALL_MODULES = \
486 install-autoconf \
487 install-bfd \
488 install-binutils \
489 install-byacc \
490 install-cvs \
491 install-dejagnu \
492 install-diff \
753d5049 493 install-dosutils \
79337c85
ILT
494 install-etc \
495 install-fileutils \
496 install-find \
497 install-flex \
498 install-gas \
499 install-gawk \
79337c85
ILT
500 install-gprof \
501 install-grep \
19b1d034 502 install-grez \
79337c85
ILT
503 install-gzip \
504 install-hello \
505 install-indent \
506 install-ispell \
507 install-ld \
508 install-libiberty \
509 install-m4 \
510 install-make \
511 install-mmalloc \
512 install-opcodes \
513 install-patch \
514 install-prms \
515 install-rcs \
516 install-readline \
517 install-recode \
518 install-sed \
519 install-send-pr \
520 install-shellutils \
521 install-sim \
522 install-tar \
523 install-tcl \
524 install-texinfo \
525 install-textutils \
526 install-tgas \
527 install-time \
528 install-uudecode \
529 install-wdiff
530
6a42d184 531# This is a list of the targets for all of the modules which are compiled
79337c85
ILT
532# using $(X11_FLAGS_TO_PASS).
533ALL_X11_MODULES = \
534 all-emacs \
4d802af9 535 all-emacs19 \
04103845 536 all-gdb \
79337c85 537 all-expect \
65e21701 538 all-gash \
79337c85
ILT
539 all-tclX \
540 all-tk
541
6a42d184
DZ
542# This is a list of the check targets for all of the modules which are
543# compiled using $(X11_FLAGS_TO_PASS).
544CHECK_X11_MODULES = \
545 check-emacs \
04103845 546 check-gdb \
6a42d184 547 check-expect \
65e21701 548 check-gash \
6a42d184
DZ
549 check-tclX \
550 check-tk
551
79337c85
ILT
552# This is a list of the install targets for all the modules which are
553# compiled using $(X11_FLAGS_TO_PASS).
554INSTALL_X11_MODULES = \
555 install-emacs \
4d802af9 556 install-emacs19 \
04103845 557 install-gdb \
79337c85 558 install-expect \
65e21701 559 install-gash \
79337c85
ILT
560 install-tclX \
561 install-tk
fca4f908 562
6a42d184 563# This is a list of the targets for all of the modules which are compiled
79337c85
ILT
564# using $(TARGET_FLAGS_TO_PASS).
565ALL_TARGET_MODULES = \
ab1cbc67
PB
566 all-target-libio \
567 all-target-libstdc++ \
568 all-target-librx \
569 all-target-libg++ \
570 all-target-newlib \
571 all-target-winsup \
572 all-target-libgloss \
573 all-target-libiberty
79337c85 574
ca2ce3b3
ILT
575# This is a list of the configure targets for all of the modules which
576# are compiled using the target tools.
577CONFIGURE_TARGET_MODULES = \
ab1cbc67
PB
578 configure-target-libio \
579 configure-target-libstdc++ \
580 configure-target-librx \
581 configure-target-libg++ \
582 configure-target-newlib \
583 configure-target-winsup \
584 configure-target-libgloss \
585 configure-target-libiberty
ca2ce3b3 586
6a42d184
DZ
587# This is a list of the check targets for all of the modules which are
588# compiled using $(TARGET_FLAGS_TO_PASS).
589CHECK_TARGET_MODULES = \
ab1cbc67
PB
590 check-target-libio \
591 check-target-libstdc++ \
592 check-target-libg++ \
593 check-target-newlib \
594 check-target-winsup \
595 check-target-libiberty
6a42d184
DZ
596
597# This is a list of the install targets for all of the modules which are
79337c85
ILT
598# compiled using $(TARGET_FLAGS_TO_PASS).
599INSTALL_TARGET_MODULES = \
ab1cbc67
PB
600 install-target-libio \
601 install-target-libstdc++ \
602 install-target-libg++ \
603 install-target-newlib \
604 install-target-winsup \
605 install-target-libgloss \
606 install-target-libiberty
7481617f 607
79337c85 608# The first rule in the file had better be this one. Don't put any above it.
a59b94d2 609all: all.normal
79337c85
ILT
610.PHONY: all
611
612# The target built for a native build.
613.PHONY: all.normal
614all.normal: \
615 $(ALL_MODULES) \
616 $(ALL_TARGET_MODULES) \
46d0ca81 617 $(ALL_X11_MODULES) \
79337c85
ILT
618 all-gcc
619
0ef4728f 620# Do a target for all the subdirectories. A ``make do-X'' will do a
53222cbd
RP
621# ``make X'' in all subdirectories (because, in general, there is a
622# dependency (below) of X upon do-X, a ``make X'' will also do this,
623# but it may do additional work as well).
0ef4728f
ILT
624# This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
625# because it is so large that it can easily overflow the command line
626# length limit on some systems.
79337c85 627DO_X = \
79337c85
ILT
628 do-clean \
629 do-distclean \
630 do-dvi \
631 do-info \
632 do-install-info \
633 do-installcheck \
634 do-mostlyclean \
ca2ce3b3 635 do-maintainer-clean \
753d5049 636 do-TAGS
79337c85
ILT
637.PHONY: $(DO_X)
638$(DO_X):
0ef4728f 639 @target=`echo $@ | sed -e 's/^do-//'`; \
5cc73086 640 r=`pwd`; export r; \
0ef4728f 641 srcroot=`cd $(srcdir); pwd`; export srcroot; \
ab1cbc67 642 for i in $(SUBDIRS) -dummy-; do \
36286a3e 643 if [ -f ./$$i/Makefile ]; then \
0ef4728f 644 case $$i in \
0ef4728f 645 gcc) \
6d681784
JG
646 for flag in $(EXTRA_GCC_FLAGS); do \
647 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
648 done; \
0ef4728f
ILT
649 ;; \
650 *) \
6d681784
JG
651 for flag in $(EXTRA_HOST_FLAGS); do \
652 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
653 done; \
0ef4728f
ILT
654 ;; \
655 esac ; \
753d5049 656 export AR AS CC CXX NM RANLIB; \
0ef4728f 657 if (cd ./$$i; \
6d681784
JG
658 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
659 "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \
753d5049 660 "RANLIB=$${RANLIB}" \
6d681784 661 $${target}); \
0ef4728f
ILT
662 then true; else exit 1; fi; \
663 else true; fi; \
ec7a8792
ILT
664 done
665 @target=`echo $@ | sed -e 's/^do-//'`; \
666 r=`pwd`; export r; \
667 srcroot=`cd $(srcdir); pwd`; export srcroot; \
ab1cbc67
PB
668 for i in $(TARGET_CONFIGDIRS) -dummy-; do \
669 if [ -f $(TARGET_SUBDIR)/$$i/Makefile ]; then \
670 for flag in $(EXTRA_TARGET_FLAGS); do \
671 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
672 done; \
673 export AR AS CC CXX NM RANLIB; \
674 if (cd $(TARGET_SUBDIR)/$$i; \
675 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
676 "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \
677 "RANLIB=$${RANLIB}" \
678 $${target}); \
679 then true; else exit 1; fi; \
680 else true; fi; \
0ef4728f 681 done
fb90daeb 682
79337c85
ILT
683# Here are the targets which correspond to the do-X targets.
684
65088029 685.PHONY: info installcheck dvi install-info
ca2ce3b3
ILT
686.PHONY: clean distclean mostlyclean maintainer-clean realclean
687.PHONY: local-clean local-distclean local-maintainer-clean
0ef4728f 688info: do-info
1a14993c 689installcheck: do-installcheck
0ef4728f 690dvi: do-dvi
9a9e8e7f 691
f35c6160
DZ
692install-info: do-install-info dir.info
693 srcroot=`cd $(srcdir); pwd`; export srcroot; \
72c09fbc
SC
694 if [ -f dir.info ] ; then \
695 $(INSTALL_DATA) dir.info $(infodir)/dir.info ; \
50fbe976 696 else true ; fi
4d714963 697
0ef4728f 698local-clean:
7fed4078 699 -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E
3b30df82 700
0ef4728f 701local-distclean:
7fed4078 702 -rm -f Makefile config.status
7fcfdcf7 703
ca2ce3b3
ILT
704local-maintainer-clean:
705 @echo "This command is intended for maintainers to use;"
706 @echo "it deletes files that may require special tools to rebuild."
707
0ef4728f
ILT
708clean: do-clean local-clean
709mostlyclean: do-mostlyclean local-clean
710distclean: do-distclean local-clean local-distclean
ca2ce3b3
ILT
711maintainer-clean: local-maintainer-clean do-maintainer-clean local-clean
712maintainer-clean: local-distclean
713realclean: maintainer-clean
0ef4728f 714
65088029
ILT
715# Check target.
716
717.PHONY: check
718check: $(CHECK_MODULES) \
719 $(CHECK_TARGET_MODULES) \
720 $(CHECK_X11_MODULES) \
721 check-gcc
722
79337c85 723# Installation targets.
4d714963 724
04103845 725.PHONY: install uninstall source-vault binary-vault vault-install
98a33b6d 726install: $(INSTALL_TARGET)
b26ff9d8 727
79337c85
ILT
728uninstall:
729 @echo "the uninstall target is not supported in this tree"
730
04103845
DE
731source-vault:
732 $(MAKE) -f ./release/Build-A-Release \
733 host=$(host_alias) source-vault
734
735binary-vault:
736 $(MAKE) -f ./release/Build-A-Release \
737 host=$(host_alias) target=$(target_alias)
738
275049c0
JK
739vault-install:
740 @if [ -f ./release/vault-install ] ; then \
741 ./release/vault-install $(host_alias) $(target_alias) ; \
96bfa612
KR
742 else \
743 true ; \
275049c0
JK
744 fi
745
79337c85 746.PHONY: install.all
06a07944
RP
747install.all: install-no-fixedincludes
748 @if [ -f ./gcc/Makefile ] ; then \
5cc73086 749 r=`pwd` ; export r ; \
06a07944
RP
750 (cd ./gcc; \
751 $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
752 else \
753 true ; \
754 fi
5a63b336 755
96bfa612 756# install-no-fixedincludes is used because Cygnus can not distribute
79337c85
ILT
757# the fixed header files.
758.PHONY: install-no-fixedincludes
759install-no-fixedincludes: \
760 install-dirs \
79337c85
ILT
761 $(INSTALL_MODULES) \
762 $(INSTALL_TARGET_MODULES) \
96bfa612 763 $(INSTALL_X11_MODULES) \
f35c6160 764 gcc-no-fixedincludes
d1bea4c7 765
5cc24596 766# Install the gcc headers files, but not the fixed include files,
79337c85
ILT
767# which Cygnus is not allowed to distribute. This rule is very
768# dependent on the workings of the gcc Makefile.in.
769.PHONY: gcc-no-fixedincludes
06a07944 770gcc-no-fixedincludes:
5cc24596
PB
771 @if [ -f ./gcc/Makefile ]; then \
772 rm -rf gcc/tmp-include; \
773 mv gcc/include gcc/tmp-include 2>/dev/null; \
774 mkdir gcc/include; \
7f9cb3b2 775 cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \
753d5049 776 touch gcc/stmp-fixinc gcc/include/fixed; \
a54e05f6 777 rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \
5cc73086 778 r=`pwd`; export r; \
5cc24596
PB
779 srcroot=`cd $(srcdir); pwd` ; export srcroot; \
780 (cd ./gcc; \
781 $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
782 rm -rf gcc/include; \
783 mv gcc/tmp-include gcc/include 2>/dev/null; \
784 else true; fi
dcbfc14d 785
79337c85
ILT
786# This rule is used to build the modules which use FLAGS_TO_PASS. To
787# build a target all-X means to cd to X and make all.
3de70f1d 788#
055cca84 789# all-gui, and all-libproc are handled specially because
4d802af9
MT
790# they are still experimental, and if they fail to build, that
791# shouldn't stop "make all".
04103845
DE
792.PHONY: $(ALL_MODULES) all-gui all-libproc
793$(ALL_MODULES) all-gui all-libproc:
79337c85 794 @dir=`echo $@ | sed -e 's/all-//'`; \
472af17f
ILT
795 if [ -f ./$${dir}/Makefile ] ; then \
796 r=`pwd`; export r; \
797 srcroot=`cd $(srcdir); pwd`; export srcroot; \
798 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
07362bd9 799 else \
79337c85 800 true; \
07362bd9
DZ
801 fi
802
80cbf870
ILT
803# These rules are used to check the modules which use FLAGS_TO_PASS.
804# To build a target check-X means to cd to X and make check. Some
805# modules are only tested in a native toolchain.
4f0b8f27 806
d237841c
BC
807.PHONY: $(CHECK_MODULES) $(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
808$(NATIVE_CHECK_MODULES):
39cc6dae
RS
809 @if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
810 dir=`echo $@ | sed -e 's/check-//'`; \
472af17f
ILT
811 if [ -f ./$${dir}/Makefile ] ; then \
812 r=`pwd`; export r; \
813 srcroot=`cd $(srcdir); pwd`; export srcroot; \
814 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
815 else \
816 true; \
4f0b8f27
TL
817 fi; \
818 fi
819
820$(CROSS_CHECK_MODULES):
6a42d184
DZ
821 @dir=`echo $@ | sed -e 's/check-//'`; \
822 if [ -f ./$${dir}/Makefile ] ; then \
5cc73086 823 r=`pwd`; export r; \
6a42d184
DZ
824 srcroot=`cd $(srcdir); pwd`; export srcroot; \
825 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
826 else \
827 true; \
828 fi
829
79337c85
ILT
830# This rule is used to install the modules which use FLAGS_TO_PASS.
831# To build a target install-X means to cd to X and make install.
832.PHONY: $(INSTALL_MODULES)
833$(INSTALL_MODULES): install-dirs
834 @dir=`echo $@ | sed -e 's/install-//'`; \
835 if [ -f ./$${dir}/Makefile ] ; then \
5cc73086 836 r=`pwd`; export r; \
79337c85 837 srcroot=`cd $(srcdir); pwd`; export srcroot; \
f35c6160 838 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
07362bd9 839 else \
79337c85 840 true; \
07362bd9
DZ
841 fi
842
ca2ce3b3
ILT
843# This rule is used to configure the modules which are built with the
844# target tools.
845.PHONY: $(CONFIGURE_TARGET_MODULES)
846$(CONFIGURE_TARGET_MODULES):
ab1cbc67
PB
847 @dir=`echo $@ | sed -e 's/configure-target-//'`; \
848 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
ca2ce3b3
ILT
849 true; \
850 elif echo " $(TARGET_CONFIGDIRS) " | grep " $${dir} " >/dev/null 2>&1; then \
efd7b806 851 if [ -d $(srcdir)/$${dir} ]; then \
ab1cbc67 852 [ -d $(TARGET_SUBDIR)/$${dir} ] || mkdir $(TARGET_SUBDIR)/$${dir};\
efd7b806
SC
853 r=`pwd`; export r; \
854 srcroot=`cd $(srcdir); pwd`; export srcroot; \
855 AR="$(AR_FOR_TARGET)"; export AR; \
856 AS="$(AS_FOR_TARGET)"; export AS; \
857 CC="$(CC_FOR_TARGET)"; export CC; \
858 CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
859 CXX="$(CXX_FOR_TARGET)"; export CXX; \
860 CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
054f9ada 861 LD="$(LD_FOR_TARGET)"; export LD; \
efd7b806
SC
862 NM="$(NM_FOR_TARGET)"; export NM; \
863 RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \
19b1d034 864 echo Configuring in $(TARGET_SUBDIR)/$${dir}; \
ab1cbc67 865 cd $(TARGET_SUBDIR)/$${dir}; \
19b1d034
SS
866 if [ -f $${srcroot}/$${dir}/configure ] ; then \
867 $${srcroot}/$${dir}/configure \
868 $(CONFIG_ARGUMENTS) --srcdir=$${srcroot}/$${dir}; \
869 else \
870 $${srcroot}/configure \
871 $(CONFIG_ARGUMENTS) --srcdir=$${srcroot}/$${dir}; \
872 fi; \
efd7b806
SC
873 else \
874 true; \
875 fi \
ca2ce3b3
ILT
876 else \
877 true; \
878 fi
879
6a42d184
DZ
880# This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
881# To build a target all-X means to cd to X and make all.
79337c85
ILT
882.PHONY: $(ALL_TARGET_MODULES)
883$(ALL_TARGET_MODULES):
ab1cbc67
PB
884 @dir=`echo $@ | sed -e 's/all-target-//'`; \
885 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
5cc73086 886 r=`pwd`; export r; \
79337c85 887 srcroot=`cd $(srcdir); pwd`; export srcroot; \
ab1cbc67 888 (cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) all); \
07362bd9 889 else \
79337c85 890 true; \
07362bd9
DZ
891 fi
892
6a42d184
DZ
893# This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
894# To build a target install-X means to cd to X and make install.
895.PHONY: $(CHECK_TARGET_MODULES)
896$(CHECK_TARGET_MODULES):
136ca05d 897 @dir=`echo $@ | sed -e 's/check-target-//'`; \
ab1cbc67 898 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
5cc73086 899 r=`pwd`; export r; \
6a42d184 900 srcroot=`cd $(srcdir); pwd`; export srcroot; \
ab1cbc67 901 (cd $(TARGET_SUBDIR)/$${dir};$(MAKE) $(TARGET_FLAGS_TO_PASS) check);\
6a42d184
DZ
902 else \
903 true; \
904 fi
905
79337c85
ILT
906# This rule is used to install the modules which use
907# TARGET_FLAGS_TO_PASS. To build a target install-X means to cd to X
908# and make install.
909.PHONY: $(INSTALL_TARGET_MODULES)
910$(INSTALL_TARGET_MODULES): install-dirs
ab1cbc67
PB
911 @dir=`echo $@ | sed -e 's/install-target-//'`; \
912 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
5cc73086 913 r=`pwd`; export r; \
79337c85 914 srcroot=`cd $(srcdir); pwd`; export srcroot; \
ab1cbc67
PB
915 (cd $(TARGET_SUBDIR)/$${dir}; \
916 $(MAKE) $(TARGET_FLAGS_TO_PASS) install); \
07362bd9 917 else \
79337c85 918 true; \
07362bd9
DZ
919 fi
920
6a42d184 921# This rule is used to build the modules which use X11_FLAGS_TO_PASS.
79337c85
ILT
922# To build a target all-X means to cd to X and make all.
923.PHONY: $(ALL_X11_MODULES)
924$(ALL_X11_MODULES):
925 @dir=`echo $@ | sed -e 's/all-//'`; \
926 if [ -f ./$${dir}/Makefile ] ; then \
5cc73086 927 r=`pwd`; export r; \
79337c85
ILT
928 srcroot=`cd $(srcdir); pwd`; export srcroot; \
929 (cd $${dir}; \
930 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \
07362bd9 931 else \
79337c85 932 true; \
07362bd9
DZ
933 fi
934
6a42d184
DZ
935# This rule is used to check the modules which use X11_FLAGS_TO_PASS.
936# To build a target check-X means to cd to X and make all.
937.PHONY: $(CHECK_X11_MODULES)
938$(CHECK_X11_MODULES):
939 @dir=`echo $@ | sed -e 's/check-//'`; \
940 if [ -f ./$${dir}/Makefile ] ; then \
5cc73086 941 r=`pwd`; export r; \
6a42d184
DZ
942 srcroot=`cd $(srcdir); pwd`; export srcroot; \
943 (cd $${dir}; \
944 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \
945 else \
946 true; \
947 fi
948
949# This rule is used to install the modules which use X11_FLAGS_TO_PASS.
79337c85
ILT
950# To build a target install-X means to cd to X and make install.
951.PHONY: $(INSTALL_X11_MODULES)
952$(INSTALL_X11_MODULES):
6a42d184 953 @dir=`echo $@ | sed -e 's/install-//'`; \
79337c85 954 if [ -f ./$${dir}/Makefile ] ; then \
5cc73086 955 r=`pwd`; export r; \
79337c85
ILT
956 srcroot=`cd $(srcdir); pwd`; export srcroot; \
957 (cd $${dir}; \
958 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \
07362bd9 959 else \
79337c85 960 true; \
07362bd9
DZ
961 fi
962
79337c85
ILT
963# gcc is the only module which uses GCC_FLAGS_TO_PASS.
964.PHONY: all-gcc
965all-gcc:
966 @if [ -f ./gcc/Makefile ] ; then \
5cc73086 967 r=`pwd`; export r; \
79337c85
ILT
968 srcroot=`cd $(srcdir); pwd`; export srcroot; \
969 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \
07362bd9 970 else \
79337c85 971 true; \
07362bd9
DZ
972 fi
973
65088029
ILT
974.PHONY: check-gcc
975check-gcc:
976 @if [ -f ./gcc/Makefile ] ; then \
5cc73086 977 r=`pwd`; export r; \
65088029
ILT
978 srcroot=`cd $(srcdir); pwd`; export srcroot; \
979 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \
980 else \
981 true; \
982 fi
983
79337c85
ILT
984.PHONY: install-gcc
985install-gcc:
986 @if [ -f ./gcc/Makefile ] ; then \
5cc73086 987 r=`pwd`; export r; \
79337c85
ILT
988 srcroot=`cd $(srcdir); pwd`; export srcroot; \
989 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
07362bd9 990 else \
79337c85 991 true; \
07362bd9
DZ
992 fi
993
753d5049
SC
994
995# EXPERIMENTAL STUFF
996# This rule is used to install the modules which use FLAGS_TO_PASS.
997# To build a target install-X means to cd to X and make install.
09985c96
SC
998.PHONY: install-dosrel
999install-dosrel: install-dirs info
753d5049
SC
1000 @dir=`echo $@ | sed -e 's/install-//'`; \
1001 if [ -f ./$${dir}/Makefile ] ; then \
1002 r=`pwd`; export r; \
1003 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1004 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
1005 else \
1006 true; \
1007 fi
1008
09985c96 1009install-dosrel-fake:
a987271c 1010
753d5049 1011
79337c85 1012# This is a list of inter-dependencies among modules.
65e21701 1013all-autoconf: all-m4
79337c85 1014all-bfd:
dfe44004 1015all-binutils: all-libiberty all-opcodes all-bfd all-flex all-byacc
79337c85 1016all-byacc:
79337c85 1017all-cvs:
4d802af9 1018all-dejagnu: all-tcl all-expect all-tk
79337c85
ILT
1019all-diff: all-libiberty
1020all-emacs:
1d5fcc66 1021all-emacs19: all-byacc
79337c85 1022all-etc:
c6ba9ae0 1023all-expect: all-tcl all-tk
275049c0 1024all-fileutils: all-libiberty
79337c85 1025all-find:
7dcc0664 1026all-flex: all-libiberty all-byacc
79337c85 1027all-gas: all-libiberty all-opcodes all-bfd
65e21701 1028all-gash: all-tcl
79337c85 1029all-gawk:
fc3524a9
DE
1030ALL_GCC = all-gcc
1031all-gcc: all-libiberty all-byacc all-binutils all-gas all-ld
04103845 1032all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-byacc all-sim $(gdbnlmrequirements)
79337c85 1033all-gprof: all-libiberty all-bfd
6214eb23 1034all-grep: all-libiberty
19b1d034 1035all-grez: all-libiberty all-bfd
ab1cbc67 1036all-gui: all-gdb all-libproc all-target-librx
79337c85
ILT
1037all-gzip: all-libiberty
1038all-hello: all-libiberty
1039all-indent:
3585593d 1040all-ispell: all-emacs19
79337c85 1041all-ld: all-libiberty all-bfd all-byacc all-flex
ab1cbc67
PB
1042configure-target-libg++: $(ALL_GCC)
1043all-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++
1044configure-target-libgloss: $(ALL_GCC)
1045all-target-libgloss: configure-target-libgloss
1046configure-target-libio: $(ALL_GCC)
1047all-target-libio: configure-target-libio all-gas all-ld all-gcc all-target-libiberty all-target-newlib
79337c85 1048all-libiberty:
ab1cbc67
PB
1049configure-target-librx: $(ALL_GCC) configure-target-newlib
1050all-target-librx: configure-target-librx
1051configure-target-libstdc++: $(ALL_GCC)
1052all-target-libstdc++: configure-target-libstdc++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio
79337c85
ILT
1053all-m4: all-libiberty
1054all-make: all-libiberty
1055all-mmalloc:
ab1cbc67
PB
1056configure-target-newlib: $(ALL_GCC)
1057all-target-newlib: configure-target-newlib all-binutils all-gas all-gcc
275049c0 1058all-opcodes: all-bfd
be2c65d3 1059all-patch: all-libiberty
b255ccdb 1060all-prms: all-libiberty
79337c85
ILT
1061all-rcs:
1062all-readline:
1063all-recode: all-libiberty
ac259c28
JM
1064all-sed: all-libiberty
1065all-send-pr: all-prms
79337c85
ILT
1066all-shellutils:
1067all-sim: all-libiberty all-bfd
07362bd9 1068all-tar: all-libiberty
79337c85
ILT
1069all-tcl:
1070all-tclX: all-tcl all-tk
1071all-tk: all-tcl
1072all-texinfo: all-libiberty
1073all-textutils:
1074all-tgas: all-libiberty all-bfd
1075all-time:
1076all-wdiff:
309dca2a 1077all-target-winsup: all-target-newlib configure-target-winsup
ab1cbc67 1078configure-target-winsup: configure-target-newlib
79337c85 1079all-uudecode: all-libiberty
ab1cbc67
PB
1080configure-target-libiberty: $(ALL_GCC)
1081all-target-libiberty: configure-target-libiberty all-gcc all-ld all-target-newlib
07362bd9 1082
79337c85 1083### other supporting targets
07362bd9 1084
79337c85
ILT
1085MAKEDIRS= \
1086 $(prefix) \
1087 $(exec_prefix) \
1088 $(tooldir)
fca4f908 1089
79337c85
ILT
1090.PHONY: install-dirs
1091install-dirs:
1092 @for i in $(MAKEDIRS) ; do \
1093 echo Making $$i... ; \
62cd4a20 1094 parent=`echo $$i | sed -e 's@/[^/]*$$@@' | sed -e 's@^$$@/@'`; \
79337c85
ILT
1095 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi ; \
1096 if [ ! -d $$i ] ; then \
1097 if mkdir $$i ; then \
1098 true ; \
1099 else \
1100 exit 1 ; \
1101 fi ; \
1102 else \
1103 true ; \
1104 fi ; \
1105 done
23e3e7f9 1106
618f57a9 1107
79337c85
ILT
1108dir.info: do-install-info
1109 if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \
1110 $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \
1111 mv -f dir.info.new dir.info ; \
1112 else true ; \
72c09fbc 1113 fi
6b7e5998 1114
b1cceba2
DZ
1115dist:
1116 @echo "Building a full distribution of this tree isn't done"
1117 @echo "via 'make dist'. Check out the etc/ subdirectory"
1118
eb02fd64
RP
1119etags tags: TAGS
1120
753d5049
SC
1121# Right now this just builds TAGS in each subdirectory. emacs19 has the
1122# ability to use several tags files at once, so there is probably no need
1123# to combine them into one big TAGS file (like CVS 1.3 does). We could
1124# (if we felt like it) have this Makefile write a piece of elisp which
1125# the user could load to tell emacs19 where all the TAGS files we just
1126# built are.
1127TAGS: do-TAGS
eb02fd64 1128
eb02fd64
RP
1129# with the gnu make, this is done automatically.
1130
01ec9588 1131Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag)
a26878d1 1132 $(SHELL) ./config.status
eb02fd64 1133
11954bf1 1134#
01ec9588 1135# Support for building net releases
11954bf1 1136
01ec9588
JK
1137# Files in devo used in any net release.
1138# ChangeLog omitted because it may refer to files which are not in this
1139# distribution (perhaps it would be better to include it anyway).
d94d255d 1140DEVO_SUPPORT= README Makefile.in configure configure.in \
9823504d 1141 config.guess config.sub config move-if-change \
81597186 1142 mpw-README mpw-build.in mpw-config.in mpw-configure \
ab1cbc67 1143 COPYING COPYING.LIB install.sh cfg-ml-com.in cfg-ml-pos.in
01ec9588
JK
1144
1145# Files in devo/etc used in any net release.
1146# ChangeLog omitted because it may refer to files which are not in this
1147# distribution (perhaps it would be better to include it anyway).
6d681784 1148ETC_SUPPORT= Makefile.in cfg-paper.texi configure.in configure.man \
ab1cbc67
PB
1149 configure.texi standards.texi make-stds.texi \
1150 configure.info* standards.info* cfg-paper.info*
01ec9588 1151
40e16078
KR
1152# When you use `make setup-dirs' or `make taz' you should always redefine
1153# this macro.
1154SUPPORT_FILES = list-of-support-files-for-tool-in-question
65e21701
KR
1155# Files where "byacc" (Cygnus version) should be changed to "bison -y" (FSF).
1156DISTBISONFILES= binutils/Makefile.in gas/Makefile.in gdb/Makefile.in
40e16078 1157
a54e05f6
KR
1158.PHONY: taz
1159
484fa12d
JW
1160taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \
1161 texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1162 # Make sure "diststuff" files get built properly.
65e21701
KR
1163 for f in $(DISTBISONFILES) ; do \
1164 if [ -r $$f ]; then \
7b636683 1165 sed '/^BISON *=.*$$/s/.*/BISON = bison -y/' <$$f >tmp ; \
65e21701
KR
1166 mv -f tmp $$f ; \
1167 else true; fi ; \
1168 done
484fa12d
JW
1169 # Take out texinfo from a few places; make simple BISON=bison line.
1170 sed -e '/^all\.normal: /s/\all-texinfo //' \
1171 -e '/^ install-texinfo /d' \
1172 -e '/^BISON = /,/^$$/d' \
1173 -e '/^# BISON:/s/.*/BISON = bison -y/' \
1174 <Makefile.in >tmp
1175 mv -f tmp Makefile.in
65e21701 1176 #
1d5fcc66
PB
1177 $(start-sanitize-Sanitize)
1178 @if [ -f .Sanitize ] ; then echo "RUN Sanitize FIRST!" ; false ; fi ;
1179 $(end-sanitize-Sanitize)
40e16078 1180 ./configure sun4
ab1cbc67
PB
1181 [ -z "$(CONFIGURE_TARGET_MODULES)" ] \
1182 || $(MAKE) $(CONFIGURE_TARGET_MODULES) ALL_GCC="" \
1183 CC_FOR_TARGET="$(CC) CXX_FOR_TARGET="$(CXX)"
6b9e3a78 1184 # Make links, and run "make diststuff" or "make info" when needed.
a54e05f6 1185 rm -rf proto-toplev ; mkdir proto-toplev
7f9cb3b2 1186 set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
a54e05f6
KR
1187 for d in $$dirs ; do \
1188 if [ -d $$d ]; then \
ab1cbc67
PB
1189 if [ ! -f $$d/Makefile ] ; then true ; \
1190 elif grep '^diststuff:' $$d/Makefile >/dev/null ; then \
1191 (cd $$d ; $(MAKE) diststuff ) || exit 1 ; \
6b9e3a78 1192 elif grep '^info:' $$d/Makefile >/dev/null ; then \
ab1cbc67 1193 (cd $$d ; $(MAKE) info ) || exit 1 ; \
6b9e3a78 1194 fi ; \
7f9cb3b2
KR
1195 if [ -d $$d/proto-$$d.dir ]; then \
1196 ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
1197 else \
1198 ln -s ../$$d proto-toplev/$$d ; \
1199 fi ; \
a54e05f6 1200 else ln -s ../$$d proto-toplev/$$d ; fi ; \
40e16078 1201 done
3dbe0fa2 1202 cd etc ; $(MAKE) info
5600fbd2 1203 $(MAKE) distclean
a54e05f6 1204 #
40e16078 1205 mkdir proto-toplev/etc
15408b3b
KR
1206 (cd proto-toplev/etc; \
1207 for i in $(ETC_SUPPORT); do \
40e16078 1208 ln -s ../../etc/$$i . ; \
15408b3b 1209 done)
a54e05f6 1210 #
04103845 1211 # Take out texinfo from configurable dirs
40e16078
KR
1212 rm proto-toplev/configure.in
1213 sed -e '/^host_tools=/s/texinfo //' \
40e16078 1214 <configure.in >proto-toplev/configure.in
a54e05f6 1215 #
40e16078
KR
1216 mkdir proto-toplev/texinfo
1217 ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
7f9cb3b2 1218 ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/
484fa12d 1219 ln -s ../../texinfo/lgpl.texinfo proto-toplev/texinfo/
40e16078 1220 ln -s ../../texinfo/tex3patch proto-toplev/texinfo/
a561909f 1221 chmod og=u `find . -print`
7f9cb3b2 1222 (VER=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \
1d2bb445 1223 echo "==> Making $(TOOL)-$$VER.tar.gz"; \
a59b94d2 1224 rm -f $(TOOL)-$$VER; ln -s proto-toplev $(TOOL)-$$VER; \
40e16078 1225 tar cfh - $(TOOL)-$$VER \
5cc73086 1226 | $(GZIPPROG) -v -9 >$(TOOL)-$$VER.tar.gz )
40e16078 1227
484fa12d 1228TEXINFO_SUPPORT= texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
7f9cb3b2 1229DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT)
40e16078 1230
96bfa612 1231.PHONY: gas.tar.gz
7f9cb3b2 1232GAS_SUPPORT_DIRS= bfd include libiberty opcodes
96bfa612 1233gas.tar.gz: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas
484fa12d
JW
1234 $(MAKE) -f Makefile.in taz TOOL=gas \
1235 SUPPORT_FILES="$(GAS_SUPPORT_DIRS)"
40e16078 1236
7f9cb3b2 1237# The FSF "binutils" release includes gprof and ld.
96bfa612 1238.PHONY: binutils.tar.gz
4be4b991 1239BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof
96bfa612 1240binutils.tar.gz: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils
484fa12d 1241 $(MAKE) -f Makefile.in taz TOOL=binutils \
2492f942 1242 SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS) makeall.bat configure.bat"
7f9cb3b2 1243
96bfa612 1244.PHONY: gas+binutils.tar.gz
a54e05f6 1245GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof
96bfa612 1246gas+binutils.tar.gz: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas
484fa12d 1247 $(MAKE) -f Makefile.in taz TOOL=gas \
2492f942 1248 SUPPORT_FILES="$(GASB_SUPPORT_DIRS) makeall.bat configure.bat"
79337c85 1249
5600fbd2 1250.PHONY: libg++.tar.gz
ab1cbc67 1251LIBGXX_SUPPORT_DIRS=include libstdc++ libio librx libiberty
5600fbd2 1252libg++.tar.gz: $(DIST_SUPPORT) libg++
484fa12d
JW
1253 $(MAKE) -f Makefile.in taz TOOL=libg++ \
1254 SUPPORT_FILES="$(LIBGXX_SUPPORT_DIRS)"
5600fbd2 1255
49dfa984
JM
1256GNATS_SUPPORT_DIRS=include libiberty send-pr
1257gnats.tar.gz: $(DIST_SUPPORT) $(GNATS_SUPPORT_DIRS) gnats
a0bd8e18 1258 $(MAKE) -f Makefile.in taz TOOL=gnats \
49dfa984
JM
1259 SUPPORT_FILES="$(GNATS_SUPPORT_DIRS)"
1260
1d5fcc66 1261.PHONY: gdb.tar.gz
81597186 1262GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline sim utils
ca2ce3b3 1263GDBTK_SUPPORT_DIRS= `if [ -d tcl -a -d tk ] ; then echo tcl tk ; fi`
1d5fcc66
PB
1264gdb.tar.gz: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb
1265 $(MAKE) -f Makefile.in taz TOOL=gdb \
ca2ce3b3 1266 SUPPORT_FILES="$(GDB_SUPPORT_DIRS) $(GDBTK_SUPPORT_DIRS)"
1d5fcc66 1267
7166a308 1268.PHONY: newlib.tar.gz
a220ba0f 1269NEWLIB_SUPPORT_DIRS=libgloss
04103845 1270# taz configures for the sun4 target which won't configure newlib.
a220ba0f
SC
1271# We need newlib configured so that the .info files are made.
1272# Unfortunately, it is not enough to just configure newlib separately:
1273# taz will build the .info files but since SUBDIRS won't contain newlib,
1274# distclean won't be run (leaving Makefile, config.status, and the tmp files
1275# used in building the .info files, eg: *.def, *.ref).
1276# Compensate here by configuring newlib for a simple (no multilib support)
1277# cross target (sparc64), building the info files, and doing make distclean
1278# ourselves.
7166a308 1279newlib.tar.gz: $(DIST_SUPPORT) $(NEWLIB_SUPPORT_DIRS) newlib
04103845
DE
1280 rootme=`pwd` ; \
1281 cd newlib && ../configure --srcdir $$rootme/newlib \
1282 --host sun4 --target sparc64-elf
a220ba0f
SC
1283 cd newlib ; make info
1284 cd newlib ; make distclean
7166a308
KR
1285 $(MAKE) -f Makefile.in taz TOOL=newlib \
1286 SUPPORT_FILES="$(NEWLIB_SUPPORT_DIRS)" \
6b9e3a78 1287 DEVO_SUPPORT="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib
7166a308 1288
79337c85
ILT
1289.NOEXPORT:
1290MAKEOVERRIDES=
1291
1292# start-sanitize-chill
1293## This is ugly, but I don't want GNU make to put these variables in
1294## the environment. Older makes will see this as a set of targets
1295## with no dependencies and no actions.
1296unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
1297# end-sanitize-chill
1298
eb02fd64 1299# end of Makefile.in
This page took 0.2531 seconds and 4 git commands to generate.