2 # Makefile for directory with subdirs to build.
3 # Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation
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.
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.
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.
24 exec_prefix = $(prefix)
25 bindir = $(exec_prefix)/bin
26 libdir = $(exec_prefix)/lib
27 tooldir = $(exec_prefix)/$(target)
29 program_transform_name =
31 datadir = $(prefix)/share
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
48 INSTALL = $${srcroot}/install.sh -c
49 INSTALL_PROGRAM = $(INSTALL)
50 INSTALL_DATA = $(INSTALL) -m 644
51 INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
53 INSTALL_DOSREL = install-dosrel-fake
60 # Special variables passed down in EXTRA_GCC_FLAGS. They are defined
61 # here so that they can be overridden by Makefile fragments.
62 HOST_CC = $(CC_FOR_BUILD)
64 HOST_PREFIX_1 = loser-
66 # We don't specify -g -O because many compilers don't support -g -O,
67 # and/or -O is broken in and of itself.
70 CFLAGS_FOR_TARGET = $(CFLAGS)
71 LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET)
75 # start-sanitize-chill
76 CHILLFLAGS = $(CFLAGS)
81 # Use -O2 to stress test the compiler.
83 LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates
84 CXXFLAGS_FOR_TARGET = $(CXXFLAGS)
85 LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET) -fno-implicit-templates
92 # Not plain GZIP, since gzip looks there for extra command-line options.
95 # These values are substituted by configure.
99 # BISON: This line sed'ed to BISON = bison -y for FSF releases, don't remove.
100 BISON = `if [ -f $$r/byacc/byacc ] ; \
101 then echo $$r/byacc/byacc ; \
102 else echo ${DEFAULT_YACC} ; \
105 LEX = `if [ -f $$r/flex/flex ] ; \
106 then echo $$r/flex/flex ; \
107 else echo ${DEFAULT_LEX} ; fi`
109 M4 = `if [ -f $$r/m4/m4 ] ; \
110 then echo $$r/m4/m4 ; \
113 MAKEINFO = `if [ -f $$r/texinfo/makeinfo/makeinfo ] ; \
114 then echo $$r/texinfo/makeinfo/makeinfo ; \
115 else echo makeinfo ; fi`
117 # This just becomes part of the MAKEINFO definition passed down to
118 # sub-makes. It lets flags be given on the command line while still
119 # using the makeinfo from the object tree.
122 EXPECT = `if [ -f $$r/expect/expect ] ; \
123 then echo $$r/expect/expect ; \
124 else echo expect ; fi`
126 RUNTEST = `if [ -f $${srcroot}/dejagnu/runtest ] ; \
127 then echo $${srcroot}/dejagnu/runtest ; \
128 else echo runtest ; fi`
131 # compilers to use to create programs which must be run in the build
134 CXX_FOR_BUILD = $(CXX)
136 SUBDIRS = "this is set via configure, don't edit this"
139 # This is set by the configure script to the list of directories which
140 # should be built using the target tools.
141 TARGET_CONFIGDIRS = libiberty libgloss newlib libio librx libstdc++ libg++ winsup
143 # Target libraries are put under this directory:
144 # Changed by configure to $(target_alias) if cross.
147 # This is set by the configure script to the arguments passed to configure.
150 # This is set by configure to REALLY_SET_LIB_PATH if --enable-shared
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
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);
164 INSTALL_TARGET = install-dirs \
166 $(INSTALL_TARGET_MODULES) \
167 $(INSTALL_X11_MODULES) \
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; \
177 echo $$r/gcc/xgcc -B$$r/gcc/; \
180 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
183 t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \
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/; \
192 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
195 t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \
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; \
206 echo $$r/gcc/xgcc -B$$r/gcc/; \
209 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
212 t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \
217 if [ -f $$r/gas/as.new ] ; then \
218 echo $$r/gas/as.new ; \
220 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
223 t='$(program_transform_name)'; echo as | sed -e 's/x/x/' $$t ; \
228 if [ -f $$r/ld/ld.new ] ; then \
229 echo $$r/ld/ld.new ; \
231 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
234 t='$(program_transform_name)'; echo ld | sed -e 's/x/x/' $$t ; \
238 DLLTOOL_FOR_TARGET = ` \
239 if [ -f $$r/binutils/dlltool ] ; then \
240 echo $$r/binutils/dlltool ; \
242 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
245 t='$(program_transform_name)'; echo dlltool | sed -e 's/x/x/' $$t ; \
250 if [ -f $$r/binutils/ar ] ; then \
251 echo $$r/binutils/ar ; \
253 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
256 t='$(program_transform_name)'; echo ar | sed -e 's/x/x/' $$t ; \
260 RANLIB_FOR_TARGET = ` \
261 if [ -f $$r/binutils/ranlib ] ; then \
262 echo $$r/binutils/ranlib ; \
264 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
267 t='$(program_transform_name)'; echo ranlib | sed -e 's/x/x/' $$t ; \
272 if [ -f $$r/binutils/nm.new ] ; then \
273 echo $$r/binutils/nm.new ; \
275 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
278 t='$(program_transform_name)'; echo nm | sed -e 's/x/x/' $$t ; \
282 #### host and target specific makefile fragments come in here.
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)" \
292 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
293 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
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)" \
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)" \
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)" \
327 "RUNTEST=$(RUNTEST)" \
328 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
330 "exec_prefix=$(exec_prefix)" \
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.
342 'DLLTOOL=$(DLLTOOL)' \
347 FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)
349 # Flags that are concerned with the location of the X11 include files
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.
357 X11_FLAGS_TO_PASS = \
358 'X11_EXTRA_CFLAGS=$(X11_EXTRA_CFLAGS)' \
359 'X11_EXTRA_LIBS=$(X11_EXTRA_LIBS)'
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)'
380 TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)
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
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.
389 'AR=$$(AR_FOR_TARGET)' \
393 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
394 'HOST_CC=$(CC_FOR_BUILD)' \
395 'HOST_PREFIX=$(HOST_PREFIX)' \
396 'HOST_PREFIX_1=$(HOST_PREFIX_1)' \
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`
408 GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS)
410 # This is a list of the targets for all of the modules which are compiled
411 # using $(FLAGS_TO_PASS).
463 # This is a list of the check targets for all of the modules which are
464 # compiled using $(FLAGS_TO_PASS).
466 # The list is in two parts. The first lists those tools which
467 # are tested as part of the host's native tool-chain, and not
468 # tested in a cross configuration.
469 NATIVE_CHECK_MODULES = \
473 CROSS_CHECK_MODULES = \
519 CHECK_MODULES=$(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
521 # This is a list of the install targets for all of the modules which are
522 # compiled using $(FLAGS_TO_PASS).
573 # This is a list of the targets for all of the modules which are compiled
574 # using $(X11_FLAGS_TO_PASS).
585 # This is a list of the check targets for all of the modules which are
586 # compiled using $(X11_FLAGS_TO_PASS).
587 CHECK_X11_MODULES = \
596 # This is a list of the install targets for all the modules which are
597 # compiled using $(X11_FLAGS_TO_PASS).
598 INSTALL_X11_MODULES = \
608 # This is a list of the targets for all of the modules which are compiled
609 # using $(TARGET_FLAGS_TO_PASS).
610 ALL_TARGET_MODULES = \
612 all-target-libstdc++ \
617 all-target-libgloss \
618 all-target-libiberty \
621 # This is a list of the configure targets for all of the modules which
622 # are compiled using the target tools.
623 CONFIGURE_TARGET_MODULES = \
624 configure-target-libio \
625 configure-target-libstdc++ \
626 configure-target-librx \
627 configure-target-libg++ \
628 configure-target-newlib \
629 configure-target-winsup \
630 configure-target-libgloss \
631 configure-target-libiberty \
632 configure-target-examples
634 # This is a list of the check targets for all of the modules which are
635 # compiled using $(TARGET_FLAGS_TO_PASS).
636 CHECK_TARGET_MODULES = \
638 check-target-libstdc++ \
639 check-target-libg++ \
640 check-target-newlib \
641 check-target-winsup \
642 check-target-libiberty
644 # This is a list of the install targets for all of the modules which are
645 # compiled using $(TARGET_FLAGS_TO_PASS).
646 INSTALL_TARGET_MODULES = \
647 install-target-libio \
648 install-target-libstdc++ \
649 install-target-libg++ \
650 install-target-newlib \
651 install-target-winsup \
652 install-target-libgloss \
653 install-target-libiberty
655 # This is a list of the targets for which we can do a clean-{target}.
707 # All of the target modules that can be cleaned
708 CLEAN_TARGET_MODULES = \
710 clean-target-libstdc++ \
712 clean-target-libg++ \
713 clean-target-newlib \
714 clean-target-winsup \
715 clean-target-libgloss \
716 clean-target-libiberty \
717 clean-target-examples
719 # All of the x11 modules that can be cleaned
720 CLEAN_X11_MODULES = \
730 # The first rule in the file had better be this one. Don't put any above it.
734 # The target built for a native build.
738 $(ALL_TARGET_MODULES) \
742 # Do a target for all the subdirectories. A ``make do-X'' will do a
743 # ``make X'' in all subdirectories (because, in general, there is a
744 # dependency (below) of X upon do-X, a ``make X'' will also do this,
745 # but it may do additional work as well).
746 # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
747 # because it is so large that it can easily overflow the command line
748 # length limit on some systems.
757 do-maintainer-clean \
761 @target=`echo $@ | sed -e 's/^do-//'`; \
763 srcroot=`cd $(srcdir); pwd`; export srcroot; \
765 for i in $(SUBDIRS) -dummy-; do \
766 if [ -f ./$$i/Makefile ]; then \
769 for flag in $(EXTRA_GCC_FLAGS); do \
770 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
774 for flag in $(EXTRA_HOST_FLAGS); do \
775 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
779 export AR AS CC CXX NM RANLIB DLLTOOL; \
781 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
782 "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \
783 "RANLIB=$${RANLIB}" \
784 "DLLTOOL=$${DLLTOOL}" \
786 then true; else exit 1; fi; \
789 @target=`echo $@ | sed -e 's/^do-//'`; \
791 srcroot=`cd $(srcdir); pwd`; export srcroot; \
793 for i in $(TARGET_CONFIGDIRS) -dummy-; do \
794 if [ -f $(TARGET_SUBDIR)/$$i/Makefile ]; then \
795 for flag in $(EXTRA_TARGET_FLAGS); do \
796 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
798 export AR AS CC CXX NM RANLIB DLLTOOL; \
799 if (cd $(TARGET_SUBDIR)/$$i; \
800 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
801 "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \
802 "RANLIB=$${RANLIB}" \
803 "DLLTOOL=$${DLLTOOL}" \
805 then true; else exit 1; fi; \
809 # Here are the targets which correspond to the do-X targets.
811 .PHONY: info installcheck dvi install-info
812 .PHONY: clean distclean mostlyclean maintainer-clean realclean
813 .PHONY: local-clean local-distclean local-maintainer-clean
815 installcheck: do-installcheck
818 install-info: do-install-info dir.info
819 srcroot=`cd $(srcdir); pwd`; export srcroot; \
820 if [ -f dir.info ] ; then \
821 $(INSTALL_DATA) dir.info $(infodir)/dir.info ; \
825 -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E
828 -rm -f Makefile config.status
829 -if [ "$(TARGET_SUBDIR)" != "." ]; then \
830 rm -rf $(TARGET_SUBDIR); \
833 local-maintainer-clean:
834 @echo "This command is intended for maintainers to use;"
835 @echo "it deletes files that may require special tools to rebuild."
837 clean: do-clean local-clean
838 mostlyclean: do-mostlyclean local-clean
839 distclean: do-distclean local-clean local-distclean
840 maintainer-clean: local-maintainer-clean do-maintainer-clean local-clean
841 maintainer-clean: local-distclean
842 realclean: maintainer-clean
844 # This rule is used to clean specific modules.
845 .PHONY: $(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc
846 $(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc:
847 @dir=`echo $@ | sed -e 's/clean-//'`; \
848 if [ -f ./$${dir}/Makefile ] ; then \
850 srcroot=`cd $(srcdir); pwd`; export srcroot; \
852 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) clean); \
857 .PHONY: $(CLEAN_TARGET_MODULES)
858 $(CLEAN_TARGET_MODULES):
859 @dir=`echo $@ | sed -e 's/clean-target-//'`; \
860 rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
861 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
863 srcroot=`cd $(srcdir); pwd`; export srcroot; \
865 (cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) clean); \
870 clean-target: $(CLEAN_TARGET_MODULES)
875 check: $(CHECK_MODULES) \
876 $(CHECK_TARGET_MODULES) \
877 $(CHECK_X11_MODULES) \
880 # Installation targets.
882 .PHONY: install uninstall source-vault binary-vault vault-install
883 install: $(INSTALL_TARGET)
886 @echo "the uninstall target is not supported in this tree"
889 $(MAKE) -f ./release/Build-A-Release \
890 host=$(host_alias) source-vault
893 $(MAKE) -f ./release/Build-A-Release \
894 host=$(host_alias) target=$(target_alias)
897 @if [ -f ./release/vault-install ] ; then \
898 ./release/vault-install $(host_alias) $(target_alias) ; \
904 install.all: install-no-fixedincludes
905 @if [ -f ./gcc/Makefile ] ; then \
906 r=`pwd` ; export r ; \
909 $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
914 # inet-install is used because the I*Net wants DejaGNU installed but
917 $(MAKE) INSTALL_MODULES="`echo $(INSTALL_MODULES) | sed -e 's/install-dejagnu//'`" install
919 # install-no-fixedincludes is used because Cygnus can not distribute
920 # the fixed header files.
921 .PHONY: install-no-fixedincludes
922 install-no-fixedincludes: \
925 $(INSTALL_TARGET_MODULES) \
926 $(INSTALL_X11_MODULES) \
929 # Install the gcc headers files, but not the fixed include files,
930 # which Cygnus is not allowed to distribute. This rule is very
931 # dependent on the workings of the gcc Makefile.in.
932 .PHONY: gcc-no-fixedincludes
933 gcc-no-fixedincludes:
934 @if [ -f ./gcc/Makefile ]; then \
935 rm -rf gcc/tmp-include; \
936 mv gcc/include gcc/tmp-include 2>/dev/null; \
938 cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \
939 touch gcc/stmp-fixinc gcc/include/fixed; \
940 rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \
942 srcroot=`cd $(srcdir); pwd` ; export srcroot; \
945 $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
946 rm -rf gcc/include; \
947 mv gcc/tmp-include gcc/include 2>/dev/null; \
950 # This rule is used to build the modules which use FLAGS_TO_PASS. To
951 # build a target all-X means to cd to X and make all.
953 # all-gui, and all-libproc are handled specially because
954 # they are still experimental, and if they fail to build, that
955 # shouldn't stop "make all".
956 .PHONY: $(ALL_MODULES) all-gui all-libproc
957 $(ALL_MODULES) all-gui all-libproc:
958 @dir=`echo $@ | sed -e 's/all-//'`; \
959 if [ -f ./$${dir}/Makefile ] ; then \
961 srcroot=`cd $(srcdir); pwd`; export srcroot; \
963 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
968 # These rules are used to check the modules which use FLAGS_TO_PASS.
969 # To build a target check-X means to cd to X and make check. Some
970 # modules are only tested in a native toolchain.
972 .PHONY: $(CHECK_MODULES) $(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
973 $(NATIVE_CHECK_MODULES):
974 @if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
975 dir=`echo $@ | sed -e 's/check-//'`; \
976 if [ -f ./$${dir}/Makefile ] ; then \
978 srcroot=`cd $(srcdir); pwd`; export srcroot; \
980 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
986 $(CROSS_CHECK_MODULES):
987 @dir=`echo $@ | sed -e 's/check-//'`; \
988 if [ -f ./$${dir}/Makefile ] ; then \
990 srcroot=`cd $(srcdir); pwd`; export srcroot; \
992 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
997 # This rule is used to install the modules which use FLAGS_TO_PASS.
998 # To build a target install-X means to cd to X and make install.
999 .PHONY: $(INSTALL_MODULES)
1000 $(INSTALL_MODULES): install-dirs
1001 @dir=`echo $@ | sed -e 's/install-//'`; \
1002 if [ -f ./$${dir}/Makefile ] ; then \
1003 r=`pwd`; export r; \
1004 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1006 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
1011 # This rule is used to configure the modules which are built with the
1013 .PHONY: $(CONFIGURE_TARGET_MODULES)
1014 $(CONFIGURE_TARGET_MODULES):
1015 @dir=`echo $@ | sed -e 's/configure-target-//'`; \
1016 if [ -d $(TARGET_SUBDIR)/$${dir} ]; then \
1017 $(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
1018 if [ -f $(TARGET_SUBDIR)/$${dir}/multilib.out ]; then \
1019 if cmp $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out > /dev/null; then \
1020 rm -f $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
1022 echo "Multilibs changed for $${dir}, reconfiguring"; \
1023 rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/Makefile; \
1024 mv $(TARGET_SUBDIR)/$${dir}/tmpmulti.out $(TARGET_SUBDIR)/$${dir}/multilib.out; \
1027 mv $(TARGET_SUBDIR)/$${dir}/tmpmulti.out $(TARGET_SUBDIR)/$${dir}/multilib.out; \
1029 fi; exit 0 # break command into two pieces
1030 @dir=`echo $@ | sed -e 's/configure-target-//'`; \
1031 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1033 elif echo " $(TARGET_CONFIGDIRS) " | grep " $${dir} " >/dev/null 2>&1; then \
1034 if [ -d $(srcdir)/$${dir} ]; then \
1035 [ -d $(TARGET_SUBDIR)/$${dir} ] || mkdir $(TARGET_SUBDIR)/$${dir};\
1036 r=`pwd`; export r; \
1037 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1039 AR="$(AR_FOR_TARGET)"; export AR; \
1040 AS="$(AS_FOR_TARGET)"; export AS; \
1041 CC="$(CC_FOR_TARGET)"; export CC; \
1042 CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
1043 CXX="$(CXX_FOR_TARGET)"; export CXX; \
1044 CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
1045 DLLTOOL="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL; \
1046 LD="$(LD_FOR_TARGET)"; export LD; \
1047 NM="$(NM_FOR_TARGET)"; export NM; \
1048 RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \
1049 echo Configuring in $(TARGET_SUBDIR)/$${dir}; \
1050 cd $(TARGET_SUBDIR)/$${dir}; \
1053 topdir=$(srcdir) ;; \
1055 case "$(TARGET_SUBDIR)" in \
1056 .) topdir="../$(srcdir)" ;; \
1057 *) topdir="../../$(srcdir)" ;; \
1060 if [ "$(srcdir)" = "." ] ; then \
1061 if [ "$(TARGET_SUBDIR)" != "." ] ; then \
1062 if $(SHELL) $${srcroot}/symlink-tree $${topdir}/$${dir} "no-such-file" ; then \
1063 if [ -f Makefile ]; then \
1064 if $(MAKE) distclean; then \
1078 srcdiroption="--srcdir=."; \
1081 srcdiroption="--srcdir=$${topdir}/$${dir}"; \
1082 libsrcdir="$${srcroot}/$${dir}"; \
1084 if [ -f $${libsrcdir}/configure ] ; then \
1085 $(SHELL) $${libsrcdir}/configure \
1086 $(CONFIG_ARGUMENTS) $${srcdiroption} \
1087 --with-target-subdir="$(TARGET_SUBDIR)"; \
1089 $(SHELL) $${srcroot}/configure \
1090 $(CONFIG_ARGUMENTS) $${srcdiroption} \
1091 --with-target-subdir="$(TARGET_SUBDIR)"; \
1100 # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
1101 # To build a target all-X means to cd to X and make all.
1102 .PHONY: $(ALL_TARGET_MODULES)
1103 $(ALL_TARGET_MODULES):
1104 @dir=`echo $@ | sed -e 's/all-target-//'`; \
1105 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1106 r=`pwd`; export r; \
1107 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1109 (cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) all); \
1114 # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
1115 # To build a target install-X means to cd to X and make install.
1116 .PHONY: $(CHECK_TARGET_MODULES)
1117 $(CHECK_TARGET_MODULES):
1118 @dir=`echo $@ | sed -e 's/check-target-//'`; \
1119 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1120 r=`pwd`; export r; \
1121 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1123 (cd $(TARGET_SUBDIR)/$${dir};$(MAKE) $(TARGET_FLAGS_TO_PASS) check);\
1128 # This rule is used to install the modules which use
1129 # TARGET_FLAGS_TO_PASS. To build a target install-X means to cd to X
1131 .PHONY: $(INSTALL_TARGET_MODULES)
1132 $(INSTALL_TARGET_MODULES): install-dirs
1133 @dir=`echo $@ | sed -e 's/install-target-//'`; \
1134 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1135 r=`pwd`; export r; \
1136 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1138 (cd $(TARGET_SUBDIR)/$${dir}; \
1139 $(MAKE) $(TARGET_FLAGS_TO_PASS) install); \
1144 # This rule is used to build the modules which use X11_FLAGS_TO_PASS.
1145 # To build a target all-X means to cd to X and make all.
1146 .PHONY: $(ALL_X11_MODULES)
1148 @dir=`echo $@ | sed -e 's/all-//'`; \
1149 if [ -f ./$${dir}/Makefile ] ; then \
1150 r=`pwd`; export r; \
1151 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1154 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \
1159 # This rule is used to check the modules which use X11_FLAGS_TO_PASS.
1160 # To build a target check-X means to cd to X and make all.
1161 .PHONY: $(CHECK_X11_MODULES)
1162 $(CHECK_X11_MODULES):
1163 @dir=`echo $@ | sed -e 's/check-//'`; \
1164 if [ -f ./$${dir}/Makefile ] ; then \
1165 r=`pwd`; export r; \
1166 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1169 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \
1174 # This rule is used to install the modules which use X11_FLAGS_TO_PASS.
1175 # To build a target install-X means to cd to X and make install.
1176 .PHONY: $(INSTALL_X11_MODULES)
1177 $(INSTALL_X11_MODULES):
1178 @dir=`echo $@ | sed -e 's/install-//'`; \
1179 if [ -f ./$${dir}/Makefile ] ; then \
1180 r=`pwd`; export r; \
1181 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1184 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \
1189 # gcc is the only module which uses GCC_FLAGS_TO_PASS.
1192 @if [ -f ./gcc/Makefile ] ; then \
1193 r=`pwd`; export r; \
1194 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1196 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \
1201 .PHONY: all-bootstrap
1203 @if [ -f ./gcc/Makefile ] ; then \
1204 r=`pwd`; export r; \
1205 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1207 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) bootstrap); \
1214 @if [ -f ./gcc/Makefile ] ; then \
1215 r=`pwd`; export r; \
1216 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1218 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \
1225 @if [ -f ./gcc/Makefile ] ; then \
1226 r=`pwd`; export r; \
1227 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1229 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
1235 # EXPERIMENTAL STUFF
1236 # This rule is used to install the modules which use FLAGS_TO_PASS.
1237 # To build a target install-X means to cd to X and make install.
1238 .PHONY: install-dosrel
1239 install-dosrel: install-dirs info
1240 @dir=`echo $@ | sed -e 's/install-//'`; \
1241 if [ -f ./$${dir}/Makefile ] ; then \
1242 r=`pwd`; export r; \
1243 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1245 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
1250 install-dosrel-fake:
1253 # This is a list of inter-dependencies among modules.
1255 all-autoconf: all-m4
1258 all-binutils: all-libiberty all-opcodes all-bfd all-flex all-byacc
1261 all-dejagnu: all-tcl all-expect all-tk
1262 all-diff: all-libiberty
1264 all-emacs19: all-byacc
1266 configure-target-examples: $(ALL_GCC)
1267 all-target-examples: configure-target-examples
1268 all-expect: all-tcl all-tk
1269 all-fileutils: all-libiberty
1271 all-flex: all-libiberty all-byacc
1272 all-gas: all-libiberty all-opcodes all-bfd
1276 all-gcc: all-libiberty all-byacc all-binutils all-gas all-ld
1277 all-bootstrap: all-libiberty all-byacc all-binutils all-gas all-ld
1278 GDB_TK = all-tk all-tcl
1279 all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-byacc all-sim $(gdbnlmrequirements) $(GDB_TK)
1280 all-gprof: all-libiberty all-bfd all-opcodes
1281 all-grep: all-libiberty
1282 all-grez: all-libiberty all-bfd all-opcodes
1283 all-gui: all-gdb all-libproc all-target-librx
1285 all-gzip: all-libiberty
1286 all-hello: all-libiberty
1288 all-inet: all-tcl all-send-pr all-perl
1289 all-ispell: all-emacs19
1290 all-ld: all-libiberty all-bfd all-opcodes all-byacc all-flex
1291 configure-target-libg++: $(ALL_GCC) configure-target-librx
1292 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++
1293 configure-target-libgloss: $(ALL_GCC)
1294 all-target-libgloss: configure-target-libgloss configure-target-newlib
1295 configure-target-libio: $(ALL_GCC)
1296 all-target-libio: configure-target-libio all-gas all-ld all-gcc all-target-libiberty all-target-newlib
1298 configure-target-librx: $(ALL_GCC) configure-target-newlib
1299 all-target-librx: configure-target-librx
1300 configure-target-libstdc++: $(ALL_GCC)
1301 all-target-libstdc++: configure-target-libstdc++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio
1302 all-m4: all-libiberty
1303 all-make: all-libiberty
1305 configure-target-newlib: $(ALL_GCC)
1306 all-target-newlib: configure-target-newlib all-binutils all-gas all-gcc
1307 all-opcodes: all-bfd all-libiberty
1308 all-patch: all-libiberty
1310 all-prms: all-libiberty
1313 all-recode: all-libiberty
1314 all-sed: all-libiberty
1315 all-send-pr: all-prms
1317 all-sim: all-libiberty all-bfd all-opcodes
1318 all-tar: all-libiberty
1320 all-tclX: all-tcl all-tk
1322 all-texinfo: all-libiberty
1324 all-tgas: all-libiberty all-bfd all-opcodes
1327 all-target-winsup: all-target-newlib all-target-libiberty configure-target-winsup
1328 configure-target-winsup: configure-target-newlib
1329 all-uudecode: all-libiberty
1330 configure-target-libiberty: $(ALL_GCC)
1331 all-target-libiberty: configure-target-libiberty all-gcc all-ld all-target-newlib
1332 all-target: $(ALL_TARGET_MODULES)
1333 install-target: $(INSTALL_TARGET_MODULES)
1335 ### other supporting targets
1340 .PHONY: install-dirs
1342 @for i in $(MAKEDIRS) ; do \
1343 echo Making $$i... ; \
1344 parent=`echo $$i | sed -e 's@/[^/]*$$@@' | sed -e 's@^$$@/@'`; \
1345 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi ; \
1346 if [ ! -d $$i ] ; then \
1347 if mkdir $$i ; then \
1358 dir.info: do-install-info
1359 if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \
1360 $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \
1361 mv -f dir.info.new dir.info ; \
1366 @echo "Building a full distribution of this tree isn't done"
1367 @echo "via 'make dist'. Check out the etc/ subdirectory"
1371 # Right now this just builds TAGS in each subdirectory. emacs19 has the
1372 # ability to use several tags files at once, so there is probably no need
1373 # to combine them into one big TAGS file (like CVS 1.3 does). We could
1374 # (if we felt like it) have this Makefile write a piece of elisp which
1375 # the user could load to tell emacs19 where all the TAGS files we just
1379 # with the gnu make, this is done automatically.
1381 Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag)
1382 $(SHELL) ./config.status
1385 # Support for building net releases
1387 # Files in devo used in any net release.
1388 # ChangeLog omitted because it may refer to files which are not in this
1389 # distribution (perhaps it would be better to include it anyway).
1390 DEVO_SUPPORT= README Makefile.in configure configure.in \
1391 config.guess config.sub config move-if-change \
1392 mpw-README mpw-build.in mpw-config.in mpw-configure \
1393 COPYING COPYING.LIB install.sh config-ml.in symlink-tree
1395 # Files in devo/etc used in any net release.
1396 # ChangeLog omitted because it may refer to files which are not in this
1397 # distribution (perhaps it would be better to include it anyway).
1398 ETC_SUPPORT= Makefile.in cfg-paper.texi configure.in configure.man \
1399 configure.texi standards.texi make-stds.texi \
1400 configure.info* standards.info* cfg-paper.info*
1402 # When you use `make setup-dirs' or `make taz' you should always redefine
1404 SUPPORT_FILES = list-of-support-files-for-tool-in-question
1405 # Files where "byacc" (Cygnus version) should be changed to "bison -y" (FSF).
1406 DISTBISONFILES= binutils/Makefile.in gas/Makefile.in gdb/Makefile.in
1410 taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \
1411 texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1412 # Make sure "diststuff" files get built properly.
1413 for f in $(DISTBISONFILES) ; do \
1414 if [ -r $$f ]; then \
1415 sed '/^BISON *=.*$$/s/.*/BISON = bison -y/' <$$f >tmp ; \
1419 # Take out texinfo from a few places; make simple BISON=bison line.
1420 sed -e '/^all\.normal: /s/\all-texinfo //' \
1421 -e '/^ install-texinfo /d' \
1422 -e '/^BISON = /,/^$$/d' \
1423 -e '/^# BISON:/s/.*/BISON = bison -y/' \
1425 mv -f tmp Makefile.in
1427 $(start-sanitize-Sanitize)
1428 @if [ -f .Sanitize ] ; then echo "RUN Sanitize FIRST!" ; false ; fi ;
1429 $(end-sanitize-Sanitize)
1431 [ -z "$(CONFIGURE_TARGET_MODULES)" ] \
1432 || $(MAKE) $(CONFIGURE_TARGET_MODULES) ALL_GCC="" \
1433 CC_FOR_TARGET="$(CC)" CXX_FOR_TARGET="$(CXX)"
1434 # Make links, and run "make diststuff" or "make info" when needed.
1435 rm -rf proto-toplev ; mkdir proto-toplev
1436 set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
1437 for d in $$dirs ; do \
1438 if [ -d $$d ]; then \
1439 if [ ! -f $$d/Makefile ] ; then true ; \
1440 elif grep '^diststuff:' $$d/Makefile >/dev/null ; then \
1441 (cd $$d ; $(MAKE) diststuff ) || exit 1 ; \
1442 elif grep '^info:' $$d/Makefile >/dev/null ; then \
1443 (cd $$d ; $(MAKE) info ) || exit 1 ; \
1445 if [ -d $$d/proto-$$d.dir ]; then \
1446 ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
1448 ln -s ../$$d proto-toplev/$$d ; \
1450 else ln -s ../$$d proto-toplev/$$d ; fi ; \
1452 cd etc ; $(MAKE) info
1455 mkdir proto-toplev/etc
1456 (cd proto-toplev/etc; \
1457 for i in $(ETC_SUPPORT); do \
1458 ln -s ../../etc/$$i . ; \
1461 # Take out texinfo from configurable dirs
1462 rm proto-toplev/configure.in
1463 sed -e '/^host_tools=/s/texinfo //' \
1464 <configure.in >proto-toplev/configure.in
1466 mkdir proto-toplev/texinfo
1467 ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
1468 ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/
1469 ln -s ../../texinfo/lgpl.texinfo proto-toplev/texinfo/
1470 if test -r texinfo/util/tex3patch ; then \
1471 mkdir proto-toplev/texinfo/util && \
1472 ln -s ../../../texinfo/util/tex3patch proto-toplev/texinfo/util ; \
1474 chmod og=u `find . -print`
1475 (VER=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \
1476 echo "==> Making $(TOOL)-$$VER.tar.gz"; \
1477 rm -f $(TOOL)-$$VER; ln -s proto-toplev $(TOOL)-$$VER; \
1478 tar cfh - $(TOOL)-$$VER \
1479 | $(GZIPPROG) -v -9 >$(TOOL)-$$VER.tar.gz )
1481 TEXINFO_SUPPORT= texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1482 DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT)
1485 GAS_SUPPORT_DIRS= bfd include libiberty opcodes
1486 gas.tar.gz: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas
1487 $(MAKE) -f Makefile.in taz TOOL=gas \
1488 SUPPORT_FILES="$(GAS_SUPPORT_DIRS)"
1490 # The FSF "binutils" release includes gprof and ld.
1491 .PHONY: binutils.tar.gz
1492 BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof
1493 binutils.tar.gz: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils
1494 $(MAKE) -f Makefile.in taz TOOL=binutils \
1495 SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS) makeall.bat configure.bat"
1497 .PHONY: gas+binutils.tar.gz
1498 GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof
1499 gas+binutils.tar.gz: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas
1500 $(MAKE) -f Makefile.in taz TOOL=gas \
1501 SUPPORT_FILES="$(GASB_SUPPORT_DIRS) makeall.bat configure.bat"
1503 .PHONY: libg++.tar.gz
1504 LIBGXX_SUPPORT_DIRS=include libstdc++ libio librx libiberty
1505 libg++.tar.gz: $(DIST_SUPPORT) libg++
1506 $(MAKE) -f Makefile.in taz TOOL=libg++ \
1507 SUPPORT_FILES="$(LIBGXX_SUPPORT_DIRS)"
1509 GNATS_SUPPORT_DIRS=include libiberty send-pr
1510 gnats.tar.gz: $(DIST_SUPPORT) $(GNATS_SUPPORT_DIRS) gnats
1511 $(MAKE) -f Makefile.in taz TOOL=gnats \
1512 SUPPORT_FILES="$(GNATS_SUPPORT_DIRS)"
1515 GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline sim utils
1516 GDBTK_SUPPORT_DIRS= `if [ -d tcl -a -d tk ] ; then echo tcl tk ; fi`
1517 gdb.tar.gz: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb
1518 $(MAKE) -f Makefile.in taz TOOL=gdb \
1519 SUPPORT_FILES="$(GDB_SUPPORT_DIRS) $(GDBTK_SUPPORT_DIRS)"
1521 .PHONY: newlib.tar.gz
1522 NEWLIB_SUPPORT_DIRS=libgloss
1523 # taz configures for the sun4 target which won't configure newlib.
1524 # We need newlib configured so that the .info files are made.
1525 # Unfortunately, it is not enough to just configure newlib separately:
1526 # taz will build the .info files but since SUBDIRS won't contain newlib,
1527 # distclean won't be run (leaving Makefile, config.status, and the tmp files
1528 # used in building the .info files, eg: *.def, *.ref).
1529 # The problem isn't solvable however without a lot of extra work because
1530 # target libraries are built in subdir $(target_alias) which gets nuked during
1531 # the make distclean. For now punt on the issue of shipping newlib info files
1532 # with newlib net releases and wait for a day when some native target (sun4?)
1533 # supports newlib (if only minimally).
1534 newlib.tar.gz: $(DIST_SUPPORT) $(NEWLIB_SUPPORT_DIRS) newlib
1535 $(MAKE) -f Makefile.in taz TOOL=newlib \
1536 SUPPORT_FILES="$(NEWLIB_SUPPORT_DIRS)" \
1537 DEVO_SUPPORT="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib
1542 # start-sanitize-chill
1543 ## This is ugly, but I don't want GNU make to put these variables in
1544 ## the environment. Older makes will see this as a set of targets
1545 ## with no dependencies and no actions.
1546 unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
1547 # end-sanitize-chill
1549 # end of Makefile.in