Add clean-{module} support
[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-autoconf \
414 all-bfd \
415 all-binutils \
416 all-byacc \
417 all-cvs \
418 all-dejagnu \
419 all-diff \
420 all-dosutils \
421 all-etc \
422 all-fileutils \
423 all-find \
424 all-flex \
425 all-gas \
426 all-gawk \
427 all-gprof \
428 all-grep \
429 all-grez \
430 all-gzip \
431 all-hello \
432 all-indent \
433 all-ispell \
434 all-ld \
435 all-libiberty \
436 all-m4 \
437 all-make \
438 all-mmalloc \
439 all-opcodes \
440 all-patch \
441 all-perl \
442 all-prms \
443 all-rcs \
444 all-readline \
445 all-release \
446 all-recode \
447 all-sed \
448 all-send-pr \
449 all-shellutils \
450 all-sim \
451 all-tar \
452 all-tcl \
453 all-texinfo \
454 all-textutils \
455 all-tgas \
456 all-time \
457 all-uudecode \
458 all-wdiff
459
460 # This is a list of the check targets for all of the modules which are
461 # compiled using $(FLAGS_TO_PASS).
462 # This is a list of the check targets for all of the modules which are
463 # compiled using $(FLAGS_TO_PASS).
464 #
465 # The list is in two parts. The first lists those tools which
466 # are tested as part of the host's native tool-chain, and not
467 # tested in a cross configuration.
468 NATIVE_CHECK_MODULES = \
469 check-byacc \
470 check-flex
471
472 CROSS_CHECK_MODULES = \
473 check-autoconf \
474 check-bfd \
475 check-binutils \
476 check-cvs \
477 check-dejagnu \
478 check-diff \
479 check-etc \
480 check-fileutils \
481 check-find \
482 check-gas \
483 check-gawk \
484 check-gprof \
485 check-grep \
486 check-gzip \
487 check-hello \
488 check-indent \
489 check-ispell \
490 check-ld \
491 check-libiberty \
492 check-m4 \
493 check-make \
494 check-mmcheckoc \
495 check-opcodes \
496 check-patch \
497 check-perl \
498 check-prms \
499 check-rcs \
500 check-readline \
501 check-recode \
502 check-sed \
503 check-send-pr \
504 check-shellutils \
505 check-sim \
506 check-tar \
507 check-tcl \
508 check-texinfo \
509 check-textutils \
510 check-tgas \
511 check-time \
512 check-uudecode \
513 check-wdiff
514
515 CHECK_MODULES=$(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
516
517 # This is a list of the install targets for all of the modules which are
518 # compiled using $(FLAGS_TO_PASS).
519 INSTALL_MODULES = \
520 install-autoconf \
521 install-bfd \
522 install-binutils \
523 install-byacc \
524 install-cvs \
525 install-dejagnu \
526 install-diff \
527 install-dosutils \
528 install-etc \
529 install-fileutils \
530 install-find \
531 install-flex \
532 install-gas \
533 install-gawk \
534 install-gprof \
535 install-grep \
536 install-grez \
537 install-gzip \
538 install-hello \
539 install-indent \
540 install-ispell \
541 install-ld \
542 install-libiberty \
543 install-m4 \
544 install-make \
545 install-mmalloc \
546 install-opcodes \
547 install-patch \
548 install-perl \
549 install-prms \
550 install-rcs \
551 install-readline \
552 install-recode \
553 install-sed \
554 install-send-pr \
555 install-shellutils \
556 install-sim \
557 install-tar \
558 install-tcl \
559 install-texinfo \
560 install-textutils \
561 install-tgas \
562 install-time \
563 install-uudecode \
564 install-wdiff
565
566 # This is a list of the targets for all of the modules which are compiled
567 # using $(X11_FLAGS_TO_PASS).
568 ALL_X11_MODULES = \
569 all-emacs \
570 all-emacs19 \
571 all-gdb \
572 all-expect \
573 all-gash \
574 all-guile \
575 all-tclX \
576 all-tk
577
578 # This is a list of the check targets for all of the modules which are
579 # compiled using $(X11_FLAGS_TO_PASS).
580 CHECK_X11_MODULES = \
581 check-emacs \
582 check-gdb \
583 check-guile \
584 check-expect \
585 check-gash \
586 check-tclX \
587 check-tk
588
589 # This is a list of the install targets for all the modules which are
590 # compiled using $(X11_FLAGS_TO_PASS).
591 INSTALL_X11_MODULES = \
592 install-emacs \
593 install-emacs19 \
594 install-gdb \
595 install-guile \
596 install-expect \
597 install-gash \
598 install-tclX \
599 install-tk
600
601 # This is a list of the targets for all of the modules which are compiled
602 # using $(TARGET_FLAGS_TO_PASS).
603 ALL_TARGET_MODULES = \
604 all-target-libio \
605 all-target-libstdc++ \
606 all-target-librx \
607 all-target-libg++ \
608 all-target-newlib \
609 all-target-winsup \
610 all-target-libgloss \
611 all-target-libiberty \
612 all-target-examples
613
614 # This is a list of the configure targets for all of the modules which
615 # are compiled using the target tools.
616 CONFIGURE_TARGET_MODULES = \
617 configure-target-libio \
618 configure-target-libstdc++ \
619 configure-target-librx \
620 configure-target-libg++ \
621 configure-target-newlib \
622 configure-target-winsup \
623 configure-target-libgloss \
624 configure-target-libiberty \
625 configure-target-examples
626
627 # This is a list of the check targets for all of the modules which are
628 # compiled using $(TARGET_FLAGS_TO_PASS).
629 CHECK_TARGET_MODULES = \
630 check-target-libio \
631 check-target-libstdc++ \
632 check-target-libg++ \
633 check-target-newlib \
634 check-target-winsup \
635 check-target-libiberty
636
637 # This is a list of the install targets for all of the modules which are
638 # compiled using $(TARGET_FLAGS_TO_PASS).
639 INSTALL_TARGET_MODULES = \
640 install-target-libio \
641 install-target-libstdc++ \
642 install-target-libg++ \
643 install-target-newlib \
644 install-target-winsup \
645 install-target-libgloss \
646 install-target-libiberty
647
648 # This is a list of the targets for which we can do a clean-{target}.
649 CLEAN_MODULES = \
650 clean-autoconf \
651 clean-bfd \
652 clean-binutils \
653 clean-byacc \
654 clean-cvs \
655 clean-dejagnu \
656 clean-diff \
657 clean-dosutils \
658 clean-etc \
659 clean-fileutils \
660 clean-find \
661 clean-flex \
662 clean-gas \
663 clean-gawk \
664 clean-gprof \
665 clean-grep \
666 clean-grez \
667 clean-gzip \
668 clean-hello \
669 clean-indent \
670 clean-ispell \
671 clean-ld \
672 clean-libiberty \
673 clean-m4 \
674 clean-make \
675 clean-mmalloc \
676 clean-opcodes \
677 clean-patch \
678 clean-perl \
679 clean-prms \
680 clean-rcs \
681 clean-readline \
682 clean-release \
683 clean-recode \
684 clean-sed \
685 clean-send-pr \
686 clean-shellutils \
687 clean-sim \
688 clean-tar \
689 clean-tcl \
690 clean-texinfo \
691 clean-textutils \
692 clean-tgas \
693 clean-time \
694 clean-uudecode \
695 clean-wdiff
696
697 # All of the target modules that can be cleaned
698 CLEAN_TARGET_MODULES = \
699 clean-target-libio \
700 clean-target-libstdc++ \
701 clean-target-librx \
702 clean-target-libg++ \
703 clean-target-newlib \
704 clean-target-winsup \
705 clean-target-libgloss \
706 clean-target-libiberty \
707 clean-target-examples
708
709 # All of the x11 modules that can be cleaned
710 CLEAN_X11_MODULES = \
711 clean-emacs \
712 clean-emacs19 \
713 clean-gdb \
714 clean-expect \
715 clean-gash \
716 clean-guile \
717 clean-tclX \
718 clean-tk
719
720 # The first rule in the file had better be this one. Don't put any above it.
721 all: all.normal
722 .PHONY: all
723
724 # The target built for a native build.
725 .PHONY: all.normal
726 all.normal: \
727 $(ALL_MODULES) \
728 $(ALL_TARGET_MODULES) \
729 $(ALL_X11_MODULES) \
730 all-gcc
731
732 # Do a target for all the subdirectories. A ``make do-X'' will do a
733 # ``make X'' in all subdirectories (because, in general, there is a
734 # dependency (below) of X upon do-X, a ``make X'' will also do this,
735 # but it may do additional work as well).
736 # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
737 # because it is so large that it can easily overflow the command line
738 # length limit on some systems.
739 DO_X = \
740 do-clean \
741 do-distclean \
742 do-dvi \
743 do-info \
744 do-install-info \
745 do-installcheck \
746 do-mostlyclean \
747 do-maintainer-clean \
748 do-TAGS
749 .PHONY: $(DO_X)
750 $(DO_X):
751 @target=`echo $@ | sed -e 's/^do-//'`; \
752 r=`pwd`; export r; \
753 srcroot=`cd $(srcdir); pwd`; export srcroot; \
754 $(SET_LIB_PATH) \
755 for i in $(SUBDIRS) -dummy-; do \
756 if [ -f ./$$i/Makefile ]; then \
757 case $$i in \
758 gcc) \
759 for flag in $(EXTRA_GCC_FLAGS); do \
760 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
761 done; \
762 ;; \
763 *) \
764 for flag in $(EXTRA_HOST_FLAGS); do \
765 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
766 done; \
767 ;; \
768 esac ; \
769 export AR AS CC CXX NM RANLIB DLLTOOL; \
770 if (cd ./$$i; \
771 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
772 "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \
773 "RANLIB=$${RANLIB}" \
774 "DLLTOOL=$${DLLTOOL}" \
775 $${target}); \
776 then true; else exit 1; fi; \
777 else true; fi; \
778 done
779 @target=`echo $@ | sed -e 's/^do-//'`; \
780 r=`pwd`; export r; \
781 srcroot=`cd $(srcdir); pwd`; export srcroot; \
782 $(SET_LIB_PATH) \
783 for i in $(TARGET_CONFIGDIRS) -dummy-; do \
784 if [ -f $(TARGET_SUBDIR)/$$i/Makefile ]; then \
785 for flag in $(EXTRA_TARGET_FLAGS); do \
786 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
787 done; \
788 export AR AS CC CXX NM RANLIB DLLTOOL; \
789 if (cd $(TARGET_SUBDIR)/$$i; \
790 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
791 "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \
792 "RANLIB=$${RANLIB}" \
793 "DLLTOOL=$${DLLTOOL}" \
794 $${target}); \
795 then true; else exit 1; fi; \
796 else true; fi; \
797 done
798
799 # Here are the targets which correspond to the do-X targets.
800
801 .PHONY: info installcheck dvi install-info
802 .PHONY: clean distclean mostlyclean maintainer-clean realclean
803 .PHONY: local-clean local-distclean local-maintainer-clean
804 info: do-info
805 installcheck: do-installcheck
806 dvi: do-dvi
807
808 install-info: do-install-info dir.info
809 srcroot=`cd $(srcdir); pwd`; export srcroot; \
810 if [ -f dir.info ] ; then \
811 $(INSTALL_DATA) dir.info $(infodir)/dir.info ; \
812 else true ; fi
813
814 local-clean:
815 -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E
816
817 local-distclean:
818 -rm -f Makefile config.status
819 -if [ "$(TARGET_SUBDIR)" != "." ]; then \
820 rm -rf $(TARGET_SUBDIR); \
821 else true; fi
822
823 local-maintainer-clean:
824 @echo "This command is intended for maintainers to use;"
825 @echo "it deletes files that may require special tools to rebuild."
826
827 clean: do-clean local-clean
828 mostlyclean: do-mostlyclean local-clean
829 distclean: do-distclean local-clean local-distclean
830 maintainer-clean: local-maintainer-clean do-maintainer-clean local-clean
831 maintainer-clean: local-distclean
832 realclean: maintainer-clean
833
834 # This rule is used to clean specific modules.
835 .PHONY: $(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc
836 $(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc:
837 @dir=`echo $@ | sed -e 's/clean-//'`; \
838 if [ -f ./$${dir}/Makefile ] ; then \
839 r=`pwd`; export r; \
840 srcroot=`cd $(srcdir); pwd`; export srcroot; \
841 $(SET_LIB_PATH) \
842 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) clean); \
843 else \
844 true; \
845 fi
846
847 .PHONY: $(CLEAN_TARGET_MODULES)
848 $(CLEAN_TARGET_MODULES):
849 @dir=`echo $@ | sed -e 's/clean-target-//'`; \
850 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
851 r=`pwd`; export r; \
852 srcroot=`cd $(srcdir); pwd`; export srcroot; \
853 $(SET_LIB_PATH) \
854 (cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) clean); \
855 else \
856 true; \
857 fi
858
859 clean-target: $(CLEAN_TARGET_MODULES)
860
861 # Check target.
862
863 .PHONY: check
864 check: $(CHECK_MODULES) \
865 $(CHECK_TARGET_MODULES) \
866 $(CHECK_X11_MODULES) \
867 check-gcc
868
869 # Installation targets.
870
871 .PHONY: install uninstall source-vault binary-vault vault-install
872 install: $(INSTALL_TARGET)
873
874 uninstall:
875 @echo "the uninstall target is not supported in this tree"
876
877 source-vault:
878 $(MAKE) -f ./release/Build-A-Release \
879 host=$(host_alias) source-vault
880
881 binary-vault:
882 $(MAKE) -f ./release/Build-A-Release \
883 host=$(host_alias) target=$(target_alias)
884
885 vault-install:
886 @if [ -f ./release/vault-install ] ; then \
887 ./release/vault-install $(host_alias) $(target_alias) ; \
888 else \
889 true ; \
890 fi
891
892 .PHONY: install.all
893 install.all: install-no-fixedincludes
894 @if [ -f ./gcc/Makefile ] ; then \
895 r=`pwd` ; export r ; \
896 $(SET_LIB_PATH) \
897 (cd ./gcc; \
898 $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
899 else \
900 true ; \
901 fi
902
903 # install-no-fixedincludes is used because Cygnus can not distribute
904 # the fixed header files.
905 .PHONY: install-no-fixedincludes
906 install-no-fixedincludes: \
907 install-dirs \
908 $(INSTALL_MODULES) \
909 $(INSTALL_TARGET_MODULES) \
910 $(INSTALL_X11_MODULES) \
911 gcc-no-fixedincludes
912
913 # Install the gcc headers files, but not the fixed include files,
914 # which Cygnus is not allowed to distribute. This rule is very
915 # dependent on the workings of the gcc Makefile.in.
916 .PHONY: gcc-no-fixedincludes
917 gcc-no-fixedincludes:
918 @if [ -f ./gcc/Makefile ]; then \
919 rm -rf gcc/tmp-include; \
920 mv gcc/include gcc/tmp-include 2>/dev/null; \
921 mkdir gcc/include; \
922 cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \
923 touch gcc/stmp-fixinc gcc/include/fixed; \
924 rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \
925 r=`pwd`; export r; \
926 srcroot=`cd $(srcdir); pwd` ; export srcroot; \
927 $(SET_LIB_PATH) \
928 (cd ./gcc; \
929 $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
930 rm -rf gcc/include; \
931 mv gcc/tmp-include gcc/include 2>/dev/null; \
932 else true; fi
933
934 # This rule is used to build the modules which use FLAGS_TO_PASS. To
935 # build a target all-X means to cd to X and make all.
936 #
937 # all-gui, and all-libproc are handled specially because
938 # they are still experimental, and if they fail to build, that
939 # shouldn't stop "make all".
940 .PHONY: $(ALL_MODULES) all-gui all-libproc
941 $(ALL_MODULES) all-gui all-libproc:
942 @dir=`echo $@ | sed -e 's/all-//'`; \
943 if [ -f ./$${dir}/Makefile ] ; then \
944 r=`pwd`; export r; \
945 srcroot=`cd $(srcdir); pwd`; export srcroot; \
946 $(SET_LIB_PATH) \
947 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
948 else \
949 true; \
950 fi
951
952 # These rules are used to check the modules which use FLAGS_TO_PASS.
953 # To build a target check-X means to cd to X and make check. Some
954 # modules are only tested in a native toolchain.
955
956 .PHONY: $(CHECK_MODULES) $(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
957 $(NATIVE_CHECK_MODULES):
958 @if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
959 dir=`echo $@ | sed -e 's/check-//'`; \
960 if [ -f ./$${dir}/Makefile ] ; then \
961 r=`pwd`; export r; \
962 srcroot=`cd $(srcdir); pwd`; export srcroot; \
963 $(SET_LIB_PATH) \
964 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
965 else \
966 true; \
967 fi; \
968 fi
969
970 $(CROSS_CHECK_MODULES):
971 @dir=`echo $@ | sed -e 's/check-//'`; \
972 if [ -f ./$${dir}/Makefile ] ; then \
973 r=`pwd`; export r; \
974 srcroot=`cd $(srcdir); pwd`; export srcroot; \
975 $(SET_LIB_PATH) \
976 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
977 else \
978 true; \
979 fi
980
981 # This rule is used to install the modules which use FLAGS_TO_PASS.
982 # To build a target install-X means to cd to X and make install.
983 .PHONY: $(INSTALL_MODULES)
984 $(INSTALL_MODULES): install-dirs
985 @dir=`echo $@ | sed -e 's/install-//'`; \
986 if [ -f ./$${dir}/Makefile ] ; then \
987 r=`pwd`; export r; \
988 srcroot=`cd $(srcdir); pwd`; export srcroot; \
989 $(SET_LIB_PATH) \
990 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
991 else \
992 true; \
993 fi
994
995 # This rule is used to configure the modules which are built with the
996 # target tools.
997 .PHONY: $(CONFIGURE_TARGET_MODULES)
998 $(CONFIGURE_TARGET_MODULES):
999 @dir=`echo $@ | sed -e 's/configure-target-//'`; \
1000 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1001 true; \
1002 elif echo " $(TARGET_CONFIGDIRS) " | grep " $${dir} " >/dev/null 2>&1; then \
1003 if [ -d $(srcdir)/$${dir} ]; then \
1004 [ -d $(TARGET_SUBDIR)/$${dir} ] || mkdir $(TARGET_SUBDIR)/$${dir};\
1005 r=`pwd`; export r; \
1006 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1007 $(SET_LIB_PATH) \
1008 AR="$(AR_FOR_TARGET)"; export AR; \
1009 AS="$(AS_FOR_TARGET)"; export AS; \
1010 CC="$(CC_FOR_TARGET)"; export CC; \
1011 CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
1012 CXX="$(CXX_FOR_TARGET)"; export CXX; \
1013 CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
1014 DLLTOOL="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL; \
1015 LD="$(LD_FOR_TARGET)"; export LD; \
1016 NM="$(NM_FOR_TARGET)"; export NM; \
1017 RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \
1018 echo Configuring in $(TARGET_SUBDIR)/$${dir}; \
1019 cd $(TARGET_SUBDIR)/$${dir}; \
1020 case $(srcdir) in \
1021 /*) \
1022 topdir=$(srcdir) ;; \
1023 *) \
1024 case "$(TARGET_SUBDIR)" in \
1025 .) topdir="../$(srcdir)" ;; \
1026 *) topdir="../../$(srcdir)" ;; \
1027 esac ;; \
1028 esac; \
1029 if [ "$(srcdir)" = "." ] ; then \
1030 if [ "$(TARGET_SUBDIR)" != "." ] ; then \
1031 if $(SHELL) $${srcroot}/symlink-tree $${topdir}/$${dir} "no-such-file" ; then \
1032 if [ -f Makefile ]; then \
1033 if $(MAKE) distclean; then \
1034 true; \
1035 else \
1036 exit 1; \
1037 fi; \
1038 else \
1039 true; \
1040 fi; \
1041 else \
1042 exit 1; \
1043 fi; \
1044 else \
1045 true; \
1046 fi; \
1047 srcdiroption="--srcdir=."; \
1048 libsrcdir="."; \
1049 else \
1050 srcdiroption="--srcdir=$${topdir}/$${dir}"; \
1051 libsrcdir="$${srcroot}/$${dir}"; \
1052 fi; \
1053 if [ -f $${libsrcdir}/configure ] ; then \
1054 $(SHELL) $${libsrcdir}/configure \
1055 $(CONFIG_ARGUMENTS) $${srcdiroption} \
1056 --with-target-subdir="$(TARGET_SUBDIR)"; \
1057 else \
1058 $(SHELL) $${srcroot}/configure \
1059 $(CONFIG_ARGUMENTS) $${srcdiroption} \
1060 --with-target-subdir="$(TARGET_SUBDIR)"; \
1061 fi; \
1062 else \
1063 true; \
1064 fi; \
1065 else \
1066 true; \
1067 fi
1068
1069 # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
1070 # To build a target all-X means to cd to X and make all.
1071 .PHONY: $(ALL_TARGET_MODULES)
1072 $(ALL_TARGET_MODULES):
1073 @dir=`echo $@ | sed -e 's/all-target-//'`; \
1074 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1075 r=`pwd`; export r; \
1076 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1077 $(SET_LIB_PATH) \
1078 (cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) all); \
1079 else \
1080 true; \
1081 fi
1082
1083 # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
1084 # To build a target install-X means to cd to X and make install.
1085 .PHONY: $(CHECK_TARGET_MODULES)
1086 $(CHECK_TARGET_MODULES):
1087 @dir=`echo $@ | sed -e 's/check-target-//'`; \
1088 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1089 r=`pwd`; export r; \
1090 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1091 $(SET_LIB_PATH) \
1092 (cd $(TARGET_SUBDIR)/$${dir};$(MAKE) $(TARGET_FLAGS_TO_PASS) check);\
1093 else \
1094 true; \
1095 fi
1096
1097 # This rule is used to install the modules which use
1098 # TARGET_FLAGS_TO_PASS. To build a target install-X means to cd to X
1099 # and make install.
1100 .PHONY: $(INSTALL_TARGET_MODULES)
1101 $(INSTALL_TARGET_MODULES): install-dirs
1102 @dir=`echo $@ | sed -e 's/install-target-//'`; \
1103 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1104 r=`pwd`; export r; \
1105 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1106 $(SET_LIB_PATH) \
1107 (cd $(TARGET_SUBDIR)/$${dir}; \
1108 $(MAKE) $(TARGET_FLAGS_TO_PASS) install); \
1109 else \
1110 true; \
1111 fi
1112
1113 # This rule is used to build the modules which use X11_FLAGS_TO_PASS.
1114 # To build a target all-X means to cd to X and make all.
1115 .PHONY: $(ALL_X11_MODULES)
1116 $(ALL_X11_MODULES):
1117 @dir=`echo $@ | sed -e 's/all-//'`; \
1118 if [ -f ./$${dir}/Makefile ] ; then \
1119 r=`pwd`; export r; \
1120 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1121 $(SET_LIB_PATH) \
1122 (cd $${dir}; \
1123 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \
1124 else \
1125 true; \
1126 fi
1127
1128 # This rule is used to check the modules which use X11_FLAGS_TO_PASS.
1129 # To build a target check-X means to cd to X and make all.
1130 .PHONY: $(CHECK_X11_MODULES)
1131 $(CHECK_X11_MODULES):
1132 @dir=`echo $@ | sed -e 's/check-//'`; \
1133 if [ -f ./$${dir}/Makefile ] ; then \
1134 r=`pwd`; export r; \
1135 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1136 $(SET_LIB_PATH) \
1137 (cd $${dir}; \
1138 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \
1139 else \
1140 true; \
1141 fi
1142
1143 # This rule is used to install the modules which use X11_FLAGS_TO_PASS.
1144 # To build a target install-X means to cd to X and make install.
1145 .PHONY: $(INSTALL_X11_MODULES)
1146 $(INSTALL_X11_MODULES):
1147 @dir=`echo $@ | sed -e 's/install-//'`; \
1148 if [ -f ./$${dir}/Makefile ] ; then \
1149 r=`pwd`; export r; \
1150 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1151 $(SET_LIB_PATH) \
1152 (cd $${dir}; \
1153 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \
1154 else \
1155 true; \
1156 fi
1157
1158 # gcc is the only module which uses GCC_FLAGS_TO_PASS.
1159 .PHONY: all-gcc
1160 all-gcc:
1161 @if [ -f ./gcc/Makefile ] ; then \
1162 r=`pwd`; export r; \
1163 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1164 $(SET_LIB_PATH) \
1165 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \
1166 else \
1167 true; \
1168 fi
1169
1170 .PHONY: all-bootstrap
1171 all-bootstrap:
1172 @if [ -f ./gcc/Makefile ] ; then \
1173 r=`pwd`; export r; \
1174 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1175 $(SET_LIB_PATH) \
1176 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) bootstrap); \
1177 else \
1178 true; \
1179 fi
1180
1181 .PHONY: check-gcc
1182 check-gcc:
1183 @if [ -f ./gcc/Makefile ] ; then \
1184 r=`pwd`; export r; \
1185 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1186 $(SET_LIB_PATH) \
1187 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \
1188 else \
1189 true; \
1190 fi
1191
1192 .PHONY: install-gcc
1193 install-gcc:
1194 @if [ -f ./gcc/Makefile ] ; then \
1195 r=`pwd`; export r; \
1196 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1197 $(SET_LIB_PATH) \
1198 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
1199 else \
1200 true; \
1201 fi
1202
1203
1204 # EXPERIMENTAL STUFF
1205 # This rule is used to install the modules which use FLAGS_TO_PASS.
1206 # To build a target install-X means to cd to X and make install.
1207 .PHONY: install-dosrel
1208 install-dosrel: install-dirs info
1209 @dir=`echo $@ | sed -e 's/install-//'`; \
1210 if [ -f ./$${dir}/Makefile ] ; then \
1211 r=`pwd`; export r; \
1212 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1213 $(SET_LIB_PATH) \
1214 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
1215 else \
1216 true; \
1217 fi
1218
1219 install-dosrel-fake:
1220
1221
1222 # This is a list of inter-dependencies among modules.
1223 all-autoconf: all-m4
1224 all-bfd:
1225 all-binutils: all-libiberty all-opcodes all-bfd all-flex all-byacc
1226 all-byacc:
1227 all-cvs:
1228 all-dejagnu: all-tcl all-expect all-tk
1229 all-diff: all-libiberty
1230 all-emacs:
1231 all-emacs19: all-byacc
1232 all-etc:
1233 configure-target-examples: $(ALL_GCC)
1234 all-target-examples: configure-target-examples
1235 all-expect: all-tcl all-tk
1236 all-fileutils: all-libiberty
1237 all-find:
1238 all-flex: all-libiberty all-byacc
1239 all-gas: all-libiberty all-opcodes all-bfd
1240 all-gash: all-tcl
1241 all-gawk:
1242 ALL_GCC = all-gcc
1243 all-gcc: all-libiberty all-byacc all-binutils all-gas all-ld
1244 all-bootstrap: all-libiberty all-byacc all-binutils all-gas all-ld
1245 GDB_TK = all-tk all-tcl
1246 all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-byacc all-sim $(gdbnlmrequirements) $(GDB_TK)
1247 all-gprof: all-libiberty all-bfd all-opcodes
1248 all-grep: all-libiberty
1249 all-grez: all-libiberty all-bfd all-opcodes
1250 all-gui: all-gdb all-libproc all-target-librx
1251 all-guile:
1252 all-gzip: all-libiberty
1253 all-hello: all-libiberty
1254 all-indent:
1255 all-ispell: all-emacs19
1256 all-ld: all-libiberty all-bfd all-opcodes all-byacc all-flex
1257 configure-target-libg++: $(ALL_GCC) configure-target-librx
1258 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++
1259 configure-target-libgloss: $(ALL_GCC)
1260 all-target-libgloss: configure-target-libgloss configure-target-newlib
1261 configure-target-libio: $(ALL_GCC)
1262 all-target-libio: configure-target-libio all-gas all-ld all-gcc all-target-libiberty all-target-newlib
1263 all-libiberty:
1264 configure-target-librx: $(ALL_GCC) configure-target-newlib
1265 all-target-librx: configure-target-librx
1266 configure-target-libstdc++: $(ALL_GCC)
1267 all-target-libstdc++: configure-target-libstdc++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio
1268 all-m4: all-libiberty
1269 all-make: all-libiberty
1270 all-mmalloc:
1271 configure-target-newlib: $(ALL_GCC)
1272 all-target-newlib: configure-target-newlib all-binutils all-gas all-gcc
1273 all-opcodes: all-bfd all-libiberty
1274 all-patch: all-libiberty
1275 all-perl:
1276 all-prms: all-libiberty
1277 all-rcs:
1278 all-readline:
1279 all-recode: all-libiberty
1280 all-sed: all-libiberty
1281 all-send-pr: all-prms
1282 all-shellutils:
1283 all-sim: all-libiberty all-bfd all-opcodes
1284 all-tar: all-libiberty
1285 all-tcl:
1286 all-tclX: all-tcl all-tk
1287 all-tk: all-tcl
1288 all-texinfo: all-libiberty
1289 all-textutils:
1290 all-tgas: all-libiberty all-bfd all-opcodes
1291 all-time:
1292 all-wdiff:
1293 all-target-winsup: all-target-newlib all-target-libiberty configure-target-winsup
1294 configure-target-winsup: configure-target-newlib
1295 all-uudecode: all-libiberty
1296 configure-target-libiberty: $(ALL_GCC)
1297 all-target-libiberty: configure-target-libiberty all-gcc all-ld all-target-newlib
1298 all-target: $(ALL_TARGET_MODULES)
1299 install-target: $(INSTALL_TARGET_MODULES)
1300
1301 ### other supporting targets
1302
1303 MAKEDIRS= \
1304 $(prefix) \
1305 $(exec_prefix) \
1306 $(tooldir)
1307
1308 .PHONY: install-dirs
1309 install-dirs:
1310 @for i in $(MAKEDIRS) ; do \
1311 echo Making $$i... ; \
1312 parent=`echo $$i | sed -e 's@/[^/]*$$@@' | sed -e 's@^$$@/@'`; \
1313 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi ; \
1314 if [ ! -d $$i ] ; then \
1315 if mkdir $$i ; then \
1316 true ; \
1317 else \
1318 exit 1 ; \
1319 fi ; \
1320 else \
1321 true ; \
1322 fi ; \
1323 done
1324
1325
1326 dir.info: do-install-info
1327 if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \
1328 $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \
1329 mv -f dir.info.new dir.info ; \
1330 else true ; \
1331 fi
1332
1333 dist:
1334 @echo "Building a full distribution of this tree isn't done"
1335 @echo "via 'make dist'. Check out the etc/ subdirectory"
1336
1337 etags tags: TAGS
1338
1339 # Right now this just builds TAGS in each subdirectory. emacs19 has the
1340 # ability to use several tags files at once, so there is probably no need
1341 # to combine them into one big TAGS file (like CVS 1.3 does). We could
1342 # (if we felt like it) have this Makefile write a piece of elisp which
1343 # the user could load to tell emacs19 where all the TAGS files we just
1344 # built are.
1345 TAGS: do-TAGS
1346
1347 # with the gnu make, this is done automatically.
1348
1349 Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag)
1350 $(SHELL) ./config.status
1351
1352 #
1353 # Support for building net releases
1354
1355 # Files in devo used in any net release.
1356 # ChangeLog omitted because it may refer to files which are not in this
1357 # distribution (perhaps it would be better to include it anyway).
1358 DEVO_SUPPORT= README Makefile.in configure configure.in \
1359 config.guess config.sub config move-if-change \
1360 mpw-README mpw-build.in mpw-config.in mpw-configure \
1361 COPYING COPYING.LIB install.sh config-ml.in symlink-tree
1362
1363 # Files in devo/etc used in any net release.
1364 # ChangeLog omitted because it may refer to files which are not in this
1365 # distribution (perhaps it would be better to include it anyway).
1366 ETC_SUPPORT= Makefile.in cfg-paper.texi configure.in configure.man \
1367 configure.texi standards.texi make-stds.texi \
1368 configure.info* standards.info* cfg-paper.info*
1369
1370 # When you use `make setup-dirs' or `make taz' you should always redefine
1371 # this macro.
1372 SUPPORT_FILES = list-of-support-files-for-tool-in-question
1373 # Files where "byacc" (Cygnus version) should be changed to "bison -y" (FSF).
1374 DISTBISONFILES= binutils/Makefile.in gas/Makefile.in gdb/Makefile.in
1375
1376 .PHONY: taz
1377
1378 taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \
1379 texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1380 # Make sure "diststuff" files get built properly.
1381 for f in $(DISTBISONFILES) ; do \
1382 if [ -r $$f ]; then \
1383 sed '/^BISON *=.*$$/s/.*/BISON = bison -y/' <$$f >tmp ; \
1384 mv -f tmp $$f ; \
1385 else true; fi ; \
1386 done
1387 # Take out texinfo from a few places; make simple BISON=bison line.
1388 sed -e '/^all\.normal: /s/\all-texinfo //' \
1389 -e '/^ install-texinfo /d' \
1390 -e '/^BISON = /,/^$$/d' \
1391 -e '/^# BISON:/s/.*/BISON = bison -y/' \
1392 <Makefile.in >tmp
1393 mv -f tmp Makefile.in
1394 #
1395 $(start-sanitize-Sanitize)
1396 @if [ -f .Sanitize ] ; then echo "RUN Sanitize FIRST!" ; false ; fi ;
1397 $(end-sanitize-Sanitize)
1398 ./configure sun4
1399 [ -z "$(CONFIGURE_TARGET_MODULES)" ] \
1400 || $(MAKE) $(CONFIGURE_TARGET_MODULES) ALL_GCC="" \
1401 CC_FOR_TARGET="$(CC)" CXX_FOR_TARGET="$(CXX)"
1402 # Make links, and run "make diststuff" or "make info" when needed.
1403 rm -rf proto-toplev ; mkdir proto-toplev
1404 set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
1405 for d in $$dirs ; do \
1406 if [ -d $$d ]; then \
1407 if [ ! -f $$d/Makefile ] ; then true ; \
1408 elif grep '^diststuff:' $$d/Makefile >/dev/null ; then \
1409 (cd $$d ; $(MAKE) diststuff ) || exit 1 ; \
1410 elif grep '^info:' $$d/Makefile >/dev/null ; then \
1411 (cd $$d ; $(MAKE) info ) || exit 1 ; \
1412 fi ; \
1413 if [ -d $$d/proto-$$d.dir ]; then \
1414 ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
1415 else \
1416 ln -s ../$$d proto-toplev/$$d ; \
1417 fi ; \
1418 else ln -s ../$$d proto-toplev/$$d ; fi ; \
1419 done
1420 cd etc ; $(MAKE) info
1421 $(MAKE) distclean
1422 #
1423 mkdir proto-toplev/etc
1424 (cd proto-toplev/etc; \
1425 for i in $(ETC_SUPPORT); do \
1426 ln -s ../../etc/$$i . ; \
1427 done)
1428 #
1429 # Take out texinfo from configurable dirs
1430 rm proto-toplev/configure.in
1431 sed -e '/^host_tools=/s/texinfo //' \
1432 <configure.in >proto-toplev/configure.in
1433 #
1434 mkdir proto-toplev/texinfo
1435 ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
1436 ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/
1437 ln -s ../../texinfo/lgpl.texinfo proto-toplev/texinfo/
1438 ln -s ../../texinfo/tex3patch proto-toplev/texinfo/
1439 chmod og=u `find . -print`
1440 (VER=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \
1441 echo "==> Making $(TOOL)-$$VER.tar.gz"; \
1442 rm -f $(TOOL)-$$VER; ln -s proto-toplev $(TOOL)-$$VER; \
1443 tar cfh - $(TOOL)-$$VER \
1444 | $(GZIPPROG) -v -9 >$(TOOL)-$$VER.tar.gz )
1445
1446 TEXINFO_SUPPORT= texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1447 DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT)
1448
1449 .PHONY: gas.tar.gz
1450 GAS_SUPPORT_DIRS= bfd include libiberty opcodes
1451 gas.tar.gz: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas
1452 $(MAKE) -f Makefile.in taz TOOL=gas \
1453 SUPPORT_FILES="$(GAS_SUPPORT_DIRS)"
1454
1455 # The FSF "binutils" release includes gprof and ld.
1456 .PHONY: binutils.tar.gz
1457 BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof
1458 binutils.tar.gz: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils
1459 $(MAKE) -f Makefile.in taz TOOL=binutils \
1460 SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS) makeall.bat configure.bat"
1461
1462 .PHONY: gas+binutils.tar.gz
1463 GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof
1464 gas+binutils.tar.gz: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas
1465 $(MAKE) -f Makefile.in taz TOOL=gas \
1466 SUPPORT_FILES="$(GASB_SUPPORT_DIRS) makeall.bat configure.bat"
1467
1468 .PHONY: libg++.tar.gz
1469 LIBGXX_SUPPORT_DIRS=include libstdc++ libio librx libiberty
1470 libg++.tar.gz: $(DIST_SUPPORT) libg++
1471 $(MAKE) -f Makefile.in taz TOOL=libg++ \
1472 SUPPORT_FILES="$(LIBGXX_SUPPORT_DIRS)"
1473
1474 GNATS_SUPPORT_DIRS=include libiberty send-pr
1475 gnats.tar.gz: $(DIST_SUPPORT) $(GNATS_SUPPORT_DIRS) gnats
1476 $(MAKE) -f Makefile.in taz TOOL=gnats \
1477 SUPPORT_FILES="$(GNATS_SUPPORT_DIRS)"
1478
1479 .PHONY: gdb.tar.gz
1480 GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline sim utils
1481 GDBTK_SUPPORT_DIRS= `if [ -d tcl -a -d tk ] ; then echo tcl tk ; fi`
1482 gdb.tar.gz: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb
1483 $(MAKE) -f Makefile.in taz TOOL=gdb \
1484 SUPPORT_FILES="$(GDB_SUPPORT_DIRS) $(GDBTK_SUPPORT_DIRS)"
1485
1486 .PHONY: newlib.tar.gz
1487 NEWLIB_SUPPORT_DIRS=libgloss
1488 # taz configures for the sun4 target which won't configure newlib.
1489 # We need newlib configured so that the .info files are made.
1490 # Unfortunately, it is not enough to just configure newlib separately:
1491 # taz will build the .info files but since SUBDIRS won't contain newlib,
1492 # distclean won't be run (leaving Makefile, config.status, and the tmp files
1493 # used in building the .info files, eg: *.def, *.ref).
1494 # The problem isn't solvable however without a lot of extra work because
1495 # target libraries are built in subdir $(target_alias) which gets nuked during
1496 # the make distclean. For now punt on the issue of shipping newlib info files
1497 # with newlib net releases and wait for a day when some native target (sun4?)
1498 # supports newlib (if only minimally).
1499 newlib.tar.gz: $(DIST_SUPPORT) $(NEWLIB_SUPPORT_DIRS) newlib
1500 $(MAKE) -f Makefile.in taz TOOL=newlib \
1501 SUPPORT_FILES="$(NEWLIB_SUPPORT_DIRS)" \
1502 DEVO_SUPPORT="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib
1503
1504 .NOEXPORT:
1505 MAKEOVERRIDES=
1506
1507 # start-sanitize-chill
1508 ## This is ugly, but I don't want GNU make to put these variables in
1509 ## the environment. Older makes will see this as a set of targets
1510 ## with no dependencies and no actions.
1511 unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
1512 # end-sanitize-chill
1513
1514 # end of Makefile.in