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
48 INSTALL = $${srcroot}/install.sh -c
49 INSTALL_PROGRAM = $(INSTALL)
50 INSTALL_DATA = $(INSTALL) -m 644
51 INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
58 # We don't specify -g -O because many compilers don't support -g -O,
59 # and/or -O is broken in and of itself.
62 # start-sanitize-chill
63 CHILLFLAGS = $(CFLAGS)
68 # Use -O to stress test the compiler.
73 # Not plain GZIP, since gzip looks there for extra command-line options.
76 # BISON: This line sed'ed to BISON = bison -y for FSF releases, don't remove.
77 BISON = `if [ -f $$r/byacc/byacc ] ; \
78 then echo $$r/byacc/byacc ; \
82 LEX = `if [ -f $$r/flex/flex ] ; \
83 then echo $$r/flex/flex ; \
86 M4 = `if [ -f $$r/m4/m4 ] ; \
87 then echo $$r/m4/m4 ; \
90 MAKEINFO = `if [ -f $$r/texinfo/makeinfo/makeinfo ] ; \
91 then echo $$r/texinfo/makeinfo/makeinfo ; \
92 else echo makeinfo ; fi`
94 # This just becomes part of the MAKEINFO definition passed down to
95 # sub-makes. It lets flags be given on the command line while still
96 # using the makeinfo from the object tree.
99 EXPECT = `if [ -f $$r/expect/expect ] ; \
100 then echo $$r/expect/expect ; \
101 else echo expect ; fi`
103 RUNTEST = `if [ -f $${srcroot}/dejagnu/runtest ] ; \
104 then echo $${srcroot}/dejagnu/runtest ; \
105 else echo runtest ; fi`
108 # libraries that may need to be augmented on a system-by-system basis
111 # compilers to use to create programs which must be run in the build
114 CXX_FOR_BUILD = $(CXX)
116 SUBDIRS = "this is set via configure, don't edit this"
120 INSTALL_TARGET = install-dirs \
122 $(INSTALL_TARGET_MODULES) \
123 $(INSTALL_X11_MODULES) \
127 if [ -f $$r/gcc/Makefile ] ; then \
128 echo $$r/gcc/xgcc -B$$r/gcc/; \
130 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
133 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
137 # start-sanitize-chill
138 CHILL_FOR_TARGET = ` \
139 if [ -f $$r/gcc/Makefile ] ; then \
140 echo $$r/gcc/xgcc -B$$r/gcc/ -L$$r/chillrt/; \
142 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
145 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
152 if [ -f $$r/gcc/Makefile ] ; then \
153 echo $$r/gcc/xgcc -B$$r/gcc/; \
155 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
158 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
163 if [ -f $$r/gas/Makefile ] ; then \
164 echo $$r/gas/as.new ; \
166 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
169 t='$(program_transform_name)'; echo as | sed -e '' $$t ; \
174 if [ -f $$r/binutils/ar ] ; then \
175 echo $$r/binutils/ar ; \
177 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
180 t='$(program_transform_name)'; echo ar | sed -e '' $$t ; \
184 RANLIB_FOR_TARGET = ` \
185 if [ -f $$r/binutils/ranlib ] ; then \
186 echo $$r/binutils/ranlib ; \
188 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
191 t='$(program_transform_name)'; echo ranlib | sed -e '' $$t ; \
196 if [ -f $$r/binutils/Makefile ] ; then \
197 echo $$r/binutils/nm ; \
199 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
202 t='$(program_transform_name)'; echo nm | sed -e '' $$t ; \
206 # FIXME: This is badly named.
208 if [ -f $$r/gcc/Makefile ] ; then \
209 if [ -f $$r/newlib/Makefile ] ; then \
210 echo -I$$r/newlib/targ-include -I$${srcroot}/newlib/libc/include -I$$r/gcc/include -nostdinc ; \
212 echo -I$$r/gcc/include ; \
218 #### host and target specific makefile fragments come in here.
221 # Flags to pass down to all sub-makes.
222 # Please keep these in alphabetical order.
223 BASE_FLAGS_TO_PASS = \
224 "AR_FLAGS=$(AR_FLAGS)" \
225 "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
226 "AS_FOR_TARGET=$(AS_FOR_TARGET)" \
228 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
229 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
231 $(start-sanitize-chill)\
232 "CHILLFLAGS=$(CHILLFLAGS)" \
233 "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
234 "CHILL_LIB=$(CHILL_LIB)" \
235 $(end-sanitize-chill)\
236 "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
237 "CXXFLAGS=$(CXXFLAGS)" \
238 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
239 "GCC_FOR_TARGET=$(CC_FOR_TARGET)" \
240 "INSTALL=$(INSTALL)" \
241 "INSTALL_DATA=$(INSTALL_DATA)" \
242 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
243 "INSTALL_XFORM=$(INSTALL_XFORM)" \
244 "LDFLAGS=$(LDFLAGS)" \
247 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
248 "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
249 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
252 "RUNTEST=$(RUNTEST)" \
253 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
254 "XTRAFLAGS_FOR_TARGET=$(XTRAFLAGS)" \
256 "exec_prefix=$(exec_prefix)" \
260 # Flags to pass down to most sub-makes, in which we're building with
261 # the host environment.
262 # If any variables are added here, they must be added to do-*, below.
272 FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)
274 # Flags that are concerned with the location of the X11 include files
276 X11_FLAGS_TO_PASS = \
277 "X11_INCLUDE_FLAGS=$(X11_INCLUDE_FLAGS)" \
278 "X11_LIB_FLAGS=$(X11_LIB_FLAGS)" \
281 # Flags to pass down to makes which are built with the target environment.
282 # The double $ decreases the length of the command line; the variables
283 # are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them.
284 # If any variables are added here, they must be added to do-*, below.
285 EXTRA_TARGET_FLAGS = \
286 'AR=$$(AR_FOR_TARGET)' \
287 'AS=$$(AS_FOR_TARGET)' \
288 'CC=$$(CC_FOR_TARGET)' \
289 'CXX=$$(CXX_FOR_TARGET)' \
290 'NM=$$(NM_FOR_TARGET)' \
291 'RANLIB=$$(RANLIB_FOR_TARGET)' \
292 'XTRAFLAGS=$$(XTRAFLAGS_FOR_TARGET)'
294 TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)
296 # Flags to pass down to gcc. gcc builds a library, libgcc.a, so it
297 # unfortunately needs the native compiler and the target ar and
299 # If any variables are added here, they must be added to do-*, below.
300 # The HOST_* variables are a special case, which are used for the gcc
301 # cross-building scheme.
302 HOST_CC = $(CC_FOR_BUILD)
304 HOST_PREFIX_1 = loser-
306 'AR=$$(AR_FOR_TARGET)' \
310 'HOST_CC=$(CC_FOR_BUILD)' \
311 'HOST_PREFIX=$(HOST_PREFIX)' \
312 'HOST_PREFIX_1=$(HOST_PREFIX_1)' \
314 'RANLIB=$$(RANLIB_FOR_TARGET)' \
317 GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS)
319 # This is a list of the targets for all of the modules which are compiled
320 # using $(FLAGS_TO_PASS).
369 # This is a list of the check targets for all of the modules which are
370 # compiled using $(FLAGS_TO_PASS).
417 # This is a list of the install targets for all of the modules which are
418 # compiled using $(FLAGS_TO_PASS).
466 # This is a list of the targets for all of the modules which are compiled
467 # using $(X11_FLAGS_TO_PASS).
475 # This is a list of the check targets for all of the modules which are
476 # compiled using $(X11_FLAGS_TO_PASS).
477 CHECK_X11_MODULES = \
484 # This is a list of the install targets for all the modules which are
485 # compiled using $(X11_FLAGS_TO_PASS).
486 INSTALL_X11_MODULES = \
493 # This is a list of the targets for all of the modules which are compiled
494 # using $(TARGET_FLAGS_TO_PASS).
495 ALL_TARGET_MODULES = \
496 $(start-sanitize-chill) \
498 $(end-sanitize-chill) \
504 # This is a list of the check targets for all of the modules which are
505 # compiled using $(TARGET_FLAGS_TO_PASS).
506 CHECK_TARGET_MODULES = \
507 $(start-sanitize-chill) \
509 $(end-sanitize-chill) \
515 # This is a list of the install targets for all of the modules which are
516 # compiled using $(TARGET_FLAGS_TO_PASS).
517 INSTALL_TARGET_MODULES = \
518 $(start-sanitize-chill) \
520 $(end-sanitize-chill) \
526 # This is a shell case of all modules which are compiled using
527 # $(TARGET_FLAGS_TO_PASS), used in the do-X rule.
528 TARGET_LIBS = libio | libg++ | newlib | xiberty
529 # start-sanitize-chill
530 TARGET_LIBS = chillrt | libio | libg++ | newlib | xiberty
533 # The first rule in the file had better be this one. Don't put any above it.
537 # The target built for a native build.
541 $(ALL_TARGET_MODULES) \
545 # Do a target for all the subdirectories. A ``make do-X'' will do a
546 # ``make X'' in all subdirectories (because, in general, there is a
547 # dependency (below) of X upon do-X, a ``make X'' will also do this,
548 # but it may do additional work as well).
549 # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
550 # because it is so large that it can easily overflow the command line
551 # length limit on some systems.
563 @target=`echo $@ | sed -e 's/^do-//'`; \
565 srcroot=`cd $(srcdir); pwd`; export srcroot; \
566 for i in $(SUBDIRS); do \
567 if [ -f ./$$i/Makefile ]; then \
570 for flag in $(EXTRA_TARGET_FLAGS); do \
571 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
575 for flag in $(EXTRA_GCC_FLAGS); do \
576 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
580 for flag in $(EXTRA_HOST_FLAGS); do \
581 eval `echo "$$flag" | sed -e "s|^\(.*\)=\(.*\)|\1='\2'|"`; \
585 export AR AS CC CXX NM RANLIB XTRAFLAGS; \
587 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
588 "CC=$${CC}" "CXX=$${CXX}" "NM=$${NM}" \
589 "RANLIB=$${RANLIB}" "XTRAFLAGS=$${XTRAFLAGS}" \
591 then true; else exit 1; fi; \
595 # Here are the targets which correspond to the do-X targets.
597 .PHONY: info installcheck dvi install-info
598 .PHONY: clean distclean mostlyclean realclean local-clean local-distclean
600 installcheck: do-installcheck
603 install-info: do-install-info dir.info
604 srcroot=`cd $(srcdir); pwd`; export srcroot; \
605 if [ -f dir.info ] ; then \
606 $(INSTALL_DATA) dir.info $(infodir)/dir.info ; \
610 -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E
613 -rm -f Makefile config.status
615 clean: do-clean local-clean
616 mostlyclean: do-mostlyclean local-clean
617 distclean: do-distclean local-clean local-distclean
618 realclean: do-realclean local-clean local-distclean
623 check: $(CHECK_MODULES) \
624 $(CHECK_TARGET_MODULES) \
625 $(CHECK_X11_MODULES) \
628 # Installation targets.
630 .PHONY: install uninstall vault-install
631 install: $(INSTALL_TARGET)
634 @echo "the uninstall target is not supported in this tree"
637 @if [ -f ./release/vault-install ] ; then \
638 ./release/vault-install $(host_alias) $(target_alias) ; \
644 install.all: install-no-fixedincludes
645 @if [ -f ./gcc/Makefile ] ; then \
646 r=`pwd` ; export r ; \
648 $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
653 # install-no-fixedincludes is used because Cygnus can not distribute
654 # the fixed header files.
655 .PHONY: install-no-fixedincludes
656 install-no-fixedincludes: \
659 $(INSTALL_TARGET_MODULES) \
660 $(INSTALL_X11_MODULES) \
663 # Install the gcc headers files, but not the fixed include files,
664 # which Cygnus is not allowed to distribute. This rule is very
665 # dependent on the workings of the gcc Makefile.in.
666 .PHONY: gcc-no-fixedincludes
667 gcc-no-fixedincludes:
668 @if [ -f ./gcc/Makefile ]; then \
669 rm -rf gcc/tmp-include; \
670 mv gcc/include gcc/tmp-include 2>/dev/null; \
672 cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \
673 touch gcc/stmp-fixinc gcc/stmp-fixproto; \
674 rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \
676 srcroot=`cd $(srcdir); pwd` ; export srcroot; \
678 $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
679 rm -rf gcc/include; \
680 mv gcc/tmp-include gcc/include 2>/dev/null; \
683 # This rule is used to build the modules which use FLAGS_TO_PASS. To
684 # build a target all-X means to cd to X and make all.
685 # all-glob is handled specially because it doesn't actually build.
686 .PHONY: $(ALL_MODULES) all-glob
687 $(ALL_MODULES) all-glob:
688 @dir=`echo $@ | sed -e 's/all-//'`; \
689 if [ -f ./$${dir}/Makefile ] ; then \
691 srcroot=`cd $(srcdir); pwd`; export srcroot; \
692 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
697 # This rule is used to check the modules which use FLAGS_TO_PASS. To
698 # build a target check-X means to cd to X and make all.
699 .PHONY: $(CHECK_MODULES)
701 @dir=`echo $@ | sed -e 's/check-//'`; \
702 if [ -f ./$${dir}/Makefile ] ; then \
704 srcroot=`cd $(srcdir); pwd`; export srcroot; \
705 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
710 # This rule is used to install the modules which use FLAGS_TO_PASS.
711 # To build a target install-X means to cd to X and make install.
712 .PHONY: $(INSTALL_MODULES)
713 $(INSTALL_MODULES): install-dirs
714 @dir=`echo $@ | sed -e 's/install-//'`; \
715 if [ -f ./$${dir}/Makefile ] ; then \
717 srcroot=`cd $(srcdir); pwd`; export srcroot; \
718 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
723 # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
724 # To build a target all-X means to cd to X and make all.
725 .PHONY: $(ALL_TARGET_MODULES)
726 $(ALL_TARGET_MODULES):
727 @dir=`echo $@ | sed -e 's/all-//'`; \
728 if [ -f ./$${dir}/Makefile ] ; then \
730 srcroot=`cd $(srcdir); pwd`; export srcroot; \
731 (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) all); \
736 # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
737 # To build a target install-X means to cd to X and make install.
738 .PHONY: $(CHECK_TARGET_MODULES)
739 $(CHECK_TARGET_MODULES):
740 @dir=`echo $@ | sed -e 's/check-//'`; \
741 if [ -f ./$${dir}/Makefile ] ; then \
743 srcroot=`cd $(srcdir); pwd`; export srcroot; \
744 (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) check); \
749 # This rule is used to install the modules which use
750 # TARGET_FLAGS_TO_PASS. To build a target install-X means to cd to X
752 .PHONY: $(INSTALL_TARGET_MODULES)
753 $(INSTALL_TARGET_MODULES): install-dirs
754 @dir=`echo $@ | sed -e 's/install-//'`; \
755 if [ -f ./$${dir}/Makefile ] ; then \
757 srcroot=`cd $(srcdir); pwd`; export srcroot; \
758 (cd $${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) install); \
763 # This rule is used to build the modules which use X11_FLAGS_TO_PASS.
764 # To build a target all-X means to cd to X and make all.
765 .PHONY: $(ALL_X11_MODULES)
767 @dir=`echo $@ | sed -e 's/all-//'`; \
768 if [ -f ./$${dir}/Makefile ] ; then \
770 srcroot=`cd $(srcdir); pwd`; export srcroot; \
772 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \
777 # This rule is used to check the modules which use X11_FLAGS_TO_PASS.
778 # To build a target check-X means to cd to X and make all.
779 .PHONY: $(CHECK_X11_MODULES)
780 $(CHECK_X11_MODULES):
781 @dir=`echo $@ | sed -e 's/check-//'`; \
782 if [ -f ./$${dir}/Makefile ] ; then \
784 srcroot=`cd $(srcdir); pwd`; export srcroot; \
786 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \
791 # This rule is used to install the modules which use X11_FLAGS_TO_PASS.
792 # To build a target install-X means to cd to X and make install.
793 .PHONY: $(INSTALL_X11_MODULES)
794 $(INSTALL_X11_MODULES):
795 @dir=`echo $@ | sed -e 's/install-//'`; \
796 if [ -f ./$${dir}/Makefile ] ; then \
798 srcroot=`cd $(srcdir); pwd`; export srcroot; \
800 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \
805 # gcc is the only module which uses GCC_FLAGS_TO_PASS.
808 @if [ -f ./gcc/Makefile ] ; then \
810 srcroot=`cd $(srcdir); pwd`; export srcroot; \
811 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \
818 @if [ -f ./gcc/Makefile ] ; then \
820 srcroot=`cd $(srcdir); pwd`; export srcroot; \
821 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \
828 @if [ -f ./gcc/Makefile ] ; then \
830 srcroot=`cd $(srcdir); pwd`; export srcroot; \
831 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
836 # This is a list of inter-dependencies among modules.
839 all-binutils: all-libiberty all-opcodes all-bfd all-flex
841 # start-sanitize-chill
842 all-chillrt: all-binutils all-gas all-gcc all-newlib
846 all-diff: all-libiberty
849 all-expect: all-tcl all-tk
850 all-fileutils: all-libiberty
852 all-flex: all-libiberty all-byacc
853 all-gas: all-libiberty all-opcodes all-bfd
856 all-gcc: all-libiberty all-byacc all-binutils all-gas all-pagas
857 all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-glob all-byacc all-sim
859 all-gprof: all-libiberty all-bfd
860 all-grep: all-libiberty
861 all-gzip: all-libiberty
862 all-hello: all-libiberty
864 all-ispell: all-emacs
865 all-ld: all-libiberty all-bfd all-byacc all-flex
866 all-libg++: all-gas all-pagas all-ld all-gcc all-xiberty all-newlib all-libio
867 all-libio: all-gas all-pagas all-ld all-gcc all-xiberty all-newlib
869 all-m4: all-libiberty
870 all-make: all-libiberty
872 all-newlib: all-binutils all-gas all-pagas all-gcc
875 all-prms: all-libiberty
878 all-recode: all-libiberty
879 all-sed: all-libiberty
880 all-send-pr: all-prms
882 all-sim: all-libiberty all-bfd
883 all-tar: all-libiberty
885 all-tclX: all-tcl all-tk
887 all-texinfo: all-libiberty
889 all-tgas: all-libiberty all-bfd
892 all-uudecode: all-libiberty
893 all-xiberty: all-gcc all-newlib
895 ### other supporting targets
904 @for i in $(MAKEDIRS) ; do \
905 echo Making $$i... ; \
906 parent=`echo $$i | sed -e 's@/[^/]*$$@@' | sed -e 's@^$$@/@'`; \
907 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi ; \
908 if [ ! -d $$i ] ; then \
909 if mkdir $$i ; then \
920 dir.info: do-install-info
921 if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \
922 $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \
923 mv -f dir.info.new dir.info ; \
928 @echo "Building a full distribution of this tree isn't done"
929 @echo "via 'make dist'. Check out the etc/ subdirectory"
938 @for i in $(SUBDIRS); \
942 wd=`basename $$pwd`; \
943 for j in `$(MAKE) ls`; \
949 # with the gnu make, this is done automatically.
951 Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag)
952 $(SHELL) ./config.status
955 # Support for building net releases
957 # Files in devo used in any net release.
958 # ChangeLog omitted because it may refer to files which are not in this
959 # distribution (perhaps it would be better to include it anyway).
960 DEVO_SUPPORT= README Makefile.in configure configure.in \
961 config.guess config.sub config move-if-change \
962 COPYING COPYING.LIB install.sh
964 # Files in devo/etc used in any net release.
965 # ChangeLog omitted because it may refer to files which are not in this
966 # distribution (perhaps it would be better to include it anyway).
967 ETC_SUPPORT= Makefile.in cfg-paper.texi configure.in configure.man \
968 configure.texi standards.texi make-stds.texi
970 GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline glob sim
971 GDB_SUPPORT_FILES= $(GDB_SUPPORT_DIRS)
973 .PHONY: setup-dirs-gdb gdb.tar.gz make-gdb.tar.gz
975 $(start-sanitize-Sanitize)
976 @if [ -f .Sanitize ] ; then echo "RUN Sanitize FIRST!" ; false ; fi ;
977 $(end-sanitize-Sanitize)
981 chmod og=u `find etc $(DEVO_SUPPORT) $(GDB_SUPPORT_FILES) -print`
983 gdb.tar.gz: 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.gz
988 make-gdb.tar.gz: $(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 # Change the bug reporting address in configure to bug-gdb
1007 rm proto-toplev/configure
1008 sed -e 's/configure@cygnus.com/bug-gdb@prep.ai.mit.edu/' \
1009 <configure >proto-toplev/configure
1010 chmod a+x proto-toplev/configure
1012 # Take out texinfo and glob from configurable dirs
1013 rm proto-toplev/configure.in
1014 sed -e '/^host_tools=/s/texinfo //' \
1015 -e '/^host_libs=/s/glob //' \
1016 <configure.in >proto-toplev/configure.in
1018 # Take out texinfo from a few places; make simple BISON=bison line.
1019 rm proto-toplev/Makefile.in
1020 sed -e '/^all\.normal: /s/\all-texinfo //' \
1021 -e '/^ install-texinfo /d' \
1022 -e '/^BISON = /,/^$$/d' \
1023 -e '/^# BISON:/s/.*/BISON = bison -y/' \
1024 <Makefile.in >proto-toplev/Makefile.in
1026 mkdir proto-toplev/texinfo
1027 ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
1028 ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/
1029 ln -s ../../texinfo/tex3patch proto-toplev/texinfo/
1030 chmod og=u `find proto-toplev -print`
1031 (VER=`sed <gdb/Makefile.in -n 's/VERSION = //p'`; \
1032 echo "==> Making gdb-$$VER.tar.gz"; \
1033 rm -f gdb-$$VER; ln -s proto-toplev gdb-$$VER; \
1034 tar cfh - gdb-$$VER \
1035 | $(GZIPPROG) -v -9 >gdb-$$VER.tar.gz)
1037 # Make the testsuite archive separately.
1038 ln -s ../../gdb/proto-testsuite.dir/testsuite proto-toplev/gdb/testsuite
1039 # Blow away the Chill test that requires a Chill compiled executable,
1040 # since GNU Chill is not yet publically available.
1041 rm -rf proto-toplev/gdb/testsuite/gdb.t31
1043 # Put a copy of COPYING in the tar file.
1044 ln proto-toplev/gdb/COPYING proto-toplev/gdb/testsuite/COPYING
1045 chmod og=u `find proto-toplev/gdb/testsuite -print`
1046 (VER=`sed <gdb/Makefile.in -n 's/VERSION = //p'`; \
1047 echo "==> Making gdb-$$VER-testsuite.tar.gz"; \
1048 tar cfh - gdb-$$VER/configure gdb-$$VER/config.guess \
1049 gdb-$$VER/config.sub gdb-$$VER/move-if-change \
1050 gdb-$$VER/gdb/testsuite \
1051 | $(GZIPPROG) -v -9 >gdb-$$VER-testsuite.tar.gz)
1053 # When you use `make setup-dirs' or `make taz' you should always redefine
1055 SUPPORT_FILES = list-of-support-files-for-tool-in-question
1056 # Directories that might want `make diststuff' run.
1057 DISTSTUFFDIRS= ld gprof gdb libg++ binutils gnats
1058 # Files where "byacc" (Cygnus version) should be changed to "bison -y" (FSF).
1059 DISTBISONFILES= binutils/Makefile.in gas/Makefile.in gdb/Makefile.in
1060 # Directories where "info" should be built.
1061 DISTDOCDIRS= ld gprof binutils gas bfd libg++ libio gdb gnats send-pr
1065 taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \
1066 texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1067 # Make sure "diststuff" files get built properly.
1068 for f in $(DISTBISONFILES) ; do \
1069 if [ -r $$f ]; then \
1070 sed '/^BISON *=.*$$/s/.*/BISON = bison -y/' <$$f >tmp ; \
1074 # Take out texinfo from a few places; make simple BISON=bison line.
1075 sed -e '/^all\.normal: /s/\all-texinfo //' \
1076 -e '/^ install-texinfo /d' \
1077 -e '/^BISON = /,/^$$/d' \
1078 -e '/^# BISON:/s/.*/BISON = bison -y/' \
1080 mv -f tmp Makefile.in
1083 # Doc files don't change; include them in distribution.
1084 for f in $(DISTDOCDIRS) ; do \
1085 if [ -r $$f/Makefile ]; then \
1086 (cd $$f ; $(MAKE) info) || exit 1 ; \
1089 # Make links, and run "make diststuff" when needed.
1090 # The `echo' for setting `p' is to convert all whitespace to spaces.
1091 # Then the `case' further below should tell whether $$d is in
1093 rm -rf proto-toplev ; mkdir proto-toplev
1094 set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
1095 p=" `echo $(DISTSTUFFDIRS)` " ; \
1096 for d in $$dirs ; do \
1097 if [ -d $$d ]; then \
1100 echo making diststuff in $$d ; \
1101 (cd $$d ; pwd ; $(MAKE) diststuff ) || exit 1 ;; \
1103 if [ -d $$d/proto-$$d.dir ]; then \
1104 ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
1106 ln -s ../$$d proto-toplev/$$d ; \
1108 else ln -s ../$$d proto-toplev/$$d ; fi ; \
1112 mkdir proto-toplev/etc
1113 (cd proto-toplev/etc; for i in $(ETC_SUPPORT); do \
1114 ln -s ../../etc/$$i . ; \
1117 # Take out texinfo and glob from configurable dirs
1118 rm proto-toplev/configure.in
1119 sed -e '/^host_tools=/s/texinfo //' \
1120 -e '/^host_libs=/s/glob //' \
1121 <configure.in >proto-toplev/configure.in
1123 mkdir proto-toplev/texinfo
1124 ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
1125 ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/
1126 ln -s ../../texinfo/lgpl.texinfo proto-toplev/texinfo/
1127 ln -s ../../texinfo/tex3patch proto-toplev/texinfo/
1128 chmod og=u `find . -print`
1129 (VER=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \
1130 echo "==> Making $(TOOL)-$$VER.tar.gz"; \
1131 rm -f $(TOOL)-$$VER; ln -s proto-toplev $(TOOL)-$$VER; \
1132 tar cfh - $(TOOL)-$$VER \
1133 | $(GZIPPROG) -v -9 >$(TOOL)-$$VER.tar.gz )
1135 TEXINFO_SUPPORT= texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1136 DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT)
1139 GAS_SUPPORT_DIRS= bfd include libiberty opcodes
1140 gas.tar.gz: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas
1141 $(MAKE) -f Makefile.in taz TOOL=gas \
1142 SUPPORT_FILES="$(GAS_SUPPORT_DIRS)"
1144 # The FSF "binutils" release includes gprof and ld.
1145 .PHONY: binutils.tar.gz
1146 BINUTILS_SUPPORT_DIRS= bfd include libiberty opcodes ld gprof
1147 binutils.tar.gz: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils
1148 $(MAKE) -f Makefile.in taz TOOL=binutils \
1149 SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS)"
1151 .PHONY: gas+binutils.tar.gz
1152 GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof
1153 gas+binutils.tar.gz: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas
1154 $(MAKE) -f Makefile.in taz TOOL=gas \
1155 SUPPORT_FILES="$(GASB_SUPPORT_DIRS)"
1157 .PHONY: libg++.tar.gz
1158 LIBGXX_SUPPORT_DIRS=include libio libiberty xiberty
1159 libg++.tar.gz: $(DIST_SUPPORT) libg++
1160 $(MAKE) -f Makefile.in taz TOOL=libg++ \
1161 SUPPORT_FILES="$(LIBGXX_SUPPORT_DIRS)"
1163 GNATS_SUPPORT_DIRS=include libiberty send-pr
1164 gnats.tar.gz: $(DIST_SUPPORT) $(GNATS_SUPPORT_DIRS) gnats
1165 $(MAKE) -f Makefile.in taz TOOL=gnats \
1166 SUPPORT_FILES="$(GNATS_SUPPORT_DIRS)"
1171 # start-sanitize-chill
1172 ## This is ugly, but I don't want GNU make to put these variables in
1173 ## the environment. Older makes will see this as a set of targets
1174 ## with no dependencies and no actions.
1175 unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
1176 # end-sanitize-chill
1178 # end of Makefile.in