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