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