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., 675 Mass Ave, Cambridge, MA 02139, 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)/lib
32 mandir = $(prefix)/man
33 man1dir = $(mandir)/man1
34 man2dir = $(mandir)/man2
35 man3dir = $(mandir)/man3
36 man4dir = $(mandir)/man4
37 man5dir = $(mandir)/man5
38 man6dir = $(mandir)/man6
39 man7dir = $(mandir)/man7
40 man8dir = $(mandir)/man8
41 man9dir = $(mandir)/man9
42 infodir = $(prefix)/info
43 includedir = $(prefix)/include
44 docdir = $(datadir)/doc
49 INSTALL_PROGRAM = $(INSTALL)
50 INSTALL_DATA = $(INSTALL)
57 # start-sanitize-chill
58 CHILLFLAGS = $(CFLAGS)
69 # BISON: This line sed'ed to BISON = bison -y for FSF releases, don't remove.
70 BISON = `if [ -f $${rootme}/byacc/byacc ] ; \
71 then echo $${rootme}/byacc/byacc ; \
75 LEX = `if [ -f $${rootme}/flex/flex ] ; \
76 then echo $${rootme}/flex/flex ; \
79 MAKEINFO = `if [ -f $${rootme}/texinfo/makeinfo/makeinfo ] ; \
80 then echo $${rootme}/texinfo/makeinfo/makeinfo ; \
81 else echo makeinfo ; fi`
83 EXPECT = `if [ -f $${rootme}/expect/expect ] ; \
84 then echo $${rootme}/expect/expect ; \
85 else echo expect ; fi`
87 RUNTEST = `if [ -f $${srcroot}/dejagnu/runtest ] ; \
88 then echo $${srcroot}/dejagnu/runtest ; \
89 else echo runtest ; fi`
92 # libraries that may need to be augmented on a system-by-system basis
95 # compilers to use to create programs which must be run in the build
98 CXX_FOR_BUILD = $(CXX)
100 SUBDIRS = "this is set via configure, don't edit this"
104 INSTALL_TARGET = install.all
107 if [ -f $${rootme}/gcc/Makefile ] ; then \
108 echo $${rootme}/gcc/xgcc -B$${rootme}/gcc/; \
110 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
113 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
117 # start-sanitize-chill
118 CHILL_FOR_TARGET = ` \
119 if [ -f $${rootme}/gcc/Makefile ] ; then \
120 echo $${rootme}/gcc/xgcc -B$${rootme}/gcc/ -L$${rootme}/chillrt/; \
122 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
125 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
132 if [ -f $${rootme}/gcc/Makefile ] ; then \
133 echo $${rootme}/gcc/xgcc -B$${rootme}/gcc/; \
135 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
138 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
143 if [ -f $${rootme}/gas/Makefile ] ; then \
144 echo $${rootme}/gas/as.new ; \
146 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
149 t='$(program_transform_name)'; echo as | sed -e '' $$t ; \
154 if [ -f $${rootme}/binutils/Makefile ] ; then \
155 echo $${rootme}/binutils/ar ; \
157 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
160 t='$(program_transform_name)'; echo ar | sed -e '' $$t ; \
164 RANLIB_FOR_TARGET = ` \
165 if [ -f $${rootme}/binutils/Makefile ] ; then \
166 echo $${rootme}/binutils/ranlib ; \
168 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
171 t='$(program_transform_name)'; echo ranlib | sed -e '' $$t ; \
176 if [ -f $${rootme}/binutils/Makefile ] ; then \
177 echo $${rootme}/binutils/nm ; \
179 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
182 t='$(program_transform_name)'; echo nm | sed -e '' $$t ; \
186 # FIXME: This is badly named.
188 if [ -f $${rootme}/gcc/Makefile ] ; then \
189 if [ -f $${rootme}/newlib/Makefile ] ; then \
190 echo -I$${rootme}/newlib/targ-include -I$${srcroot}/newlib/libc/include -I$${rootme}/gcc/include -nostdinc ; \
192 echo -I$${rootme}/gcc/include ; \
200 #### host and target specific makefile fragments come in here.
203 # Flags to pass down to all sub-makes.
204 # Please keep these in alphabetical order.
205 BASE_FLAGS_TO_PASS = \
206 "AR_FLAGS=$(AR_FLAGS)" \
207 "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
208 "AS_FOR_TARGET=$(AS_FOR_TARGET)" \
210 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
211 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
213 $(start-sanitize-chill)\
214 "CHILLFLAGS=$(CHILLFLAGS)" \
215 "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
216 "CHILL_LIB=$(CHILL_LIB)" \
217 $(end-sanitize-chill)\
218 "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
219 "CXXFLAGS=$(CXXFLAGS)" \
220 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
221 'GCC_FOR_TARGET=$$(CC_FOR_TARGET)' \
222 "INSTALL=$(INSTALL)" \
223 "INSTALL_DATA=$(INSTALL_DATA)" \
224 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
225 "LDFLAGS=$(LDFLAGS)" \
227 "LOADLIBES=$(LOADLIBES)" \
228 "MAKEINFO=$(MAKEINFO)" \
229 "MUNCH_NM=$(MUNCH_NM)" \
230 "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
232 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
234 "RUNTEST=$(RUNTEST)" \
235 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
236 "XTRAFLAGS_FOR_TARGET=$(XTRAFLAGS)" \
237 "exec_prefix=$(exec_prefix)" \
241 # Flags to pass down to most sub-makes, in which we're building with
242 # the host environment.
243 # If any variables are added here, they must be added to do-*, below.
253 FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)
255 # Flags that are concerned with the location of the X11 include files
257 X11_FLAGS_TO_PASS = \
258 "X11_INCLUDE_FLAGS=$(X11_INCLUDE_FLAGS)" \
259 "X11_LIB_FLAGS=$(X11_LIB_FLAGS)" \
262 # Flags to pass down to makes which are built with the target environment.
263 # The double $ decreases the length of the command line; the variables
264 # are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them.
265 # If any variables are added here, they must be added to do-*, below.
266 EXTRA_TARGET_FLAGS = \
267 'AR=$$(AR_FOR_TARGET)' \
268 'AS=$$(AS_FOR_TARGET)' \
269 'CC=$$(CC_FOR_TARGET)' \
270 'CXX=$$(CXX_FOR_TARGET)' \
271 'NM=$$(NM_FOR_TARGET)' \
272 'RANLIB=$$(RANLIB_FOR_TARGET)' \
273 'XTRAFLAGS=$$(XTRAFLAGS_FOR_TARGET)'
275 TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)
277 # Flags to pass down to gcc. gcc builds a library, libgcc.a, so it
278 # unfortunately needs the native compiler and the target ar and
280 # If any variables are added here, they must be added to do-*, below.
281 # The HOST_* variables are a special case, which are used for the gcc
282 # cross-building scheme.
283 HOST_CC = $(CC_FOR_BUILD)
285 HOST_PREFIX_1 = loser-
287 'AR=$$(AR_FOR_TARGET)' \
291 'HOST_CC=$(CC_FOR_BUILD)' \
292 'HOST_PREFIX=$(HOST_PREFIX)' \
293 'HOST_PREFIX_1=$(HOST_PREFIX_1)' \
295 'RANLIB=$$(RANLIB_FOR_TARGET)' \
298 GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS)
300 # This is a list of the targets for all of the modules which are compiled
301 # using $(FLAGS_TO_PASS).
348 # This is a list of the check targets for all of the modules which are
349 # compiled using $(FLAGS_TO_PASS).
395 # This is a list of the install targets for all of the modules which are
396 # compiled using $(FLAGS_TO_PASS).
443 # This is a list of the targets for all of the modules which are compiled
444 # using $(X11_FLAGS_TO_PASS).
451 # This is a list of the check targets for all of the modules which are
452 # compiled using $(X11_FLAGS_TO_PASS).
453 CHECK_X11_MODULES = \
459 # This is a list of the install targets for all the modules which are
460 # compiled using $(X11_FLAGS_TO_PASS).
461 INSTALL_X11_MODULES = \
467 # This is a list of the targets for all of the modules which are compiled
468 # using $(TARGET_FLAGS_TO_PASS).
469 ALL_TARGET_MODULES = \
470 $(start-sanitize-chill) \
472 $(end-sanitize-chill) \
477 # This is a list of the check targets for all of the modules which are
478 # compiled using $(TARGET_FLAGS_TO_PASS).
479 CHECK_TARGET_MODULES = \
480 $(start-sanitize-chill) \
482 $(end-sanitize-chill) \
487 # This is a list of the install targets for all of the modules which are
488 # compiled using $(TARGET_FLAGS_TO_PASS).
489 INSTALL_TARGET_MODULES = \
490 $(start-sanitize-chill) \
492 $(end-sanitize-chill) \
497 # This is a shell case of all modules which are compiled using
498 # $(TARGET_FLAGS_TO_PASS), used in the do-X rule.
499 TARGET_LIBS = libg++ | newlib | xiberty
500 # start-sanitize-chill
501 TARGET_LIBS = chillrt | libg++ | newlib | xiberty
504 # The first rule in the file had better be this one. Don't put any above it.
508 # The target built for a native build.
512 $(ALL_TARGET_MODULES) \
516 # The target built for a cross build.
533 $(ALL_TARGET_MODULES)
535 # Do a target for all the subdirectories. A ``make do-X'' will do a
536 # ``make X'' in all subdirectories (because, in general, there is a
537 # dependency (below) of X upon do-X, a ``make X'' will also do this,
538 # but it may do additional work as well).
539 # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
540 # because it is so large that it can easily overflow the command line
541 # length limit on some systems.
553 @target=`echo $@ | sed -e 's/^do-//'`; \
554 rootme=`pwd`; export rootme; \
555 srcroot=`cd $(srcdir); pwd`; export srcroot; \
556 for i in $(SUBDIRS); do \
557 if [ -f ./$$i/Makefile ]; then \
560 for flag in $(EXTRA_TARGET_FLAGS); do \
561 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
565 for flag in $(EXTRA_GCC_FLAGS); do \
566 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
570 for flag in $(EXTRA_HOST_FLAGS); do \
571 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
575 export AR AS CC CXX NM RANLIB XTRAFLAGS; \
577 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
578 "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \
579 "RANLIB=$${RANLIB}" "XTRAFLAGS=$${XTRAFLAGS}" \
581 then true; else exit 1; fi; \
585 # Here are the targets which correspond to the do-X targets.
587 .PHONY: info installcheck dvi install-info
588 .PHONY: clean distclean mostlyclean realclean local-clean local-distclean
590 installcheck: do-installcheck
593 install-info: install-info-dirs do-install-info dir.info
594 if [ -f dir.info ] ; then \
595 $(INSTALL_DATA) dir.info $(infodir)/dir.info ; \
598 do-install-info: install-info-dirs
601 -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E
604 -rm -f Makefile config.status
606 clean: do-clean local-clean
607 mostlyclean: do-mostlyclean local-clean
608 distclean: do-distclean local-clean local-distclean
609 realclean: do-realclean local-clean local-distclean
614 check: $(CHECK_MODULES) \
615 $(CHECK_TARGET_MODULES) \
616 $(CHECK_X11_MODULES) \
619 # Installation targets.
621 .PHONY: install uninstall vault-install
622 install: $(INSTALL_TARGET)
625 @echo "the uninstall target is not supported in this tree"
628 @if [ -f ./release/vault-install ] ; then \
629 ./release/vault-install $(host_alias) $(target_alias) ; \
633 install.all: install-no-fixedincludes
634 @if [ -f ./gcc/Makefile ] ; then \
635 rootme=`pwd` ; export rootme ; \
637 $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
642 # install-no-fixedincludes is used because Cygnus can not distributed
643 # the fixed header files.
644 .PHONY: install-no-fixedincludes
645 install-no-fixedincludes: \
647 gcc-no-fixedincludes \
649 $(INSTALL_TARGET_MODULES) \
650 $(INSTALL_X11_MODULES)
652 # Install the gcc headers files, but not the fixed include files,
653 # which Cygnus is not allowed to distribute. This rule is very
654 # dependent on the workings of the gcc Makefile.in.
655 .PHONY: gcc-no-fixedincludes
656 gcc-no-fixedincludes:
657 @if [ -f ./gcc/Makefile ]; then \
658 rm -rf gcc/tmp-include; \
659 mv gcc/include gcc/tmp-include 2>/dev/null; \
661 cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \
662 touch gcc/stmp-fixinc; \
663 rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \
664 rootme=`pwd`; export rootme; \
665 srcroot=`cd $(srcdir); pwd` ; export srcroot; \
667 $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
668 rm -rf gcc/include; \
669 mv gcc/tmp-include gcc/include 2>/dev/null; \
672 .PHONY: install.cross
689 $(INSTALL_TARGET_MODULES)
691 # This rule is used to build the modules which use FLAGS_TO_PASS. To
692 # build a target all-X means to cd to X and make all.
693 # all-glob is handled specially because it doesn't actually build.
694 .PHONY: $(ALL_MODULES) all-glob
695 $(ALL_MODULES) all-glob:
696 @dir=`echo $@ | sed -e 's/all-//'`; \
697 if [ -f ./$${dir}/Makefile ] ; then \
698 rootme=`pwd`; export rootme; \
699 srcroot=`cd $(srcdir); pwd`; export srcroot; \
700 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
705 # This rule is used to check the modules which use FLAGS_TO_PASS. To
706 # build a target check-X means to cd to X and make all.
707 .PHONY: $(CHECK_MODULES)
709 @dir=`echo $@ | sed -e 's/check-//'`; \
710 if [ -f ./$${dir}/Makefile ] ; then \
711 rootme=`pwd`; export rootme; \
712 srcroot=`cd $(srcdir); pwd`; export srcroot; \
713 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
718 # This rule is used to install the modules which use FLAGS_TO_PASS.
719 # To build a target install-X means to cd to X and make install.
720 .PHONY: $(INSTALL_MODULES)
721 $(INSTALL_MODULES): install-dirs
722 @dir=`echo $@ | sed -e 's/install-//'`; \
723 if [ -f ./$${dir}/Makefile ] ; then \
724 rootme=`pwd`; export rootme; \
725 srcroot=`cd $(srcdir); pwd`; export srcroot; \
726 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
731 # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
732 # To build a target all-X means to cd to X and make all.
733 .PHONY: $(ALL_TARGET_MODULES)
734 $(ALL_TARGET_MODULES):
735 @dir=`echo $@ | sed -e 's/all-//'`; \
736 if [ -f ./$${dir}/Makefile ] ; then \
737 rootme=`pwd`; export rootme; \
738 srcroot=`cd $(srcdir); pwd`; export srcroot; \
739 (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) all); \
744 # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
745 # To build a target install-X means to cd to X and make install.
746 .PHONY: $(CHECK_TARGET_MODULES)
747 $(CHECK_TARGET_MODULES):
748 @dir=`echo $@ | sed -e 's/check-//'`; \
749 if [ -f ./$${dir}/Makefile ] ; then \
750 rootme=`pwd`; export rootme; \
751 srcroot=`cd $(srcdir); pwd`; export srcroot; \
752 (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) check); \
757 # This rule is used to install the modules which use
758 # TARGET_FLAGS_TO_PASS. To build a target install-X means to cd to X
760 .PHONY: $(INSTALL_TARGET_MODULES)
761 $(INSTALL_TARGET_MODULES): install-dirs
762 @dir=`echo $@ | sed -e 's/install-//'`; \
763 if [ -f ./$${dir}/Makefile ] ; then \
764 rootme=`pwd`; export rootme; \
765 srcroot=`cd $(srcdir); pwd`; export srcroot; \
766 (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) install); \
771 # This rule is used to build the modules which use X11_FLAGS_TO_PASS.
772 # To build a target all-X means to cd to X and make all.
773 .PHONY: $(ALL_X11_MODULES)
775 @dir=`echo $@ | sed -e 's/all-//'`; \
776 if [ -f ./$${dir}/Makefile ] ; then \
777 rootme=`pwd`; export rootme; \
778 srcroot=`cd $(srcdir); pwd`; export srcroot; \
780 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \
785 # This rule is used to check the modules which use X11_FLAGS_TO_PASS.
786 # To build a target check-X means to cd to X and make all.
787 .PHONY: $(CHECK_X11_MODULES)
788 $(CHECK_X11_MODULES):
789 @dir=`echo $@ | sed -e 's/check-//'`; \
790 if [ -f ./$${dir}/Makefile ] ; then \
791 rootme=`pwd`; export rootme; \
792 srcroot=`cd $(srcdir); pwd`; export srcroot; \
794 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \
799 # This rule is used to install the modules which use X11_FLAGS_TO_PASS.
800 # To build a target install-X means to cd to X and make install.
801 .PHONY: $(INSTALL_X11_MODULES)
802 $(INSTALL_X11_MODULES):
803 @dir=`echo $@ | sed -e 's/install-//'`; \
804 if [ -f ./$${dir}/Makefile ] ; then \
805 rootme=`pwd`; export rootme; \
806 srcroot=`cd $(srcdir); pwd`; export srcroot; \
808 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \
813 # gcc is the only module which uses GCC_FLAGS_TO_PASS.
816 @if [ -f ./gcc/Makefile ] ; then \
817 rootme=`pwd`; export rootme; \
818 srcroot=`cd $(srcdir); pwd`; export srcroot; \
819 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \
826 @if [ -f ./gcc/Makefile ] ; then \
827 rootme=`pwd`; export rootme; \
828 srcroot=`cd $(srcdir); pwd`; export srcroot; \
829 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \
836 @if [ -f ./gcc/Makefile ] ; then \
837 rootme=`pwd`; export rootme; \
838 srcroot=`cd $(srcdir); pwd`; export srcroot; \
839 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
844 # This is a list of inter-dependencies among modules.
847 all-binutils: all-libiberty all-opcodes all-bfd all-flex
849 # start-sanitize-chill
850 all-chillrt: all-binutils all-gas all-gcc all-newlib
854 all-diff: all-libiberty
858 all-fileutils: all-libiberty
860 all-flex: all-libiberty all-byacc
861 all-gas: all-libiberty all-opcodes all-bfd
863 all-gcc: all-libiberty all-byacc all-binutils all-gas
864 all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-glob all-byacc all-sim
866 all-gprof: all-libiberty all-bfd
868 all-gzip: all-libiberty
869 all-hello: all-libiberty
871 all-ispell: all-emacs
872 all-ld: all-libiberty all-bfd all-byacc all-flex
873 all-libg++: all-gas all-ld all-gcc all-xiberty all-newlib
875 all-m4: all-libiberty
876 all-make: all-libiberty
878 all-newlib: all-binutils all-gas all-gcc
884 all-recode: all-libiberty
888 all-sim: all-libiberty all-bfd
889 all-tar: all-libiberty
891 all-tclX: all-tcl all-tk
893 all-texinfo: all-libiberty
895 all-tgas: all-libiberty all-bfd
898 all-uudecode: all-libiberty
899 all-xiberty: all-gcc all-newlib
901 ### other supporting targets
910 @for i in $(MAKEDIRS) ; do \
911 echo Making $$i... ; \
912 parent=`echo $$i|sed -e 's@/[^/]*$$@@'`; \
913 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi ; \
914 if [ ! -d $$i ] ; then \
915 if mkdir $$i ; then \
925 .PHONY: install-info-dirs
927 if [ -d $(prefix) ] ; then true ; else mkdir $(prefix) ; fi
928 -parent=`echo $(infodir)|sed -e 's@/[^/]*$$@@'`; \
929 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
930 -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
932 dir.info: do-install-info
933 if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \
934 $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \
935 mv -f dir.info.new dir.info ; \
940 @echo "Building a full distribution of this tree isn't done"
941 @echo "via 'make dist'. Check out the etc/ subdirectory"
950 @for i in $(SUBDIRS); \
954 wd=`basename $$pwd`; \
955 for j in `$(MAKE) ls`; \
961 # with the gnu make, this is done automatically.
963 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
964 $(SHELL) ./config.status
967 # Build GDB distributions that contain BFD, Include, Libiberty, Readline, etc
969 DEVO_SUPPORT= README Makefile.in configure configure.in \
970 config.guess config.sub config move-if-change
971 ETC_SUPPORT= Makefile.in cfg-paper.texi configure.in configure.man \
972 configure.texi standards.texi make-stds.texi
973 GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline glob sim
974 GDB_SUPPORT_FILES= $(GDB_SUPPORT_DIRS)
976 .PHONY: setup-dirs-gdb gdb.tar.Z make-gdb.tar.Z
981 chmod og=u `find etc $(DEVO_SUPPORT) $(GDB_SUPPORT_FILES) -print`
983 gdb.tar.Z: setup-dirs-gdb
984 (cd gdb; $(MAKE) -f Makefile.in make-proto-gdb.dir BISON="byacc")
985 (cd gdb; $(MAKE) -f Makefile.in make-proto-testsuite.dir)
986 $(MAKE) $(MFLAGS) -f Makefile.in make-gdb.tar.Z
988 make-gdb.tar.Z: $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS) gdb texinfo/texinfo.tex
989 rm -rf proto-toplev; mkdir proto-toplev
990 ln -s ../gdb/proto-gdb.dir proto-toplev/gdb
991 (cd proto-toplev; for i in $(DEVO_SUPPORT) $(GDB_SUPPORT_DIRS); do \
994 mkdir proto-toplev/etc
995 (cd proto-toplev/etc; for i in $(ETC_SUPPORT); do \
996 ln -s ../../etc/$$i . ; \
998 # Put only one copy (four hard links) of COPYING in the tar file.
999 rm proto-toplev/bfd/COPYING
1000 ln proto-toplev/gdb/COPYING proto-toplev/bfd/COPYING
1001 rm proto-toplev/include/COPYING
1002 ln proto-toplev/gdb/COPYING proto-toplev/include/COPYING
1003 rm proto-toplev/readline/COPYING
1004 ln proto-toplev/gdb/COPYING proto-toplev/readline/COPYING
1006 # Take out texinfo and glob from configurable dirs
1007 rm proto-toplev/configure.in
1008 sed -e '/^host_tools=/s/texinfo //' \
1009 -e '/^host_libs=/s/glob //' \
1010 <configure.in >proto-toplev/configure.in
1012 # Take out texinfo from a few places; make simple BISON=bison line.
1013 rm proto-toplev/Makefile.in
1014 sed -e '/^all\.normal: /s/\all-texinfo //' \
1015 -e '/^ install-texinfo /d' \
1016 -e '/^BISON = /,/^$$/d' \
1017 -e '/^# BISON:/s/.*/BISON = bison -y/' \
1018 <Makefile.in >proto-toplev/Makefile.in
1020 mkdir proto-toplev/texinfo
1021 ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
1022 ln -s ../../texinfo/tex3patch proto-toplev/texinfo/
1023 chmod og=u `find proto-toplev -print`
1024 (VER=`sed <gdb/Makefile.in -n 's/VERSION = //p'`; \
1025 ln -s proto-toplev gdb-$$VER; \
1026 echo "==> Making gdb-$$VER.tar.Z"; \
1027 tar cfh - gdb-$$VER | $(COMPRESS) -v >gdb-$$VER.tar.Z; \
1028 echo "==> Making gdb-$$VER.tar.z"; \
1029 tar cfh - gdb-$$VER | $(GZIP) -v -9 >gdb-$$VER.tar.z)
1031 # Make the testsuite archive separately.
1032 ln -s ../../gdb/proto-testsuite.dir/testsuite proto-toplev/gdb/testsuite
1033 # Blow away the Chill test that requires a Chill compiled executable,
1034 # since GNU Chill is not yet publically available.
1035 rm -rf proto-toplev/gdb/testsuite/gdb.t31
1037 # Put a copy of COPYING in the tar file.
1038 ln proto-toplev/gdb/COPYING proto-toplev/gdb/testsuite/COPYING
1039 chmod og=u `find proto-toplev/gdb/testsuite -print`
1040 (VER=`sed <gdb/Makefile.in -n 's/VERSION = //p'`; \
1041 echo "==> Making gdb-$$VER-testsuite.tar.Z"; \
1042 tar cfh - gdb-$$VER/configure gdb-$$VER/config.guess \
1043 gdb-$$VER/config.sub gdb-$$VER/move-if-change \
1044 gdb-$$VER/gdb/testsuite | \
1045 $(COMPRESS) -v >gdb-$$VER-testsuite.tar.Z; \
1046 echo "==> Making gdb-$$VER-testsuite.tar.z"; \
1047 tar cfh - gdb-$$VER/configure gdb-$$VER/config.guess \
1048 gdb-$$VER/config.sub gdb-$$VER/move-if-change \
1049 gdb-$$VER/gdb/testsuite | \
1050 $(GZIP) -v -9 >gdb-$$VER-testsuite.tar.z)
1052 # When you use `make setup-dirs' or `make taz' you should always redefine
1054 SUPPORT_FILES = list-of-support-files-for-tool-in-question
1055 # Directories that might want `make diststuff' run.
1056 DISTSTUFFDIRS= ld gprof gdb
1060 taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex texinfo/gpl.texinfo
1063 ./configure -rm sun4
1064 chmod og=u `find etc $(DEVO_SUPPORT) $(SUPPORT_FILES) $(TOOL) -print`
1065 # Make links, and run "make diststuff" when needed.
1066 # The `echo' for setting `p' is to convert all whitespace to spaces.
1067 # Then the `case' further below should tell whether $$d is in
1069 rm -rf proto-toplev ; mkdir proto-toplev
1070 set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
1071 p=" `echo $(DISTSTUFFDIRS)` " ; \
1072 for d in $$dirs ; do \
1073 if [ -d $$d ]; then \
1076 echo making diststuff in $$d ; \
1077 (cd $$d ; $(MAKE) -f Makefile.in diststuff) || exit 1 ;; \
1079 if [ -d $$d/proto-$$d.dir ]; then \
1080 ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
1082 ln -s ../$$d proto-toplev/$$d ; \
1084 else ln -s ../$$d proto-toplev/$$d ; fi ; \
1087 mkdir proto-toplev/etc
1088 (cd proto-toplev/etc; for i in $(ETC_SUPPORT); do \
1089 ln -s ../../etc/$$i . ; \
1092 # Take out texinfo and glob from configurable dirs
1093 rm proto-toplev/configure.in
1094 sed -e '/^host_tools=/s/texinfo //' \
1095 -e '/^host_libs=/s/glob //' \
1096 <configure.in >proto-toplev/configure.in
1098 # Take out texinfo from a few places; make simple BISON=bison line.
1099 rm proto-toplev/Makefile.in
1100 sed -e '/^all\.normal: /s/\all-texinfo //' \
1101 -e '/^ install-texinfo /d' \
1102 -e '/^BISON = /,/^$$/d' \
1103 -e '/^# BISON:/s/.*/BISON = bison -y/' \
1104 <Makefile.in >proto-toplev/Makefile.in
1106 mkdir proto-toplev/texinfo
1107 ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
1108 ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/
1109 ln -s ../../texinfo/tex3patch proto-toplev/texinfo/
1110 chmod og=u `find proto-toplev -print`
1111 (VER=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \
1112 echo "==> Making $(TOOL)-$$VER.tar.z"; \
1113 ln -s proto-toplev $(TOOL)-$$VER; \
1114 tar cfh - $(TOOL)-$$VER \
1115 | $(GZIP) -v -9 >$(TOOL)-$$VER.tar.z)
1117 TEXINFO_SUPPORT= texinfo/texinfo.tex texinfo/gpl.texinfo
1118 DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT)
1121 GAS_SUPPORT_DIRS= bfd include libiberty opcodes
1122 gas.tar.z: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas
1123 $(MAKE) -f Makefile.in taz SUPPORT_FILES="$(GAS_SUPPORT_DIRS)" TOOL=gas
1125 # The FSF "binutils" release includes gprof and ld.
1126 .PHONY: binutils.tar.z
1127 BINUTILS_SUPPORT_DIRS= bfd include libiberty opcodes ld gprof
1128 binutils.tar.z: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils
1129 $(MAKE) -f Makefile.in taz SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS)" TOOL=binutils
1131 .PHONY: gas+binutils.tar.z
1132 GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof
1133 gas+binutils.tar.z: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas
1134 $(MAKE) -f Makefile.in taz SUPPORT_FILES="$(GASB_SUPPORT_DIRS)" TOOL=gas
1139 # start-sanitize-chill
1140 ## This is ugly, but I don't want GNU make to put these variables in
1141 ## the environment. Older makes will see this as a set of targets
1142 ## with no dependencies and no actions.
1143 unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
1144 # end-sanitize-chill
1146 # end of Makefile.in