2 # Makefile for directory with subdirs to build.
3 # Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 # 1999, 2000, 2001, 2002 Free Software Foundation
6 # This file is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 # Tell GNU make 3.79 not to run the top level in parallel. This
22 # prevents contention for $builddir/$target/config.cache, as well
23 # as minimizing scatter in file system caches.
24 NOTPARALLEL
= .NOTPARALLEL
30 exec_prefix = $(prefix)
32 bindir=${exec_prefix}/bin
33 sbindir
=${exec_prefix}/sbin
34 libexecdir
=${exec_prefix}/libexec
35 datadir=${prefix}/share
36 sysconfdir
=${prefix}/etc
37 sharedstatedir
=${prefix}/com
38 localstatedir
=${prefix}/var
39 libdir=${exec_prefix}/lib
40 includedir=${prefix}/include
41 oldincludedir=/usr
/include
42 infodir=${prefix}/info
44 gxx_include_dir
=${includedir}/g
++
46 tooldir
= $(exec_prefix)/$(target_alias
)
47 build_tooldir
= $(exec_prefix)/$(target_alias
)
49 program_transform_name
=
51 man1dir = $(mandir)/man1
52 man2dir = $(mandir)/man2
53 man3dir = $(mandir)/man3
54 man4dir = $(mandir)/man4
55 man5dir = $(mandir)/man5
56 man6dir = $(mandir)/man6
57 man7dir = $(mandir)/man7
58 man8dir = $(mandir)/man8
59 man9dir = $(mandir)/man9
60 infodir = $(prefix)/info
61 includedir = $(prefix)/include
62 # Directory in which the compiler finds executables, libraries, etc.
63 libsubdir
= $(libdir)/gcc-lib
/$(target_alias
)/$(gcc_version
)
68 # pwd command to use. Allow user to override default by setting PWDCMD in
69 # the environment to account for automounters. The make variable must not
70 # be called PWDCMD, otherwise the value set here is passed to make
71 # subprocesses and overrides the setting from the user's environment.
74 # INSTALL_PROGRAM_ARGS is changed by configure.in to use -x for a
76 INSTALL_PROGRAM_ARGS
=
78 INSTALL
= $(SHELL
) $$s/install-sh
-c
79 INSTALL_PROGRAM
= $(INSTALL
) $(INSTALL_PROGRAM_ARGS
)
80 INSTALL_SCRIPT
= $(INSTALL
)
81 INSTALL_DATA
= $(INSTALL
) -m
644
83 INSTALL_DOSREL
= install-dosrel-fake
90 # Special variables passed down in EXTRA_GCC_FLAGS. They are defined
91 # here so that they can be overridden by Makefile fragments.
92 HOST_CC
= $(CC_FOR_BUILD
)
94 BUILD_PREFIX_1
= loser-
96 # These flag values are normally overridden by the configure script.
101 LIBCFLAGS
= $(CFLAGS
)
102 CFLAGS_FOR_BUILD
= $(CFLAGS
)
103 # During gcc bootstrap, if we use some random cc for stage1 then
104 # CFLAGS will be just -g. We want to ensure that TARGET libraries
105 # (which we know are built with gcc) are built with optimizations so
106 # prepend -O2 when setting CFLAGS_FOR_TARGET.
107 CFLAGS_FOR_TARGET
= -O2
$(CFLAGS
)
109 LIBCFLAGS_FOR_TARGET
= $(CFLAGS_FOR_TARGET
)
115 # Use -O2 to stress test the compiler.
116 LIBCXXFLAGS
= $(CXXFLAGS
) -fno-implicit-templates
117 CXXFLAGS_FOR_TARGET
= $(CXXFLAGS
)
118 LIBCXXFLAGS_FOR_TARGET
= $(CXXFLAGS_FOR_TARGET
) -fno-implicit-templates
130 # These values are substituted by configure.
135 BISON
= `if [ -f $$r/bison/bison ] ; then \
136 echo $$r/bison/bison -L $$s/bison/ ; \
141 YACC
= `if [ -f $$r/bison/bison ] ; then \
142 echo $$r/bison/bison -y -L $$s/bison/ ; \
143 elif [ -f $$r/byacc/byacc ] ; then \
144 echo $$r/byacc/byacc ; \
146 echo ${DEFAULT_YACC} ; \
149 LEX
= `if [ -f $$r/flex/flex ] ; \
150 then echo $$r/flex/flex ; \
151 else echo ${DEFAULT_LEX} ; fi`
153 M4
= `if [ -f $$r/m4/m4 ] ; \
154 then echo $$r/m4/m4 ; \
155 else echo ${DEFAULT_M4} ; fi`
157 # For an installed makeinfo, we require it to be from texinfo 4 or
158 # higher, else we use the "missing" dummy.
159 MAKEINFO
= `if [ -f $$r/texinfo/makeinfo/makeinfo ] ; \
160 then echo $$r/texinfo/makeinfo/makeinfo ; \
161 else if (makeinfo --version \
162 | egrep 'texinfo[^0-9]*([1-3][0-9]|[4-9])') >/dev/null 2>&1; \
163 then echo makeinfo; else echo $$s/missing makeinfo; fi; fi`
165 # This just becomes part of the MAKEINFO definition passed down to
166 # sub-makes. It lets flags be given on the command line while still
167 # using the makeinfo from the object tree.
170 EXPECT
= `if [ -f $$r/expect/expect ] ; \
171 then echo $$r/expect/expect ; \
172 else echo expect ; fi`
174 RUNTEST
= `if [ -f $$s/dejagnu/runtest ] ; \
175 then echo $$s/dejagnu/runtest ; \
176 else echo runtest ; fi`
179 # compilers to use to create programs which must be run in the build
182 CXX_FOR_BUILD
= $(CXX
)
184 SUBDIRS
= "this is set via configure, don't edit this"
187 # This is set by the configure script to the list of directories which
188 # should be built using the target tools.
189 TARGET_CONFIGDIRS
= libiberty libgloss
$(SPECIAL_LIBS
) newlib winsup opcodes bsp libstub cygmon libf2c libobjc
191 # Target libraries are put under this directory:
192 # Changed by configure to $(target_alias) if cross.
195 BUILD_CONFIGDIRS
= libiberty
198 # This is set by the configure script to the arguments to use when configuring
199 # directories built for the target.
202 # This is set by the configure script to the arguments to use when configuring
203 # directories built for the build system.
206 # This is set by configure to REALLY_SET_LIB_PATH if --enable-shared
210 # This is the name of the environment variable used for the path to
211 # the libraries. This may be changed by configure.in.
212 RPATH_ENVVAR
= LD_LIBRARY_PATH
214 # This is the list of directories that may be needed in RPATH_ENVVAR
215 # so that programs built for the host machine work.
216 HOST_LIB_PATH
= $$r/bfd
:$$r/opcodes
218 # This is the list of directories that may be needed in RPATH_ENVVAR
219 # so that prorgams built for the target machine work.
220 TARGET_LIB_PATH
= $$r/$(TARGET_SUBDIR
)/libstdc
++-v3
/src
/.libs
:
222 # configure.in sets SET_LIB_PATH to this if --enable-shared was used.
223 # Some platforms don't like blank entries, so we remove duplicate,
224 # leading and trailing colons.
225 REALLY_SET_LIB_PATH
= \
226 $(RPATH_ENVVAR
)=`echo "$(HOST_LIB_PATH):$(TARGET_LIB_PATH):$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR
);
229 INSTALL_TARGET
= installdirs \
232 $(INSTALL_TARGET_MODULES
) \
233 $(INSTALL_X11_MODULES
) \
236 INSTALL_TARGET_CROSS
= installdirs \
239 $(INSTALL_TARGET_MODULES
) \
240 $(INSTALL_X11_MODULES
) \
243 # Should be substed by configure.in
247 CXX_FOR_TARGET_FOR_RECURSIVE_MAKE
=
250 # If GCC_FOR_TARGET is not overriden on the command line, then this
251 # variable is passed down to the gcc Makefile, where it is used to
252 # build libgcc2.a. We define it here so that it can itself be
253 # overridden on the command line.
254 GCC_FOR_TARGET
= $$r/gcc
/xgcc
-B
$$r/gcc
/ $(FLAGS_FOR_TARGET
)
257 if [ -f $$r/gas/as-new ] ; then \
258 echo $$r/gas/as-new ; \
259 elif [ -f $$r/gcc/xgcc ]; then \
260 $(CC_FOR_TARGET) -print-prog-name=as ; \
262 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
265 t='$(program_transform_name)'; echo as | sed -e 's/x/x/' $$t ; \
270 if [ -f $$r/ld/ld-new ] ; then \
271 echo $$r/ld/ld-new ; \
272 elif [ -f $$r/gcc/xgcc ]; then \
273 $(CC_FOR_TARGET) -print-prog-name=ld ; \
275 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
278 t='$(program_transform_name)'; echo ld | sed -e 's/x/x/' $$t ; \
282 DLLTOOL_FOR_TARGET
= ` \
283 if [ -f $$r/binutils/dlltool ] ; then \
284 echo $$r/binutils/dlltool ; \
286 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
289 t='$(program_transform_name)'; echo dlltool | sed -e 's/x/x/' $$t ; \
293 WINDRES_FOR_TARGET
= ` \
294 if [ -f $$r/binutils/windres ] ; then \
295 echo $$r/binutils/windres ; \
297 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
300 t='$(program_transform_name)'; echo windres | sed -e 's/x/x/' $$t ; \
305 if [ -f $$r/binutils/ar ] ; then \
306 echo $$r/binutils/ar ; \
308 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
311 t='$(program_transform_name)'; echo ar | sed -e 's/x/x/' $$t ; \
315 RANLIB_FOR_TARGET
= ` \
316 if [ -f $$r/binutils/ranlib ] ; then \
317 echo $$r/binutils/ranlib ; \
319 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
320 if [ x'$(RANLIB)' != x ]; then \
326 t='$(program_transform_name)'; echo ranlib | sed -e 's/x/x/' $$t ; \
331 if [ -f $$r/binutils/nm-new ] ; then \
332 echo $$r/binutils/nm-new ; \
333 elif [ -f $$r/gcc/xgcc ]; then \
334 $(CC_FOR_TARGET) -print-prog-name=nm ; \
336 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
339 t='$(program_transform_name)'; echo nm | sed -e 's/x/x/' $$t ; \
343 # The first rule in the file had better be this one. Don't put any above it.
344 # This lives here to allow makefile fragments to contain dependencies.
348 # These can be overridden by config/mt-*.
349 # The _TARGET_ is because they're specified in mt-foo.
350 # The _HOST_ is because they're programs that run on the host.
351 EXTRA_TARGET_HOST_ALL_MODULES
=
352 EXTRA_TARGET_HOST_INSTALL_MODULES
=
353 EXTRA_TARGET_HOST_CHECK_MODULES
=
355 #### host and target specific makefile fragments come in here.
358 # Flags to pass down to all sub-makes.
359 # Please keep these in alphabetical order.
360 BASE_FLAGS_TO_PASS
= \
361 "AR_FLAGS=$(AR_FLAGS)" \
362 "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
363 "AS_FOR_TARGET=$(AS_FOR_TARGET)" \
365 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
366 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
368 "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
369 "GCJ_FOR_TARGET=$(GCJ_FOR_TARGET)" \
370 "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
371 "CXXFLAGS=$(CXXFLAGS)" \
372 "CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \
373 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
374 "DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \
375 "INSTALL=$(INSTALL)" \
376 "INSTALL_DATA=$(INSTALL_DATA)" \
377 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
378 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
379 "LDFLAGS=$(LDFLAGS)" \
381 "LD_FOR_TARGET=$(LD_FOR_TARGET)" \
382 "LIBCFLAGS=$(LIBCFLAGS)" \
383 "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
384 "LIBCXXFLAGS=$(LIBCXXFLAGS)" \
385 "LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \
388 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
389 "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
390 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
391 "RPATH_ENVVAR=$(RPATH_ENVVAR)" \
394 "RUNTEST=$(RUNTEST)" \
395 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
396 "TARGET_SUBDIR=$(TARGET_SUBDIR)" \
397 "WINDRES_FOR_TARGET=$(WINDRES_FOR_TARGET)" \
400 "datadir=$(datadir)" \
401 "exec_prefix=$(exec_prefix)" \
402 "includedir=$(includedir)" \
403 "infodir=$(infodir)" \
405 "libexecdir=$(libexecdir)" \
406 "lispdir=$(lispdir)" \
407 "libstdcxx_incdir=$(libstdcxx_incdir)" \
408 "libsubdir=$(libsubdir)" \
409 "localstatedir=$(localstatedir)" \
411 "oldincludedir=$(oldincludedir)" \
413 "sbindir=$(sbindir)" \
414 "sharedstatedir=$(sharedstatedir)" \
415 "sysconfdir=$(sysconfdir)" \
416 "tooldir=$(tooldir)" \
417 "build_tooldir=$(build_tooldir)" \
418 "gxx_include_dir=$(gxx_include_dir)" \
419 "gcc_version=$(gcc_version)" \
420 "gcc_version_trigger=$(gcc_version_trigger)" \
421 "target_alias=$(target_alias)"
423 # For any flags above that may contain shell code that varies from one
424 # target library to another. When doing recursive invocations of the
425 # top-level Makefile, we don't want the outer make to evaluate them,
426 # so we pass these variables down unchanged. They must not contain
427 # single nor double quotes.
429 CXX_FOR_TARGET
='$(CXX_FOR_TARGET_FOR_RECURSIVE_MAKE)'
431 # Flags to pass down to most sub-makes, in which we're building with
432 # the host environment.
433 # If any variables are added here, they must be added to do-*, below.
439 'DLLTOOL=$(DLLTOOL)' \
442 "`echo 'RANLIB=$(RANLIB)' | sed -e s/.*=$$/XFOO=/`" \
445 FLAGS_TO_PASS
= $(BASE_FLAGS_TO_PASS
) $(EXTRA_HOST_FLAGS
)
447 # Flags that are concerned with the location of the X11 include files
450 # NOTE: until the top-level is getting the values via autoconf, it only
451 # causes problems to have this top-level Makefile overriding the autoconf-set
452 # values in child directories. Only variables that don't conflict with
453 # autoconf'ed ones should be passed by X11_FLAGS_TO_PASS for now.
455 X11_FLAGS_TO_PASS
= \
456 'X11_EXTRA_CFLAGS=$(X11_EXTRA_CFLAGS)' \
457 'X11_EXTRA_LIBS=$(X11_EXTRA_LIBS)'
459 # Flags to pass down to makes which are built with the target environment.
460 # The double $ decreases the length of the command line; the variables
461 # are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them.
462 # If any variables are added here, they must be added to do-*, below.
463 EXTRA_TARGET_FLAGS
= \
464 'AR=$$(AR_FOR_TARGET)' \
465 'AS=$$(AS_FOR_TARGET)' \
466 'CC=$$(CC_FOR_TARGET)' \
467 'CFLAGS=$$(CFLAGS_FOR_TARGET)' \
468 'CXX=$$(CXX_FOR_TARGET)' \
469 'CXXFLAGS=$$(CXXFLAGS_FOR_TARGET)' \
470 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
471 'LD=$$(LD_FOR_TARGET)' \
472 'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET)' \
473 'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET)' \
474 'NM=$$(NM_FOR_TARGET)' \
475 'RANLIB=$$(RANLIB_FOR_TARGET)' \
476 'WINDRES=$$(WINDRES_FOR_TARGET)'
478 TARGET_FLAGS_TO_PASS
= $(BASE_FLAGS_TO_PASS
) $(EXTRA_TARGET_FLAGS
)
480 # Flags to pass down to gcc. gcc builds a library, libgcc.a, so it
481 # unfortunately needs the native compiler and the target ar and
483 # If any variables are added here, they must be added to do-*, below.
484 # The HOST_* variables are a special case, which are used for the gcc
485 # cross-building scheme.
491 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
492 'HOST_CC=$(CC_FOR_BUILD)' \
493 'BUILD_PREFIX=$(BUILD_PREFIX)' \
494 'BUILD_PREFIX_1=$(BUILD_PREFIX_1)' \
496 "`echo 'RANLIB=$(RANLIB)' | sed -e s/.*=$$/XFOO=/`" \
497 'WINDRES=$$(WINDRES_FOR_TARGET)' \
498 "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
499 "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
500 "`echo 'LANGUAGES=$(LANGUAGES)' | sed -e s/.*=$$/XFOO=/`" \
501 "`echo 'STMP_FIXPROTO=$(STMP_FIXPROTO)' | sed -e s/.*=$$/XFOO=/`" \
502 "`echo 'LIMITS_H_TEST=$(LIMITS_H_TEST)' | sed -e s/.*=$$/XFOO=/`" \
503 "`echo 'LIBGCC1_TEST=$(LIBGCC1_TEST)' | sed -e s/.*=$$/XFOO=/`" \
504 "`echo 'LIBGCC2_CFLAGS=$(LIBGCC2_CFLAGS)' | sed -e s/.*=$$/XFOO=/`" \
505 "`echo 'LIBGCC2_DEBUG_CFLAGS=$(LIBGCC2_DEBUG_CFLAGS)' | sed -e s/.*=$$/XFOO=/`" \
506 "`echo 'LIBGCC2_INCLUDES=$(LIBGCC2_INCLUDES)' | sed -e s/.*=$$/XFOO=/`" \
507 "`echo 'ENQUIRE=$(ENQUIRE)' | sed -e s/.*=$$/XFOO=/`" \
508 "`echo 'STAGE1_CFLAGS=$(STAGE1_CFLAGS)' | sed -e s/.*=$$/XFOO=/`" \
509 "`echo 'BOOT_CFLAGS=$(BOOT_CFLAGS)' | sed -e s/.*=$$/XFOO=/`"
511 GCC_FLAGS_TO_PASS
= $(BASE_FLAGS_TO_PASS
) $(EXTRA_GCC_FLAGS
)
513 # This is a list of the targets for all of the modules which are compiled
514 # using the build machine's native compiler. Configure edits the second
515 # macro for build!=host builds.
516 ALL_BUILD_MODULES_LIST
= \
520 # This is a list of the configure targets for all of the modules which
521 # are compiled using the native tools.
522 CONFIGURE_BUILD_MODULES
= \
523 configure-build-libiberty
525 # This is a list of the targets for all of the modules which are compiled
526 # using $(FLAGS_TO_PASS).
594 $(EXTRA_TARGET_HOST_ALL_MODULES
)
596 # This is a list of the check targets for all of the modules which are
597 # compiled using $(FLAGS_TO_PASS).
599 # The list is in two parts. The first lists those tools which
600 # are tested as part of the host's native tool-chain, and not
601 # tested in a cross configuration.
602 NATIVE_CHECK_MODULES
= \
609 CROSS_CHECK_MODULES
= \
667 $(EXTRA_TARGET_HOST_CHECK_MODULES
)
669 CHECK_MODULES
=$(NATIVE_CHECK_MODULES
) $(CROSS_CHECK_MODULES
)
671 # This is a list of the install targets for all of the modules which are
672 # compiled using $(FLAGS_TO_PASS).
673 # We put install-opcodes before install-binutils because the installed
674 # binutils might be on PATH, and they might need the shared opcodes
676 # We put install-tcl before install-itcl because itcl wants to run a
677 # program on installation which uses the Tcl libraries.
742 $(EXTRA_TARGET_HOST_INSTALL_MODULES
)
744 # This is a list of the targets for all of the modules which are compiled
745 # using $(X11_FLAGS_TO_PASS).
756 # This is a list of the check targets for all of the modules which are
757 # compiled using $(X11_FLAGS_TO_PASS).
758 CHECK_X11_MODULES
= \
767 # This is a list of the install targets for all the modules which are
768 # compiled using $(X11_FLAGS_TO_PASS).
769 INSTALL_X11_MODULES
= \
779 # This is a list of the targets for all of the modules which are compiled
780 # using $(TARGET_FLAGS_TO_PASS).
781 ALL_TARGET_MODULES
= \
782 all-target-libstdc
++-v3 \
786 all-target-libtermcap \
788 all-target-libgloss \
789 all-target-libiberty \
791 all-target-examples \
796 all-target-boehm-gc \
797 all-target-qthreads \
801 # This is a list of the configure targets for all of the modules which
802 # are compiled using the target tools.
803 CONFIGURE_TARGET_MODULES
= \
804 configure-target-libstdc
++-v3 \
805 configure-target-newlib \
806 configure-target-libf2c \
807 configure-target-libobjc \
808 configure-target-libtermcap \
809 configure-target-winsup \
810 configure-target-libgloss \
811 configure-target-libiberty \
812 configure-target-gperf \
813 configure-target-examples \
814 configure-target-libstub \
815 configure-target-libffi \
816 configure-target-libjava \
817 configure-target-zlib \
818 configure-target-boehm-gc \
819 configure-target-qthreads \
820 configure-target-bsp \
821 configure-target-cygmon
823 # This is a list of the check targets for all of the modules which are
824 # compiled using $(TARGET_FLAGS_TO_PASS).
825 CHECK_TARGET_MODULES
= \
826 check-target-libstdc
++-v3 \
827 check-target-newlib \
828 check-target-libf2c \
829 check-target-libobjc \
830 check-target-winsup \
831 check-target-libiberty \
832 check-target-libffi \
833 check-target-libjava \
835 check-target-boehm-gc \
836 check-target-qthreads \
839 # This is a list of the install targets for all of the modules which are
840 # compiled using $(TARGET_FLAGS_TO_PASS).
841 INSTALL_TARGET_MODULES
= \
842 install-target-libstdc
++-v3 \
843 install-target-newlib \
844 install-target-libf2c \
845 install-target-libobjc \
846 install-target-libtermcap \
847 install-target-winsup \
848 install-target-libgloss \
849 install-target-libiberty \
851 install-target-libjava \
852 install-target-zlib \
853 install-target-boehm-gc \
854 install-target-qthreads \
857 # This is a list of the targets for which we can do a clean-{target}.
926 # All of the target modules that can be cleaned
927 CLEAN_TARGET_MODULES
= \
928 clean-target-libstdc
++-v3 \
929 clean-target-newlib \
930 clean-target-libf2c \
931 clean-target-libobjc \
932 clean-target-winsup \
933 clean-target-libgloss \
934 clean-target-libiberty \
936 clean-target-examples \
937 clean-target-libstub \
938 clean-target-libffi \
939 clean-target-libjava \
941 clean-target-boehm-gc \
942 clean-target-qthreads \
946 # All of the x11 modules that can be cleaned
947 CLEAN_X11_MODULES
= \
957 # The target built for a native build.
960 $(ALL_BUILD_MODULES
) \
963 $(ALL_TARGET_MODULES
) \
966 # Do a target for all the subdirectories. A ``make do-X'' will do a
967 # ``make X'' in all subdirectories (because, in general, there is a
968 # dependency (below) of X upon do-X, a ``make X'' will also do this,
969 # but it may do additional work as well).
970 # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
971 # because it is so large that it can easily overflow the command line
972 # length limit on some systems.
981 do-maintainer-clean \
985 @target
=`echo $@ | sed -e 's/^do-//'`; \
986 r
=`${PWD}`; export r
; \
987 s
=`cd $(srcdir); ${PWD}`; export s
; \
989 for i in
$(SUBDIRS
) -dummy-
; do \
990 if
[ -f .
/$$i/Makefile
]; then \
993 for flag in
$(EXTRA_GCC_FLAGS
); do \
994 eval
`echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
998 for flag in
$(EXTRA_HOST_FLAGS
); do \
999 eval
`echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
1004 $(MAKE
) $(BASE_FLAGS_TO_PASS
) "AR=$${AR}" "AS=$${AS}" \
1005 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
1006 "`echo \"RANLIB=$${RANLIB}\" | sed -e 's/.*=$$/XFOO=/'`" \
1007 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
1009 then true
; else exit
1; fi
; \
1012 @target
=`echo $@ | sed -e 's/^do-//'`; \
1013 r
=`${PWD}`; export r
; \
1014 s
=`cd $(srcdir); ${PWD}`; export s
; \
1016 for i in
$(TARGET_CONFIGDIRS
) -dummy-
; do \
1017 if
[ -f
$(TARGET_SUBDIR
)/$$i/Makefile
]; then \
1018 for flag in
$(EXTRA_TARGET_FLAGS
); do \
1019 eval
`echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
1021 if
(cd
$(TARGET_SUBDIR
)/$$i; \
1022 $(MAKE
) $(BASE_FLAGS_TO_PASS
) "AR=$${AR}" "AS=$${AS}" \
1023 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
1024 "`echo \"RANLIB=$${RANLIB}\" | sed -e 's/.*=$$/XFOO=/'`" \
1025 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
1027 then true
; else exit
1; fi
; \
1031 # Here are the targets which correspond to the do-X targets.
1033 .PHONY
: info installcheck dvi install-info
1034 .PHONY
: clean distclean mostlyclean maintainer-clean
realclean
1035 .PHONY
: local-clean local-distclean local-maintainer-clean
1037 installcheck: do-installcheck
1040 # Make sure makeinfo is built before we do a `make info'.
1041 do-info
: all-texinfo
1043 install-info
: do-install-info
dir.
info
1044 s
=`cd $(srcdir); ${PWD}`; export s
; \
1045 if
[ -f
dir.
info ] ; then \
1046 $(INSTALL_DATA
) dir.
info $(infodir)/dir.
info ; \
1050 -rm -f
*.a TEMP errs core
*.o
*~ \
#* TAGS *.E *.log
1053 -rm -f Makefile config.status config.cache mh-frag mt-frag
1054 -if
[ "$(TARGET_SUBDIR)" != "." ]; then \
1055 rm -rf
$(TARGET_SUBDIR
); \
1057 -rm -f texinfo
/po
/Makefile texinfo
/po
/Makefile.in texinfo
/info/Makefile
1058 -rm -f texinfo
/doc
/Makefile texinfo
/po
/POTFILES
1059 -rmdir texinfo
/doc texinfo
/info texinfo
/intl texinfo
/lib
2>/dev
/null
1060 -rmdir texinfo
/makeinfo texinfo
/po texinfo
/util
2>/dev
/null
1061 -rmdir fastjar gcc libiberty texinfo zlib
2>/dev
/null
1063 local-maintainer-clean
:
1064 @echo
"This command is intended for maintainers to use;"
1065 @echo
"it deletes files that may require special tools to rebuild."
1067 clean: do-clean local-clean
1068 mostlyclean: do-mostlyclean local-clean
1069 distclean: do-distclean local-clean local-distclean
1070 maintainer-clean
: local-maintainer-clean do-maintainer-clean local-clean
1071 maintainer-clean
: local-distclean
1072 realclean: maintainer-clean
1074 # This rule is used to clean specific modules.
1075 .PHONY
: $(CLEAN_MODULES
) $(CLEAN_X11_MODULES
) clean-gcc
1076 $(CLEAN_MODULES
) $(CLEAN_X11_MODULES
) clean-gcc
:
1077 @
dir=`echo $@ | sed -e 's/clean-//'`; \
1078 if
[ -f .
/$${dir}/Makefile
] ; then \
1079 r
=`${PWD}`; export r
; \
1080 s
=`cd $(srcdir); ${PWD}`; export s
; \
1082 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) clean); \
1087 .PHONY
: $(CLEAN_TARGET_MODULES
)
1088 $(CLEAN_TARGET_MODULES
):
1089 @
dir=`echo $@ | sed -e 's/clean-target-//'`; \
1090 rm -f
$(TARGET_SUBDIR
)/$${dir}/multilib.out
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
; \
1091 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1092 r
=`${PWD}`; export r
; \
1093 s
=`cd $(srcdir); ${PWD}`; export s
; \
1095 (cd
$(TARGET_SUBDIR
)/$${dir}; $(MAKE
) $(TARGET_FLAGS_TO_PASS
) clean); \
1100 clean-target
: $(CLEAN_TARGET_MODULES
) clean-target-libgcc
1101 clean-target-libgcc
:
1102 test ! -d gcc
/libgcc || \
1103 (cd gcc
/libgcc
&& find .
-type d
-print) | \
1104 while read d
; do
rm -f gcc
/$$d/libgcc.a ||
: ; done
1109 .PHONY
: check do-check
1111 $(MAKE
) do-check NOTPARALLEL
=parallel-ok
1113 do-check
: $(CHECK_MODULES
) \
1114 $(CHECK_TARGET_MODULES
) \
1115 $(CHECK_X11_MODULES
) \
1118 # Automated reporting of test results.
1120 warning.log
: build.log
1121 $(srcdir)/contrib
/warn_summary build.log
> $@
1124 if
test x
'$(BOOT_CFLAGS)' != x
''; then \
1125 BOOT_CFLAGS
='$(BOOT_CFLAGS)'; export BOOT_CFLAGS
; \
1127 $(srcdir)/contrib
/test_summary
-t
>$@
1129 echo If you really want to send e-mail
, run .
/$@ now
1131 mail-report-with-warnings.log
: warning.log
1132 if
test x
'$(BOOT_CFLAGS)' != x
''; then \
1133 BOOT_CFLAGS
='$(BOOT_CFLAGS)'; export BOOT_CFLAGS
; \
1135 $(srcdir)/contrib
/test_summary
-t
-i warning.log
>$@
1137 echo If you really want to send e-mail
, run .
/$@ now
1139 # Installation targets.
1141 .PHONY
: install install-cross
uninstall source-vault binary-vault vault-install
1142 install: $(INSTALL_TARGET
)
1143 install-cross
: $(INSTALL_TARGET_CROSS
)
1146 @echo
"the uninstall target is not supported in this tree"
1149 $(MAKE
) -f .
/release
/Build-A-Release \
1150 host
=$(host_alias
) source-vault
1153 $(MAKE
) -f .
/release
/Build-A-Release \
1154 host
=$(host_alias
) target
=$(target_alias
)
1157 @if
[ -f .
/release
/vault-install
] ; then \
1158 .
/release
/vault-install
$(host_alias
) $(target_alias
) ; \
1164 install.
all: install-no-fixedincludes
1165 @if
[ -f .
/gcc
/Makefile
] ; then \
1166 r
=`${PWD}` ; export r
; \
1169 $(MAKE
) $(FLAGS_TO_PASS
) install-headers
) ; \
1174 # inet-install is used because the I*Net wants DejaGNU installed but
1175 # not built. Similarly, gzip is built but not installed.
1177 $(MAKE
) INSTALL_MODULES
="`echo $(INSTALL_MODULES) | sed -e 's/install-dejagnu//' -e 's/install-gzip//'`" install
1179 # install-no-fixedincludes is used because Cygnus can not distribute
1180 # the fixed header files.
1181 .PHONY
: install-no-fixedincludes
1182 install-no-fixedincludes
: \
1184 $(INSTALL_MODULES
) \
1185 $(INSTALL_TARGET_MODULES
) \
1186 $(INSTALL_X11_MODULES
) \
1187 gcc-no-fixedincludes
1189 # Install the gcc headers files, but not the fixed include files,
1190 # which Cygnus is not allowed to distribute. This rule is very
1191 # dependent on the workings of the gcc Makefile.in.
1192 .PHONY
: gcc-no-fixedincludes
1193 gcc-no-fixedincludes
:
1194 @if
[ -f .
/gcc
/Makefile
]; then \
1195 rm -rf gcc
/tmp-include
; \
1196 mv gcc
/include gcc
/tmp-include
2>/dev
/null
; \
1197 mkdir gcc
/include; \
1198 cp
$(srcdir)/gcc
/gsyslimits.h gcc
/include/syslimits.h
; \
1199 touch gcc
/stmp-fixinc gcc
/include/fixed
; \
1200 rm -f gcc
/stmp-headers gcc
/stmp-int-hdrs
; \
1201 r
=`${PWD}`; export r
; \
1202 s
=`cd $(srcdir); ${PWD}` ; export s
; \
1205 $(MAKE
) $(GCC_FLAGS_TO_PASS
) install); \
1206 rm -rf gcc
/include; \
1207 mv gcc
/tmp-include gcc
/include 2>/dev
/null
; \
1210 # This rule is used to build the modules which are built with the
1211 # build machine's native compiler.
1212 .PHONY
: $(ALL_BUILD_MODULES
)
1213 $(ALL_BUILD_MODULES
):
1214 dir=`echo $@ | sed -e 's/all-build-//'`; \
1215 if
[ -f .
/$${dir}/Makefile
] ; then \
1216 r
=`${PWD}`; export r
; \
1217 s
=`cd $(srcdir); ${PWD}`; export s
; \
1218 (cd
$(BUILD_SUBDIR
)/$${dir} && $(MAKE
) all); \
1223 # This rule is used to configure the modules which are built with the
1225 .PHONY
: $(CONFIGURE_BUILD_MODULES
)
1226 $(CONFIGURE_BUILD_MODULES
):
1227 @
dir=`echo $@ | sed -e 's/configure-build-//'`; \
1228 if
[ ! -d
$(BUILD_SUBDIR
) ]; then \
1230 elif
[ -f
$(BUILD_SUBDIR
)/$${dir}/Makefile
] ; then \
1232 elif echo
" $(BUILD_CONFIGDIRS) " | grep
" $${dir} " >/dev
/null
2>&1; then \
1233 if
[ -d
$(srcdir)/$${dir} ]; then \
1234 [ -d
$(BUILD_SUBDIR
)/$${dir} ] || mkdir
$(BUILD_SUBDIR
)/$${dir};\
1235 r
=`${PWD}`; export r
; \
1236 s
=`cd $(srcdir); ${PWD}`; export s
; \
1237 AR
="$(AR_FOR_BUILD)"; export AR
; \
1238 AS
="$(AS_FOR_BUILD)"; export AS
; \
1239 CC
="$(CC_FOR_BUILD)"; export CC
; \
1240 CFLAGS
="$(CFLAGS_FOR_BUILD)"; export CFLAGS
; \
1241 CXX
="$(CXX_FOR_BUILD)"; export CXX
; \
1242 CXXFLAGS
="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS
; \
1243 GCJ
="$(GCJ_FOR_BUILD)"; export GCJ
; \
1244 DLLTOOL
="$(DLLTOOL_FOR_BUILD)"; export DLLTOOL
; \
1245 LD
="$(LD_FOR_BUILD)"; export LD
; \
1246 LDFLAGS
="$(LDFLAGS_FOR_BUILD)"; export LDFLAGS
; \
1247 NM
="$(NM_FOR_BUILD)"; export NM
; \
1248 RANLIB
="$(RANLIB_FOR_BUILD)"; export RANLIB
; \
1249 WINDRES
="$(WINDRES_FOR_BUILD)"; export WINDRES
; \
1250 echo Configuring in
$(BUILD_SUBDIR
)/$${dir}; \
1251 cd
"$(BUILD_SUBDIR)/$${dir}" || exit
1; \
1253 /* |
[A-Za-z
]:[\\/]*) \
1254 topdir
=$(srcdir) ;; \
1256 case
"$(BUILD_SUBDIR)" in \
1257 .
) topdir
="../$(srcdir)" ;; \
1258 *) topdir
="../../$(srcdir)" ;; \
1261 if
[ "$(srcdir)" = "." ] ; then \
1262 if
[ "$(BUILD_SUBDIR)" != "." ] ; then \
1263 if
$(SHELL
) $$s/symlink-tree
$${topdir}/$${dir} "no-such-file" ; then \
1264 if
[ -f Makefile
]; then \
1265 if
$(MAKE
) distclean; then \
1279 srcdiroption
="--srcdir=."; \
1282 srcdiroption
="--srcdir=$${topdir}/$${dir}"; \
1283 libsrcdir
="$$s/$${dir}"; \
1285 if
[ -f
$${libsrcdir}/configure
] ; then \
1286 rm -f no-such-file skip-this-dir
; \
1287 CONFIG_SITE
=no-such-file
$(SHELL
) $${libsrcdir}/configure \
1288 $(BUILD_CONFIGARGS
) $${srcdiroption} \
1289 --with-build-subdir
="$(BUILD_SUBDIR)"; \
1291 rm -f no-such-file skip-this-dir
; \
1292 CONFIG_SITE
=no-such-file
$(SHELL
) $$s/configure \
1293 $(BUILD_CONFIGARGS
) $${srcdiroption} \
1294 --with-build-subdir
="$(BUILD_SUBDIR)"; \
1296 if
[ -f skip-this-dir
] ; then \
1298 rm -f skip-this-dir
; \
1299 cd ..
; rmdir
$${dir} || true
; \
1310 # This rule is used to build the modules which use FLAGS_TO_PASS. To
1311 # build a target all-X means to cd to X and make all.
1313 # all-gui, and all-libproc are handled specially because
1314 # they are still experimental, and if they fail to build, that
1315 # shouldn't stop "make all".
1316 .PHONY
: $(ALL_MODULES
) all-gui all-libproc
1317 $(ALL_MODULES
) all-gui all-libproc
:
1318 @
dir=`echo $@ | sed -e 's/all-//'`; \
1319 if
[ -f .
/$${dir}/Makefile
] ; then \
1320 r
=`${PWD}`; export r
; \
1321 s
=`cd $(srcdir); ${PWD}`; export s
; \
1323 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) all); \
1328 # These rules are used to check the modules which use FLAGS_TO_PASS.
1329 # To build a target check-X means to cd to X and make check. Some
1330 # modules are only tested in a native toolchain.
1332 .PHONY
: $(CHECK_MODULES
) $(NATIVE_CHECK_MODULES
) $(CROSS_CHECK_MODULES
)
1333 $(NATIVE_CHECK_MODULES
):
1334 @if
[ '$(host_canonical)' = '$(target_canonical)' ] ; then \
1335 dir=`echo $@ | sed -e 's/check-//'`; \
1336 if
[ -f .
/$${dir}/Makefile
] ; then \
1337 r
=`${PWD}`; export r
; \
1338 s
=`cd $(srcdir); ${PWD}`; export s
; \
1340 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) check); \
1346 $(CROSS_CHECK_MODULES
):
1347 @
dir=`echo $@ | sed -e 's/check-//'`; \
1348 if
[ -f .
/$${dir}/Makefile
] ; then \
1349 r
=`${PWD}`; export r
; \
1350 s
=`cd $(srcdir); ${PWD}`; export s
; \
1352 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) check); \
1357 # This rule is used to install the modules which use FLAGS_TO_PASS.
1358 # To build a target install-X means to cd to X and make install.
1359 .PHONY
: $(INSTALL_MODULES
)
1360 $(INSTALL_MODULES
): installdirs
1361 @
dir=`echo $@ | sed -e 's/install-//'`; \
1362 if
[ -f .
/$${dir}/Makefile
] ; then \
1363 r
=`${PWD}`; export r
; \
1364 s
=`cd $(srcdir); ${PWD}`; export s
; \
1366 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) install); \
1371 # This rule is used to configure the modules which are built with the
1373 .PHONY
: $(CONFIGURE_TARGET_MODULES
)
1374 $(CONFIGURE_TARGET_MODULES
):
1375 @
dir=`echo $@ | sed -e 's/configure-target-//'`; \
1376 if
[ -d
$(TARGET_SUBDIR
)/$${dir} ]; then \
1377 r
=`${PWD}`; export r
; \
1378 $(CC_FOR_TARGET
) --print-multi-lib
> $(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
2> /dev
/null
; \
1379 if
[ -s
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
]; then \
1380 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/multilib.out
]; then \
1381 if cmp
$(TARGET_SUBDIR
)/$${dir}/multilib.out
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
> /dev
/null
; then \
1382 rm -f
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
; \
1384 echo
"Multilibs changed for $${dir}, reconfiguring"; \
1385 rm -f
$(TARGET_SUBDIR
)/$${dir}/multilib.out
$(TARGET_SUBDIR
)/$${dir}/Makefile
; \
1386 mv
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
$(TARGET_SUBDIR
)/$${dir}/multilib.out
; \
1389 mv
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
$(TARGET_SUBDIR
)/$${dir}/multilib.out
; \
1392 fi
; exit
0 # break command into two pieces
1393 @
dir=`echo $@ | sed -e 's/configure-target-//'`; \
1394 if
[ ! -d
$(TARGET_SUBDIR
) ]; then \
1396 elif
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1398 elif echo
" $(TARGET_CONFIGDIRS) " | grep
" $${dir} " >/dev
/null
2>&1; then \
1399 if
[ -d
$(srcdir)/$${dir} ]; then \
1400 [ -d
$(TARGET_SUBDIR
)/$${dir} ] || mkdir
$(TARGET_SUBDIR
)/$${dir};\
1401 r
=`${PWD}`; export r
; \
1402 s
=`cd $(srcdir); ${PWD}`; export s
; \
1404 AR
="$(AR_FOR_TARGET)"; export AR
; \
1405 AS
="$(AS_FOR_TARGET)"; export AS
; \
1406 CC
="$(CC_FOR_TARGET)"; export CC
; \
1407 CFLAGS
="$(CFLAGS_FOR_TARGET)"; export CFLAGS
; \
1408 CXX
="$(CXX_FOR_TARGET)"; export CXX
; \
1409 CXXFLAGS
="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS
; \
1410 GCJ
="$(GCJ_FOR_TARGET)"; export GCJ
; \
1411 DLLTOOL
="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL
; \
1412 LD
="$(LD_FOR_TARGET)"; export LD
; \
1413 LDFLAGS
="$(LDFLAGS_FOR_TARGET)"; export LDFLAGS
; \
1414 NM
="$(NM_FOR_TARGET)"; export NM
; \
1415 RANLIB
="$(RANLIB_FOR_TARGET)"; export RANLIB
; \
1416 WINDRES
="$(WINDRES_FOR_TARGET)"; export WINDRES
; \
1417 echo Configuring in
$(TARGET_SUBDIR
)/$${dir}; \
1418 cd
"$(TARGET_SUBDIR)/$${dir}" || exit
1; \
1420 /* |
[A-Za-z
]:[\\/]*) \
1421 topdir
=$(srcdir) ;; \
1423 case
"$(TARGET_SUBDIR)" in \
1424 .
) topdir
="../$(srcdir)" ;; \
1425 *) topdir
="../../$(srcdir)" ;; \
1428 if
[ "$(srcdir)" = "." ] ; then \
1429 if
[ "$(TARGET_SUBDIR)" != "." ] ; then \
1430 if
$(SHELL
) $$s/symlink-tree
$${topdir}/$${dir} "no-such-file" ; then \
1431 if
[ -f Makefile
]; then \
1432 if
$(MAKE
) distclean; then \
1446 srcdiroption
="--srcdir=."; \
1449 srcdiroption
="--srcdir=$${topdir}/$${dir}"; \
1450 libsrcdir
="$$s/$${dir}"; \
1452 if
[ -f
$${libsrcdir}/configure
] ; then \
1453 rm -f no-such-file skip-this-dir
; \
1454 CONFIG_SITE
=no-such-file
$(SHELL
) $${libsrcdir}/configure \
1455 $(TARGET_CONFIGARGS
) $${srcdiroption} \
1456 --with-target-subdir
="$(TARGET_SUBDIR)"; \
1458 rm -f no-such-file skip-this-dir
; \
1459 CONFIG_SITE
=no-such-file
$(SHELL
) $$s/configure \
1460 $(TARGET_CONFIGARGS
) $${srcdiroption} \
1461 --with-target-subdir
="$(TARGET_SUBDIR)"; \
1463 if
[ -f skip-this-dir
] ; then \
1465 rm -f skip-this-dir
; \
1466 cd ..
; rmdir
$${dir} || true
; \
1477 # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
1478 # To build a target all-X means to cd to X and make all.
1479 .PHONY
: $(ALL_TARGET_MODULES
)
1480 $(ALL_TARGET_MODULES
):
1481 @
dir=`echo $@ | sed -e 's/all-target-//'`; \
1482 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1483 r
=`${PWD}`; export r
; \
1484 s
=`cd $(srcdir); ${PWD}`; export s
; \
1486 (cd
$(TARGET_SUBDIR
)/$${dir}; \
1487 $(MAKE
) $(TARGET_FLAGS_TO_PASS
) all); \
1492 # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
1493 # To build a target install-X means to cd to X and make install.
1494 .PHONY
: $(CHECK_TARGET_MODULES
)
1495 $(CHECK_TARGET_MODULES
):
1496 @
dir=`echo $@ | sed -e 's/check-target-//'`; \
1497 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1498 r
=`${PWD}`; export r
; \
1499 s
=`cd $(srcdir); ${PWD}`; export s
; \
1501 (cd
$(TARGET_SUBDIR
)/$${dir}; \
1502 $(MAKE
) $(TARGET_FLAGS_TO_PASS
) check);\
1507 # This rule is used to install the modules which use
1508 # TARGET_FLAGS_TO_PASS. To build a target install-X means to cd to X
1510 .PHONY
: $(INSTALL_TARGET_MODULES
)
1511 $(INSTALL_TARGET_MODULES
): installdirs
1512 @
dir=`echo $@ | sed -e 's/install-target-//'`; \
1513 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1514 r
=`${PWD}`; export r
; \
1515 s
=`cd $(srcdir); ${PWD}`; export s
; \
1517 (cd
$(TARGET_SUBDIR
)/$${dir}; \
1518 $(MAKE
) $(TARGET_FLAGS_TO_PASS
) install); \
1523 # This rule is used to build the modules which use X11_FLAGS_TO_PASS.
1524 # To build a target all-X means to cd to X and make all.
1525 .PHONY
: $(ALL_X11_MODULES
)
1527 @
dir=`echo $@ | sed -e 's/all-//'`; \
1528 if
[ -f .
/$${dir}/Makefile
] ; then \
1529 r
=`${PWD}`; export r
; \
1530 s
=`cd $(srcdir); ${PWD}`; export s
; \
1533 $(MAKE
) $(FLAGS_TO_PASS
) $(X11_FLAGS_TO_PASS
) all); \
1538 # This rule is used to check the modules which use X11_FLAGS_TO_PASS.
1539 # To build a target check-X means to cd to X and make all.
1540 .PHONY
: $(CHECK_X11_MODULES
)
1541 $(CHECK_X11_MODULES
):
1542 @
dir=`echo $@ | sed -e 's/check-//'`; \
1543 if
[ -f .
/$${dir}/Makefile
] ; then \
1544 r
=`${PWD}`; export r
; \
1545 s
=`cd $(srcdir); ${PWD}`; export s
; \
1548 $(MAKE
) $(FLAGS_TO_PASS
) $(X11_FLAGS_TO_PASS
) check); \
1553 # This rule is used to install the modules which use X11_FLAGS_TO_PASS.
1554 # To build a target install-X means to cd to X and make install.
1555 .PHONY
: $(INSTALL_X11_MODULES
)
1556 $(INSTALL_X11_MODULES
): installdirs
1557 @
dir=`echo $@ | sed -e 's/install-//'`; \
1558 if
[ -f .
/$${dir}/Makefile
] ; then \
1559 r
=`${PWD}`; export r
; \
1560 s
=`cd $(srcdir); ${PWD}`; export s
; \
1563 $(MAKE
) $(FLAGS_TO_PASS
) $(X11_FLAGS_TO_PASS
) install); \
1568 # gcc is the only module which uses GCC_FLAGS_TO_PASS.
1571 @if
[ -f .
/gcc
/Makefile
] ; then \
1572 r
=`${PWD}`; export r
; \
1573 s
=`cd $(srcdir); ${PWD}`; export s
; \
1575 (cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) all); \
1580 # Building GCC uses some tools for rebuilding "source" files
1581 # like texinfo, bison/byacc, etc. So we must depend on those.
1583 # While building GCC, it may be necessary to run various target
1584 # programs like the assembler, linker, etc. So we depend on
1587 # In theory, on an SMP all those dependencies can be resolved
1590 .PHONY
: bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean
1591 bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean
: all-bootstrap
1592 @r
=`${PWD}`; export r
; \
1593 s
=`cd $(srcdir); ${PWD}`; export s
; \
1595 echo
"Bootstrapping the compiler"; \
1596 cd gcc
&& $(MAKE
) $(GCC_FLAGS_TO_PASS
) $@
1597 @r
=`${PWD}`; export r
; \
1598 s
=`cd $(srcdir); ${PWD}`; export s
; \
1600 *bootstrap4-lean
) \
1601 msg
="Comparing stage3 and stage4 of the compiler"; \
1602 compare
=compare3-lean
;; \
1603 *bootstrap4
) msg
="Comparing stage3 and stage4 of the compiler"; \
1604 compare
=compare3
;; \
1605 *-lean
) msg
="Comparing stage2 and stage3 of the compiler"; \
1606 compare
=compare-lean
;; \
1607 * ) msg
="Comparing stage2 and stage3 of the compiler"; \
1608 compare
=compare
;; \
1612 cd gcc
&& $(MAKE
) $(GCC_FLAGS_TO_PASS
) $$compare
1613 @r
=`${PWD}`; export r
; \
1614 s
=`cd $(srcdir); ${PWD}` ; export s
; \
1616 echo
"Building runtime libraries"; \
1617 $(MAKE
) $(BASE_FLAGS_TO_PASS
) $(RECURSE_FLAGS
) all
1620 cross
: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
1621 @r
=`${PWD}`; export r
; \
1622 s
=`cd $(srcdir); ${PWD}`; export s
; \
1624 echo
"Building the C and C++ compiler"; \
1625 cd gcc
&& $(MAKE
) $(GCC_FLAGS_TO_PASS
) LANGUAGES
="c c++"
1626 @r
=`${PWD}`; export r
; \
1627 s
=`cd $(srcdir); ${PWD}` ; export s
; \
1629 echo
"Building runtime libraries"; \
1630 $(MAKE
) $(BASE_FLAGS_TO_PASS
) $(RECURSE_FLAGS
) \
1631 LANGUAGES
="c c++" all
1635 @if
[ -f .
/gcc
/Makefile
] ; then \
1636 r
=`${PWD}`; export r
; \
1637 s
=`cd $(srcdir); ${PWD}`; export s
; \
1639 (cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) check); \
1646 @if
[ -f .
/gcc
/Makefile
] ; then \
1647 r
=`${PWD}`; export r
; \
1648 s
=`cd $(srcdir); ${PWD}`; export s
; \
1650 (cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) check-c
++); \
1651 $(MAKE
) check-target-libstdc
++-v3
; \
1658 @if
[ -f .
/gcc
/Makefile
] ; then \
1659 r
=`${PWD}`; export r
; \
1660 s
=`cd $(srcdir); ${PWD}`; export s
; \
1662 (cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) install); \
1667 .PHONY
: install-gcc-cross
1669 @if
[ -f .
/gcc
/Makefile
] ; then \
1670 r
=`${PWD}`; export r
; \
1671 s
=`cd $(srcdir); ${PWD}`; export s
; \
1673 (cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) LANGUAGES
="c c++" install); \
1677 # EXPERIMENTAL STUFF
1678 # This rule is used to install the modules which use FLAGS_TO_PASS.
1679 # To build a target install-X means to cd to X and make install.
1680 .PHONY
: install-dosrel
1681 install-dosrel
: installdirs info
1682 @
dir=`echo $@ | sed -e 's/install-//'`; \
1683 if
[ -f .
/$${dir}/Makefile
] ; then \
1684 r
=`${PWD}`; export r
; \
1685 s
=`cd $(srcdir); ${PWD}`; export s
; \
1687 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) install); \
1692 install-dosrel-fake
:
1695 ALL_GCC_C
= $(ALL_GCC
) all-target-newlib all-target-libgloss
1696 ALL_GCC_CXX
= $(ALL_GCC_C
) all-target-libstdc
++-v3
1698 # This is a list of inter-dependencies among modules.
1701 all-autoconf
: all-m4 all-texinfo
1702 all-automake
: all-m4 all-texinfo
1704 all-bfd
: all-libiberty all-intl
1705 all-binutils
: all-libiberty all-opcodes all-bfd all-flex all-bison all-byacc all-intl
1706 all-bison
: all-texinfo
1707 configure-target-boehm-gc
: $(ALL_GCC_C
) configure-target-qthreads
1708 all-target-boehm-gc
: configure-target-boehm-gc
1709 configure-target-bsp
: $(ALL_GCC_C
)
1710 all-target-bsp
: configure-target-bsp
1714 configure-target-cygmon
: $(ALL_GCC_C
)
1715 all-target-cygmon
: configure-target-cygmon all-target-libiberty all-target-libstub all-target-bsp
1717 all-dejagnu
: all-tcl all-expect all-tk
1718 all-diff
: all-libiberty
1720 all-emacs19
: all-bison all-byacc
1722 configure-target-examples
: $(ALL_GCC_C
)
1723 all-target-examples
: configure-target-examples
1724 all-expect
: all-tcl all-tk
1725 all-fileutils
: all-libiberty
1728 all-flex
: all-libiberty all-bison all-byacc
1729 all-gas
: all-libiberty all-opcodes all-bfd all-intl
1731 all-gcc
: all-bison all-byacc all-binutils all-gas all-ld all-zlib
1732 all-bootstrap
: all-libiberty all-texinfo all-bison all-byacc all-binutils all-gas all-ld all-zlib
1733 GDB_TK
= all-tk all-tcl all-itcl all-tix all-libgui
1734 all-gdb
: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-bison all-byacc all-sim
$(gdbnlmrequirements
) $(GDB_TK
)
1737 configure-target-gperf
: $(ALL_GCC_CXX
)
1738 all-target-gperf
: configure-target-gperf all-target-libiberty all-target-libstdc
++-v3
1739 all-gprof
: all-libiberty all-bfd all-opcodes all-intl
1740 all-grep
: all-libiberty
1741 all-grez
: all-libiberty all-bfd all-opcodes
1742 all-gui
: all-gdb all-libproc
1744 all-gzip
: all-libiberty
1745 all-hello
: all-libiberty
1747 all-inet
: all-tcl all-send-pr all-perl
1749 all-ispell
: all-emacs19
1750 all-itcl
: all-tcl all-tk
1751 all-ld
: all-libiberty all-bfd all-opcodes all-bison all-byacc all-flex all-intl
1752 configure-target-libgloss
: $(ALL_GCC
)
1753 all-target-libgloss
: configure-target-libgloss configure-target-newlib
1754 all-libgui
: all-tcl all-tk all-itcl
1757 all-build-libiberty
: configure-build-libiberty
1759 configure-target-libffi
: $(ALL_GCC_C
)
1760 all-target-libffi
: configure-target-libffi
1761 configure-target-libjava
: $(ALL_GCC_C
) configure-target-zlib configure-target-boehm-gc configure-target-qthreads configure-target-libffi
1762 all-target-libjava
: configure-target-libjava all-fastjar all-target-zlib all-target-boehm-gc all-target-qthreads all-target-libffi
1763 configure-target-libstdc
++-v3
: $(ALL_GCC_C
)
1764 all-target-libstdc
++-v3
: configure-target-libstdc
++-v3 all-target-libiberty
1765 configure-target-libstub
: $(ALL_GCC_C
)
1766 all-target-libstub
: configure-target-libstub
1768 configure-target-libf2c
: $(ALL_GCC_C
)
1769 all-target-libf2c
: configure-target-libf2c all-target-libiberty
1770 configure-target-libobjc
: $(ALL_GCC_C
)
1771 all-target-libobjc
: configure-target-libobjc all-target-libiberty
1772 all-m4
: all-libiberty all-texinfo
1773 all-make
: all-libiberty
1775 configure-target-newlib
: $(ALL_GCC
)
1776 all-target-newlib
: configure-target-newlib
1777 configure-target-libtermcap
: $(ALL_GCC_C
)
1778 all-target-libtermcap
: configure-target-libtermcap
1779 all-opcodes
: all-bfd all-libiberty
1780 all-patch
: all-libiberty
1782 all-prms
: all-libiberty
1783 configure-target-qthreads
: $(ALL_GCC_C
)
1784 all-target-qthreads
: configure-target-qthreads
1787 all-recode
: all-libiberty
1788 all-sed
: all-libiberty
1789 all-send-pr
: all-prms
1791 all-sid
: all-tcl all-tk
1792 all-sim
: all-libiberty all-bfd all-opcodes all-readline
1793 all-snavigator
: all-tcl all-tk all-itcl all-tix all-db all-grep all-libgui
1794 all-tar
: all-libiberty
1796 all-tclX
: all-tcl all-tk
1798 all-texinfo
: all-libiberty
1800 all-tgas
: all-libiberty all-bfd all-opcodes
1802 all-tix
: all-tcl all-tk
1804 configure-target-winsup
: $(ALL_GCC_C
)
1805 all-target-winsup
: all-target-libiberty all-target-libtermcap configure-target-winsup
1806 all-uudecode
: all-libiberty
1809 configure-target-zlib
: $(ALL_GCC_C
)
1810 all-target-zlib
: configure-target-zlib
1811 all-fastjar
: all-zlib all-libiberty
1812 configure-target-fastjar
: configure-target-zlib
1813 all-target-fastjar
: configure-target-fastjar all-target-zlib all-target-libiberty
1814 configure-target-libiberty
: $(ALL_GCC_C
)
1815 all-target-libiberty
: configure-target-libiberty
1816 all-target
: $(ALL_TARGET_MODULES
)
1817 install-target
: $(INSTALL_TARGET_MODULES
)
1818 install-gdb
: install-tcl install-tk install-itcl install-tix install-libgui
1819 install-sid
: install-tcl install-tk
1820 ### other supporting targets
1823 $(DESTDIR
)$(prefix) \
1824 $(DESTDIR
)$(exec_prefix)
1826 installdirs: mkinstalldirs
1827 $(SHELL
) $(srcdir)/mkinstalldirs
$(MAKEDIRS
)
1829 dir.
info: do-install-info
1830 if
[ -f
$(srcdir)/texinfo
/gen-info-dir
] ; then \
1831 $(srcdir)/texinfo
/gen-info-dir
$(infodir) $(srcdir)/texinfo
/dir.info-template
> dir.
info.new
; \
1832 mv
-f
dir.
info.new
dir.
info ; \
1837 @echo
"Building a full distribution of this tree isn't done"
1838 @echo
"via 'make dist'. Check out the etc/ subdirectory"
1842 # Right now this just builds TAGS in each subdirectory. emacs19 has the
1843 # ability to use several tags files at once, so there is probably no need
1844 # to combine them into one big TAGS file (like CVS 1.3 does). We could
1845 # (if we felt like it) have this Makefile write a piece of elisp which
1846 # the user could load to tell emacs19 where all the TAGS files we just
1850 # with the gnu make, this is done automatically.
1852 Makefile
: Makefile.in configure.in
$(host_makefile_frag
) $(target_makefile_frag
) $(gcc_version_trigger
)
1853 $(SHELL
) .
/config.status
1856 # Support for building net releases
1858 # Files in devo used in any net release.
1859 # ChangeLog omitted because it may refer to files which are not in this
1860 # distribution (perhaps it would be better to include it anyway).
1861 DEVO_SUPPORT
= README Makefile.in configure configure.in \
1862 config.guess config.if config.sub config move-if-change \
1863 mpw-README mpw-build.in mpw-config.in mpw-configure mpw-install \
1864 COPYING COPYING.LIB install-sh config-ml.in symlink-tree \
1865 mkinstalldirs ltconfig ltmain.sh missing ylwrap \
1866 libtool.m4 gettext.m4 ltcf-c.sh ltcf-cxx.sh ltcf-gcj.sh
1868 # Files in devo/etc used in any net release.
1869 # ChangeLog omitted because it may refer to files which are not in this
1870 # distribution (perhaps it would be better to include it anyway).
1871 ETC_SUPPORT
= Makefile.in configure configure.in standards.texi \
1872 make-stds.texi standards.
info* configure.texi configure.
info* \
1873 configbuild.
* configdev.
*
1876 # When you use `make setup-dirs' or `make taz' you should always redefine
1878 SUPPORT_FILES
= list-of-support-files-for-tool-in-question
1880 # NOTE: No double quotes in the below. It is used within shell script
1882 VER
= ` if grep 'AM_INIT_AUTOMAKE.*BFD_VERSION' $(TOOL)/configure.in >/dev/null 2>&1; then \
1883 sed < bfd/configure.in -n 's/AM_INIT_AUTOMAKE[^,]*, *\([^)]*\))/\1/p'; \
1884 elif grep AM_INIT_AUTOMAKE $(TOOL)/configure.in >/dev/null 2>&1; then \
1885 sed < $(TOOL)/configure.in -n 's/AM_INIT_AUTOMAKE[^,]*, *\([^)]*\))/\1/p'; \
1886 elif test -f $(TOOL)/version.in; then \
1887 head -1 $(TOOL)/version.in; \
1888 elif grep VERSION $(TOOL)/Makefile.in > /dev/null 2>&1; then \
1889 sed < $(TOOL)/Makefile.in -n 's/^VERSION *= *//p'; \
1896 taz
: $(DEVO_SUPPORT
) $(SUPPORT_FILES
) texinfo
/texinfo.
tex
1897 $(MAKE
) -f Makefile.in do-proto-toplev \
1898 TOOL
=$(TOOL
) PACKAGE
="$(PACKAGE)" VER
="$(VER)" \
1899 MD5PROG
="$(MD5PROG)" \
1900 SUPPORT_FILES
="$(SUPPORT_FILES)"
1901 $(MAKE
) -f Makefile.in do-md5sum \
1902 TOOL
=$(TOOL
) PACKAGE
="$(PACKAGE)" VER
="$(VER)" \
1903 MD5PROG
="$(MD5PROG)" \
1904 SUPPORT_FILES
="$(SUPPORT_FILES)"
1905 $(MAKE
) -f Makefile.in do-tar \
1906 TOOL
=$(TOOL
) PACKAGE
="$(PACKAGE)" VER
="$(VER)" \
1907 MD5PROG
="$(MD5PROG)" \
1908 SUPPORT_FILES
="$(SUPPORT_FILES)"
1909 $(MAKE
) -f Makefile.in do-bz2 \
1910 TOOL
=$(TOOL
) PACKAGE
="$(PACKAGE)" VER
="$(VER)" \
1911 MD5PROG
="$(MD5PROG)" \
1912 SUPPORT_FILES
="$(SUPPORT_FILES)"
1915 gdb-tar
: $(DEVO_SUPPORT
) $(SUPPORT_FILES
) texinfo
/texinfo.
tex
1916 $(MAKE
) -f Makefile.in do-proto-toplev \
1917 TOOL
=$(TOOL
) PACKAGE
="$(PACKAGE)" VER
="$(VER)" \
1918 MD5PROG
="$(MD5PROG)" \
1919 SUPPORT_FILES
="$(SUPPORT_FILES)"
1920 $(MAKE
) -f Makefile.in do-md5sum \
1921 TOOL
=$(TOOL
) PACKAGE
="$(PACKAGE)" VER
="$(VER)" \
1922 MD5PROG
="$(MD5PROG)" \
1923 SUPPORT_FILES
="$(SUPPORT_FILES)"
1924 $(MAKE
) -f Makefile.in do-djunpack \
1925 TOOL
=$(TOOL
) PACKAGE
="$(PACKAGE)" VER
="$(VER)" \
1926 MD5PROG
="$(MD5PROG)" \
1927 SUPPORT_FILES
="$(SUPPORT_FILES)"
1928 $(MAKE
) -f Makefile.in do-tar \
1929 TOOL
=$(TOOL
) PACKAGE
="$(PACKAGE)" VER
="$(VER)" \
1930 MD5PROG
="$(MD5PROG)" \
1931 SUPPORT_FILES
="$(SUPPORT_FILES)"
1934 gdb-taz
: gdb-tar
$(DEVO_SUPPORT
) $(SUPPORT_FILES
) texinfo
/texinfo.
tex
1935 $(MAKE
) -f Makefile.in gdb-tar \
1936 TOOL
=$(TOOL
) PACKAGE
="$(PACKAGE)" VER
="$(VER)" \
1937 MD5PROG
="$(MD5PROG)" \
1938 SUPPORT_FILES
="$(SUPPORT_FILES)"
1939 $(MAKE
) -f Makefile.in do-bz2 \
1940 TOOL
=$(TOOL
) PACKAGE
="$(PACKAGE)" VER
="$(VER)" \
1941 MD5PROG
="$(MD5PROG)" \
1942 SUPPORT_FILES
="$(SUPPORT_FILES)"
1944 .PHONY
: do-proto-toplev
1945 do-proto-toplev
: $(DEVO_SUPPORT
) $(SUPPORT_FILES
) texinfo
/texinfo.
tex
1946 echo
"==> Making $(PACKAGE)-$(VER)/"
1947 # Take out texinfo from a few places.
1948 sed
-e
'/^all\.normal: /s/\all-texinfo //' \
1949 -e
'/^ install-texinfo /d' \
1951 mv
-f tmp Makefile.in
1954 [ -z
"$(CONFIGURE_TARGET_MODULES)" ] \
1955 ||
$(MAKE
) $(CONFIGURE_TARGET_MODULES
) \
1956 ALL_GCC
="" ALL_GCC_C
="" ALL_GCC_CXX
="" \
1957 CC_FOR_TARGET
="$(CC)" CXX_FOR_TARGET
="$(CXX)"
1958 # Make links, and run "make diststuff" or "make info" when needed.
1959 rm -rf proto-toplev
; mkdir proto-toplev
1960 set
-e
; dirs
="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
1961 for d in
$$dirs ; do \
1962 if
[ -d
$$d ]; then \
1963 if
[ ! -f
$$d/Makefile
] ; then true
; \
1964 elif grep
'^diststuff:' $$d/Makefile
>/dev
/null
; then \
1965 (cd
$$d ; $(MAKE
) diststuff
) || exit
1 ; \
1966 elif grep
'^info:' $$d/Makefile
>/dev
/null
; then \
1967 (cd
$$d ; $(MAKE
) info ) || exit
1 ; \
1969 if
[ -d
$$d/proto-
$$d.
dir ]; then \
1970 ln
-s ..
/$$d/proto-
$$d.
dir proto-toplev
/$$d ; \
1972 ln
-s ..
/$$d proto-toplev
/$$d ; \
1974 else ln
-s ..
/$$d proto-toplev
/$$d ; fi
; \
1976 cd etc
&& $(MAKE
) info
1979 mkdir proto-toplev
/etc
1980 (cd proto-toplev
/etc
; \
1981 for i in
$(ETC_SUPPORT
); do \
1982 ln
-s ..
/..
/etc
/$$i .
; \
1985 # Take out texinfo from configurable dirs
1986 rm proto-toplev
/configure.in
1987 sed
-e
'/^host_tools=/s/texinfo //' \
1988 <configure.in
>proto-toplev
/configure.in
1990 mkdir proto-toplev
/texinfo
1991 ln
-s ..
/..
/texinfo
/texinfo.
tex proto-toplev
/texinfo
/
1992 if
test -r texinfo
/util
/tex3patch
; then \
1993 mkdir proto-toplev
/texinfo
/util
&& \
1994 ln
-s ..
/..
/..
/texinfo
/util
/tex3patch proto-toplev
/texinfo
/util
; \
1996 chmod
-R og
=u . || chmod og
=u
`find . -print`
1998 # Create .gmo files from .po files.
1999 for f in
`find . -name '*.po' -type f -print`; do \
2000 msgfmt
-o
`echo $$f | sed -e 's/\.po$$/.gmo/'` $$f ; \
2003 -rm -f
$(PACKAGE
)-$(VER
)
2004 ln
-s proto-toplev
$(PACKAGE
)-$(VER
)
2008 echo
"==> Making $(PACKAGE)-$(VER).tar"
2009 -rm -f
$(PACKAGE
)-$(VER
).
tar
2010 find
$(PACKAGE
)-$(VER
) -follow
-name CVS
-prune
-o
-type f
-print \
2011 |
tar cTfh
- $(PACKAGE
)-$(VER
).
tar
2015 echo
"==> Bzipping $(PACKAGE)-$(VER).tar.bz2"
2016 -rm -f
$(PACKAGE
)-$(VER
).
tar.bz2
2017 $(BZIPPROG
) -v
-9 $(PACKAGE
)-$(VER
).
tar
2021 echo
"==> Adding md5 checksum to top-level directory"
2022 cd proto-toplev
&& find
* -follow
-name CVS
-prune
-o
-type f
-print \
2023 | xargs
$(MD5PROG
) > ..
/md5.sum
2024 mv md5.sum proto-toplev
2028 echo
"==> Adding updated djunpack.bat to top-level directory"
2029 echo
- 's /gdb-[0-9\.]*/gdb-'"$(VER)"'/'
2030 sed
< djunpack.bat
> djunpack.new \
2031 -e
's/gdb-[0-9][0-9\.]*/gdb-'"$(VER)"'/'
2032 mv djunpack.new djunpack.bat
2033 -rm -f proto-toplev
/djunpack.bat
2034 ln
-s ..
/djunpack.bat proto-toplev
/djunpack.bat
2036 TEXINFO_SUPPORT
= texinfo
/texinfo.
tex
2037 DIST_SUPPORT
= $(DEVO_SUPPORT
) $(TEXINFO_SUPPORT
)
2040 GAS_SUPPORT_DIRS
= bfd
include libiberty opcodes intl setup.com makefile.vms mkdep
2041 gas.
tar.bz2
: $(DIST_SUPPORT
) $(GAS_SUPPORT_DIRS
) gas
2042 $(MAKE
) -f Makefile.in taz TOOL
=gas \
2043 MD5PROG
="$(MD5PROG)" \
2044 SUPPORT_FILES
="$(GAS_SUPPORT_DIRS)"
2046 # The FSF "binutils" release includes gprof and ld.
2047 .PHONY
: binutils.
tar.bz2
2048 BINUTILS_SUPPORT_DIRS
= bfd gas
include libiberty opcodes
ld gprof intl setup.com makefile.vms mkdep
2049 binutils.
tar.bz2
: $(DIST_SUPPORT
) $(BINUTILS_SUPPORT_DIRS
) binutils
2050 $(MAKE
) -f Makefile.in taz TOOL
=binutils \
2051 MD5PROG
="$(MD5PROG)" \
2052 SUPPORT_FILES
="$(BINUTILS_SUPPORT_DIRS)"
2054 .PHONY
: gas
+binutils.
tar.bz2
2055 GASB_SUPPORT_DIRS
= $(GAS_SUPPORT_DIRS
) binutils
ld gprof
2056 gas
+binutils.
tar.bz2
: $(DIST_SUPPORT
) $(GASB_SUPPORT_DIRS
) gas
2057 $(MAKE
) -f Makefile.in taz TOOL
=gas \
2058 MD5PROG
="$(MD5PROG)" \
2059 SUPPORT_FILES
="$(GASB_SUPPORT_DIRS)"
2061 GNATS_SUPPORT_DIRS
=include libiberty send-pr
2062 gnats.
tar.bz2
: $(DIST_SUPPORT
) $(GNATS_SUPPORT_DIRS
) gnats
2063 $(MAKE
) -f Makefile.in taz TOOL
=gnats \
2064 MD5PROG
="$(MD5PROG)" \
2065 SUPPORT_FILES
="$(GNATS_SUPPORT_DIRS)"
2068 GDB_SUPPORT_DIRS
= bfd
include libiberty mmalloc opcodes readline sim utils intl
2069 gdb.
tar.bz2
: $(DIST_SUPPORT
) $(GDB_SUPPORT_DIRS
) gdb
2070 $(MAKE
) -f Makefile.in gdb-taz TOOL
=gdb \
2071 MD5PROG
="$(MD5PROG)" \
2072 SUPPORT_FILES
="$(GDB_SUPPORT_DIRS)"
2074 gdb.
tar: $(DIST_SUPPORT
) $(GDB_SUPPORT_DIRS
) gdb
2075 $(MAKE
) -f Makefile.in gdb-tar TOOL
=gdb \
2076 MD5PROG
="$(MD5PROG)" \
2077 SUPPORT_FILES
="$(GDB_SUPPORT_DIRS)"
2079 DEJAGNU_SUPPORT_DIRS
= tcl expect libiberty
2080 .PHONY
: dejagnu.
tar.bz2
2081 dejagnu.
tar.bz2
: $(DIST_SUPPORT
) $(DEJAGNU_SUPPORT_DIRS
) dejagnu
2082 $(MAKE
) -f Makefile.in taz TOOL
=dejagnu \
2083 MD5PROG
="$(MD5PROG)" \
2084 SUPPORT_FILES
="$(DEJAGNU_SUPPORT_DIRS)"
2086 .PHONY
: gdb
+dejagnu.
tar.bz2
2087 GDBD_SUPPORT_DIRS
= $(GDB_SUPPORT_DIRS
) tcl expect dejagnu
2088 gdb
+dejagnu.
tar.bz2
: $(DIST_SUPPORT
) $(GDBD_SUPPORT_DIRS
) gdb
2089 $(MAKE
) -f Makefile.in gdb-taz TOOL
=gdb PACKAGE
=gdb
+dejagnu \
2090 MD5PROG
="$(MD5PROG)" \
2091 SUPPORT_FILES
="$(GDBD_SUPPORT_DIRS)"
2092 .PHONY
: gdb
+dejagnu.
tar
2093 gdb
+dejagnu.
tar: $(DIST_SUPPORT
) $(GDBD_SUPPORT_DIRS
) gdb
2094 $(MAKE
) -f Makefile.in gdb-tar TOOL
=gdb PACKAGE
=gdb
+dejagnu \
2095 MD5PROG
="$(MD5PROG)" \
2096 SUPPORT_FILES
="$(GDBD_SUPPORT_DIRS)"
2098 .PHONY
: insight.
tar.bz2
2099 INSIGHT_SUPPORT_DIRS
= $(GDB_SUPPORT_DIRS
) tcl tk itcl tix libgui
2100 insight.
tar.bz2
: $(DIST_SUPPORT
) $(GDB_SUPPORT_DIRS
) gdb
2101 $(MAKE
) -f Makefile.in gdb-taz TOOL
=gdb PACKAGE
=insight \
2102 MD5PROG
="$(MD5PROG)" \
2103 SUPPORT_FILES
="$(INSIGHT_SUPPORT_DIRS)"
2105 insight.
tar: $(DIST_SUPPORT
) $(GDB_SUPPORT_DIRS
) gdb
2106 $(MAKE
) -f Makefile.in gdb-tar TOOL
=gdb PACKAGE
=insight \
2107 MD5PROG
="$(MD5PROG)" \
2108 SUPPORT_FILES
="$(INSIGHT_SUPPORT_DIRS)"
2110 .PHONY
: insight
+dejagnu.
tar.bz2
2111 INSIGHTD_SUPPORT_DIRS
= $(INSIGHT_SUPPORT_DIRS
) expect dejagnu
2112 insight
+dejagnu.
tar.bz2
: $(DIST_SUPPORT
) $(INSIGHTD_SUPPORT_DIRS
) gdb
2113 $(MAKE
) -f Makefile.in gdb-taz TOOL
=gdb PACKAGE
="insight+dejagnu" \
2114 MD5PROG
="$(MD5PROG)" \
2115 SUPPORT_FILES
="$(INSIGHTD_SUPPORT_DIRS)"
2116 .PHONY
: insight
+dejagnu.
tar
2117 insight
+dejagnu.
tar: $(DIST_SUPPORT
) $(INSIGHTD_SUPPORT_DIRS
) gdb
2118 $(MAKE
) -f Makefile.in gdb-tar TOOL
=gdb PACKAGE
="insight+dejagnu" \
2119 MD5PROG
="$(MD5PROG)" \
2120 SUPPORT_FILES
="$(INSIGHTD_SUPPORT_DIRS)"
2122 .PHONY
: newlib.
tar.bz2
2123 NEWLIB_SUPPORT_DIRS
=libgloss
2124 # taz configures for the sun4 target which won't configure newlib.
2125 # We need newlib configured so that the .info files are made.
2126 # Unfortunately, it is not enough to just configure newlib separately:
2127 # taz will build the .info files but since SUBDIRS won't contain newlib,
2128 # distclean won't be run (leaving Makefile, config.status, and the tmp files
2129 # used in building the .info files, eg: *.def, *.ref).
2130 # The problem isn't solvable however without a lot of extra work because
2131 # target libraries are built in subdir $(target_alias) which gets nuked during
2132 # the make distclean. For now punt on the issue of shipping newlib info files
2133 # with newlib net releases and wait for a day when some native target (sun4?)
2134 # supports newlib (if only minimally).
2135 newlib.
tar.bz2
: $(DIST_SUPPORT
) $(NEWLIB_SUPPORT_DIRS
) newlib
2136 $(MAKE
) -f Makefile.in taz TOOL
=newlib \
2137 MD5PROG
="$(MD5PROG)" \
2138 SUPPORT_FILES
="$(NEWLIB_SUPPORT_DIRS)" \
2139 DEVO_SUPPORT
="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib
2144 # end of Makefile.in