2 # Makefile for directory with subdirs to build.
3 # Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 1997 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_PROGRAM_ARGS is changed by configure.in to use -x for a
50 INSTALL_PROGRAM_ARGS
=
52 INSTALL
= $(SHELL
) $$s/install-sh
-c
53 INSTALL_PROGRAM
= $(INSTALL
) $(INSTALL_PROGRAM_ARGS
)
54 INSTALL_SCRIPT
= $(INSTALL
)
55 INSTALL_DATA
= $(INSTALL
) -m
644
57 INSTALL_DOSREL
= install-dosrel-fake
64 # Special variables passed down in EXTRA_GCC_FLAGS. They are defined
65 # here so that they can be overridden by Makefile fragments.
66 HOST_CC
= $(CC_FOR_BUILD
)
68 HOST_PREFIX_1
= loser-
70 # These flag values are normally overridden by the configure script.
75 CFLAGS_FOR_TARGET
= $(CFLAGS
)
77 LIBCFLAGS_FOR_TARGET
= $(CFLAGS_FOR_TARGET
)
83 # Use -O2 to stress test the compiler.
84 LIBCXXFLAGS
= $(CXXFLAGS
) -fno-implicit-templates
85 CXXFLAGS_FOR_TARGET
= $(CXXFLAGS
)
86 LIBCXXFLAGS_FOR_TARGET
= $(CXXFLAGS_FOR_TARGET
) -fno-implicit-templates
97 # Not plain GZIP, since gzip looks there for extra command-line options.
100 # These values are substituted by configure.
104 BISON
= `if [ -f $$r/bison/bison ] ; then \
105 echo $$r/bison/bison -L $$s/bison/ ; \
110 YACC
= `if [ -f $$r/bison/bison ] ; then \
111 echo $$r/bison/bison -y -L $$s/bison/ ; \
112 elif [ -f $$r/byacc/byacc ] ; then \
113 echo $$r/byacc/byacc ; \
115 echo ${DEFAULT_YACC} ; \
118 LEX
= `if [ -f $$r/flex/flex ] ; \
119 then echo $$r/flex/flex ; \
120 else echo ${DEFAULT_LEX} ; fi`
122 M4
= `if [ -f $$r/m4/m4 ] ; \
123 then echo $$r/m4/m4 ; \
126 MAKEINFO
= `if [ -f $$r/texinfo/makeinfo/Makefile ] ; \
127 then echo $$r/texinfo/makeinfo/makeinfo ; \
128 else echo makeinfo ; fi`
130 # This just becomes part of the MAKEINFO definition passed down to
131 # sub-makes. It lets flags be given on the command line while still
132 # using the makeinfo from the object tree.
135 EXPECT
= `if [ -f $$r/expect/expect ] ; \
136 then echo $$r/expect/expect ; \
137 else echo expect ; fi`
139 RUNTEST
= `if [ -f $$s/dejagnu/runtest ] ; \
140 then echo $$s/dejagnu/runtest ; \
141 else echo runtest ; fi`
144 # compilers to use to create programs which must be run in the build
147 CXX_FOR_BUILD
= $(CXX
)
149 SUBDIRS
= "this is set via configure, don't edit this"
152 # This is set by the configure script to the list of directories which
153 # should be built using the target tools.
154 TARGET_CONFIGDIRS
= libiberty libgloss newlib libio librx libstdc
++ libg
++ winsup
156 # Target libraries are put under this directory:
157 # Changed by configure to $(target_alias) if cross.
160 # This is set by the configure script to the arguments passed to configure.
163 # This is set by configure to REALLY_SET_LIB_PATH if --enable-shared
167 # This is the name of the environment variable used for the path to
168 # the libraries. This may be changed by configure.in.
169 RPATH_ENVVAR
= LD_LIBRARY_PATH
171 # configure.in sets SET_LIB_PATH to this if --enable-shared was used.
172 REALLY_SET_LIB_PATH
= \
173 $(RPATH_ENVVAR
)=$$r/bfd
:$$r/opcodes
:$$$(RPATH_ENVVAR
); \
174 export $(RPATH_ENVVAR
);
177 INSTALL_TARGET
= installdirs \
180 $(INSTALL_TARGET_MODULES
) \
181 $(INSTALL_X11_MODULES
) \
184 INSTALL_TARGET_CROSS
= installdirs \
187 $(INSTALL_TARGET_MODULES
) \
188 $(INSTALL_X11_MODULES
) \
192 if [ -f $$r/gcc/xgcc ] ; then \
193 if [ -f $$r/$(TARGET_SUBDIR)/newlib/Makefile ] ; then \
194 if [ -f $$r/$(TARGET_SUBDIR)/winsup/Makefile ] ; then \
195 echo $$r/gcc/xgcc -B$$r/gcc/ -B$$r/newlib/ -L$$r/$(TARGET_SUBDIR)/winsup -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \
197 echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \
200 echo $$r/gcc/xgcc -B$$r/gcc/; \
203 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
206 t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \
210 # If CC_FOR_TARGET is not overriden on the command line, then this
211 # variable is passed down to the gcc Makefile, where it is used to
212 # build libgcc2.a. We define it here so that it can itself be
213 # overridden on the command line.
214 GCC_FOR_TARGET
= $$r/gcc
/xgcc
-B
$$r/gcc
/
218 if [ -f $$r/gcc/xgcc ] ; then \
219 if [ -f $$r/$(TARGET_SUBDIR)/newlib/Makefile ] ; then \
220 if [ -f $$r/$(TARGET_SUBDIR)/winsup/Makefile ] ; then \
221 echo $$r/gcc/xgcc -B$$r/gcc/ -B$$r/newlib/ -L$$r/winsup -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \
223 echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \
226 echo $$r/gcc/xgcc -B$$r/gcc/; \
229 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
232 t='$(program_transform_name)'; echo c++ | sed -e 's/x/x/' $$t; \
237 if [ -f $$r/gas/as-new ] ; then \
238 echo $$r/gas/as-new ; \
240 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
243 t='$(program_transform_name)'; echo as | sed -e 's/x/x/' $$t ; \
248 if [ -f $$r/ld/ld-new ] ; then \
249 echo $$r/ld/ld-new ; \
251 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
254 t='$(program_transform_name)'; echo ld | sed -e 's/x/x/' $$t ; \
258 DLLTOOL_FOR_TARGET
= ` \
259 if [ -f $$r/binutils/dlltool ] ; then \
260 echo $$r/binutils/dlltool ; \
262 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
265 t='$(program_transform_name)'; echo dlltool | sed -e 's/x/x/' $$t ; \
269 WINDRES_FOR_TARGET
= ` \
270 if [ -f $$r/binutils/windres ] ; then \
271 echo $$r/binutils/windres ; \
273 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
276 t='$(program_transform_name)'; echo windres | sed -e 's/x/x/' $$t ; \
281 if [ -f $$r/binutils/ar ] ; then \
282 echo $$r/binutils/ar ; \
284 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
287 t='$(program_transform_name)'; echo ar | sed -e 's/x/x/' $$t ; \
291 RANLIB_FOR_TARGET
= ` \
292 if [ -f $$r/binutils/ranlib ] ; then \
293 echo $$r/binutils/ranlib ; \
295 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
298 t='$(program_transform_name)'; echo ranlib | sed -e 's/x/x/' $$t ; \
303 if [ -f $$r/binutils/nm-new ] ; then \
304 echo $$r/binutils/nm-new ; \
306 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
309 t='$(program_transform_name)'; echo nm | sed -e 's/x/x/' $$t ; \
313 #### host and target specific makefile fragments come in here.
316 # Flags to pass down to all sub-makes.
317 # Please keep these in alphabetical order.
318 BASE_FLAGS_TO_PASS
= \
319 "AR_FLAGS=$(AR_FLAGS)" \
320 "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
321 "AS_FOR_TARGET=$(AS_FOR_TARGET)" \
323 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
324 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
326 "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
327 "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
328 "CXXFLAGS=$(CXXFLAGS)" \
329 "CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \
330 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
331 "DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \
332 "INSTALL=$(INSTALL)" \
333 "INSTALL_DATA=$(INSTALL_DATA)" \
334 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
335 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
336 "LDFLAGS=$(LDFLAGS)" \
338 "LD_FOR_TARGET=$(LD_FOR_TARGET)" \
339 "LIBCFLAGS=$(LIBCFLAGS)" \
340 "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
341 "LIBCXXFLAGS=$(LIBCXXFLAGS)" \
342 "LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \
345 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
346 "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
347 "PICFLAG=$(PICFLAG)" \
348 "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
349 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
352 "RUNTEST=$(RUNTEST)" \
353 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
354 "WINDRES_FOR_TARGET=$(WINDRES_FOR_TARGET)" \
356 "exec_prefix=$(exec_prefix)" \
360 # Flags to pass down to most sub-makes, in which we're building with
361 # the host environment.
362 # If any variables are added here, they must be added to do-*, below.
368 'DLLTOOL=$(DLLTOOL)' \
374 FLAGS_TO_PASS
= $(BASE_FLAGS_TO_PASS
) $(EXTRA_HOST_FLAGS
)
376 # Flags that are concerned with the location of the X11 include files
379 # NOTE: until the top-level is getting the values via autoconf, it only
380 # causes problems to have this top-level Makefile overriding the autoconf-set
381 # values in child directories. Only variables that don't conflict with
382 # autoconf'ed ones should be passed by X11_FLAGS_TO_PASS for now.
384 X11_FLAGS_TO_PASS
= \
385 'X11_EXTRA_CFLAGS=$(X11_EXTRA_CFLAGS)' \
386 'X11_EXTRA_LIBS=$(X11_EXTRA_LIBS)'
388 # Flags to pass down to makes which are built with the target environment.
389 # The double $ decreases the length of the command line; the variables
390 # are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them.
391 # If any variables are added here, they must be added to do-*, below.
392 EXTRA_TARGET_FLAGS
= \
393 'AR=$$(AR_FOR_TARGET)' \
394 'AS=$$(AS_FOR_TARGET)' \
395 'CC=$$(CC_FOR_TARGET)' \
396 'CFLAGS=$$(CFLAGS_FOR_TARGET)' \
397 'CXX=$$(CXX_FOR_TARGET)' \
398 'CXXFLAGS=$$(CXXFLAGS_FOR_TARGET)' \
399 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
400 'LD=$$(LD_FOR_TARGET)' \
401 'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET)' \
402 'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET)' \
403 'NM=$$(NM_FOR_TARGET)' \
404 'PICFLAG=$$(PICFLAG_FOR_TARGET)' \
405 'RANLIB=$$(RANLIB_FOR_TARGET)' \
406 'WINDRES=$$(WINDRES_FOR_TARGET)'
408 TARGET_FLAGS_TO_PASS
= $(BASE_FLAGS_TO_PASS
) $(EXTRA_TARGET_FLAGS
)
410 # Flags to pass down to gcc. gcc builds a library, libgcc.a, so it
411 # unfortunately needs the native compiler and the target ar and
413 # If any variables are added here, they must be added to do-*, below.
414 # The HOST_* variables are a special case, which are used for the gcc
415 # cross-building scheme.
417 'AR=$$(AR_FOR_TARGET)' \
421 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
422 'HOST_CC=$(CC_FOR_BUILD)' \
423 'HOST_PREFIX=$(HOST_PREFIX)' \
424 'HOST_PREFIX_1=$(HOST_PREFIX_1)' \
426 'RANLIB=$$(RANLIB_FOR_TARGET)' \
427 'WINDRES=$$(WINDRES_FOR_TARGET)' \
428 "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
429 "`if test x'$(LANGUAGES)' != x; then echo 'LANGUAGES=$(LANGUAGES)'; else echo 'XFOO=bar'; fi`" \
430 "`if test x'$(STMP_FIXPROTO)' != x; then echo 'STMP_FIXPROTO=$(STMP_FIXPROTO)'; else echo 'XFOO=bar'; fi`" \
431 "`if test x'$(LIMITS_H_TEST)' != x; then echo 'LIMITS_H_TEST=$(LIMITS_H_TEST)'; else echo 'XFOO=bar'; fi`" \
432 "`if test x'$(LIBGCC1_TEST)' != x; then echo 'LIBGCC1_TEST=$(LIBGCC1_TEST)'; else echo 'XFOO=bar'; fi`" \
433 "`if test x'$(LIBGCC2_CFLAGS)' != x; then echo 'LIBGCC2_CFLAGS=$(LIBGCC2_CFLAGS)'; else echo 'XFOO=bar'; fi`" \
434 "`if test x'$(LIBGCC2_DEBUG_CFLAGS)' != x; then echo 'LIBGCC2_DEBUG_CFLAGS=$(LIBGCC2_DEBUG_CFLAGS)'; else echo 'XFOO=bar'; fi`" \
435 "`if test x'$(LIBGCC2_INCLUDES)' != x; then echo 'LIBGCC2_INCLUDES=$(LIBGCC2_INCLUDES)'; else echo 'XFOO=bar'; fi`" \
436 "`if test x'$(ENQUIRE)' != x; then echo 'ENQUIRE=$(ENQUIRE)'; else echo 'XFOO=bar'; fi`" \
437 "`if test x'$(BOOT_CFLAGS)' != x; then echo 'BOOT_CFLAGS=$(BOOT_CFLAGS)'; else echo 'XFOO=bar'; fi`"
439 GCC_FLAGS_TO_PASS
= $(BASE_FLAGS_TO_PASS
) $(EXTRA_GCC_FLAGS
)
441 # This is a list of the targets for all of the modules which are compiled
442 # using $(FLAGS_TO_PASS).
501 # This is a list of the check targets for all of the modules which are
502 # compiled using $(FLAGS_TO_PASS).
504 # The list is in two parts. The first lists those tools which
505 # are tested as part of the host's native tool-chain, and not
506 # tested in a cross configuration.
507 NATIVE_CHECK_MODULES
= \
512 CROSS_CHECK_MODULES
= \
564 CHECK_MODULES
=$(NATIVE_CHECK_MODULES
) $(CROSS_CHECK_MODULES
)
566 # This is a list of the install targets for all of the modules which are
567 # compiled using $(FLAGS_TO_PASS).
568 # We put install-opcodes before install-binutils because the installed
569 # binutils might be on PATH, and they might need the shared opcodes
628 # This is a list of the targets for all of the modules which are compiled
629 # using $(X11_FLAGS_TO_PASS).
641 # This is a list of the check targets for all of the modules which are
642 # compiled using $(X11_FLAGS_TO_PASS).
643 CHECK_X11_MODULES
= \
653 # This is a list of the install targets for all the modules which are
654 # compiled using $(X11_FLAGS_TO_PASS).
655 INSTALL_X11_MODULES
= \
666 # This is a list of the targets for all of the modules which are compiled
667 # using $(TARGET_FLAGS_TO_PASS).
668 ALL_TARGET_MODULES
= \
670 all-target-libstdc
++ \
675 all-target-libgloss \
676 all-target-libiberty \
680 # This is a list of the configure targets for all of the modules which
681 # are compiled using the target tools.
682 CONFIGURE_TARGET_MODULES
= \
683 configure-target-libio \
684 configure-target-libstdc
++ \
685 configure-target-librx \
686 configure-target-libg
++ \
687 configure-target-newlib \
688 configure-target-winsup \
689 configure-target-libgloss \
690 configure-target-libiberty \
691 configure-target-gperf \
692 configure-target-examples
694 # This is a list of the check targets for all of the modules which are
695 # compiled using $(TARGET_FLAGS_TO_PASS).
696 CHECK_TARGET_MODULES
= \
698 check-target-libstdc
++ \
699 check-target-libg
++ \
700 check-target-newlib \
701 check-target-winsup \
702 check-target-libiberty \
705 # This is a list of the install targets for all of the modules which are
706 # compiled using $(TARGET_FLAGS_TO_PASS).
707 INSTALL_TARGET_MODULES
= \
708 install-target-libio \
709 install-target-libstdc
++ \
710 install-target-libg
++ \
711 install-target-newlib \
712 install-target-winsup \
713 install-target-libgloss \
714 install-target-libiberty \
717 # This is a list of the targets for which we can do a clean-{target}.
776 # All of the target modules that can be cleaned
777 CLEAN_TARGET_MODULES
= \
779 clean-target-libstdc
++ \
781 clean-target-libg
++ \
782 clean-target-newlib \
783 clean-target-winsup \
784 clean-target-libgloss \
785 clean-target-libiberty \
787 clean-target-examples
789 # All of the x11 modules that can be cleaned
790 CLEAN_X11_MODULES
= \
801 # The first rule in the file had better be this one. Don't put any above it.
805 # The target built for a native build.
810 $(ALL_TARGET_MODULES
) \
813 # Do a target for all the subdirectories. A ``make do-X'' will do a
814 # ``make X'' in all subdirectories (because, in general, there is a
815 # dependency (below) of X upon do-X, a ``make X'' will also do this,
816 # but it may do additional work as well).
817 # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
818 # because it is so large that it can easily overflow the command line
819 # length limit on some systems.
828 do-maintainer-clean \
832 @target
=`echo $@ | sed -e 's/^do-//'`; \
834 s
=`cd $(srcdir); pwd`; export s
; \
836 for i in
$(SUBDIRS
) -dummy-
; do \
837 if
[ -f .
/$$i/Makefile
]; then \
840 for flag in
$(EXTRA_GCC_FLAGS
); do \
841 eval
`echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
845 for flag in
$(EXTRA_HOST_FLAGS
); do \
846 eval
`echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
850 export AR AS CC CXX LD NM RANLIB DLLTOOL WINDRES
; \
852 $(MAKE
) $(BASE_FLAGS_TO_PASS
) "AR=$${AR}" "AS=$${AS}" \
853 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
854 "RANLIB=$${RANLIB}" \
855 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
857 then true
; else exit
1; fi
; \
860 @target
=`echo $@ | sed -e 's/^do-//'`; \
862 s
=`cd $(srcdir); pwd`; export s
; \
864 for i in
$(TARGET_CONFIGDIRS
) -dummy-
; do \
865 if
[ -f
$(TARGET_SUBDIR
)/$$i/Makefile
]; then \
866 for flag in
$(EXTRA_TARGET_FLAGS
); do \
867 eval
`echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
869 export AR AS CC CXX LD NM RANLIB DLLTOOL WINDRES
; \
870 if
(cd
$(TARGET_SUBDIR
)/$$i; \
871 $(MAKE
) $(BASE_FLAGS_TO_PASS
) "AR=$${AR}" "AS=$${AS}" \
872 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
873 "RANLIB=$${RANLIB}" \
874 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
876 then true
; else exit
1; fi
; \
880 # Here are the targets which correspond to the do-X targets.
882 .PHONY
: info installcheck dvi install-info
883 .PHONY
: clean distclean mostlyclean maintainer-clean
realclean
884 .PHONY
: local-clean local-distclean local-maintainer-clean
886 installcheck: do-installcheck
889 # Make sure makeinfo is built before we do a `make info'.
892 install-info
: do-install-info
dir.
info
893 s
=`cd $(srcdir); pwd`; export s
; \
894 if
[ -f
dir.
info ] ; then \
895 $(INSTALL_DATA
) dir.
info $(infodir)/dir.
info ; \
899 -rm -f
*.a TEMP errs core
*.o
*~ \
#* TAGS *.E
902 -rm -f Makefile config.status config.cache mh-frag mt-frag
903 -if
[ "$(TARGET_SUBDIR)" != "." ]; then \
904 rm -rf
$(TARGET_SUBDIR
); \
907 local-maintainer-clean
:
908 @echo
"This command is intended for maintainers to use;"
909 @echo
"it deletes files that may require special tools to rebuild."
911 clean: do-clean local-clean
912 mostlyclean: do-mostlyclean local-clean
913 distclean: do-distclean local-clean local-distclean
914 maintainer-clean
: local-maintainer-clean do-maintainer-clean local-clean
915 maintainer-clean
: local-distclean
916 realclean: maintainer-clean
918 # This rule is used to clean specific modules.
919 .PHONY
: $(CLEAN_MODULES
) $(CLEAN_X11_MODULES
) clean-gcc
920 $(CLEAN_MODULES
) $(CLEAN_X11_MODULES
) clean-gcc
:
921 @
dir=`echo $@ | sed -e 's/clean-//'`; \
922 if
[ -f .
/$${dir}/Makefile
] ; then \
924 s
=`cd $(srcdir); pwd`; export s
; \
926 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) clean); \
931 .PHONY
: $(CLEAN_TARGET_MODULES
)
932 $(CLEAN_TARGET_MODULES
):
933 @
dir=`echo $@ | sed -e 's/clean-target-//'`; \
934 rm -f
$(TARGET_SUBDIR
)/$${dir}/multilib.out
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
; \
935 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
937 s
=`cd $(srcdir); pwd`; export s
; \
939 (cd
$(TARGET_SUBDIR
)/$${dir}; $(MAKE
) $(TARGET_FLAGS_TO_PASS
) clean); \
944 clean-target
: $(CLEAN_TARGET_MODULES
)
949 check: $(CHECK_MODULES
) \
950 $(CHECK_TARGET_MODULES
) \
951 $(CHECK_X11_MODULES
) \
954 # Installation targets.
956 .PHONY
: install install-cross
uninstall source-vault binary-vault vault-install
957 install: $(INSTALL_TARGET
)
958 install-cross
: $(INSTALL_TARGET_CROSS
)
961 @echo
"the uninstall target is not supported in this tree"
964 $(MAKE
) -f .
/release
/Build-A-Release \
965 host
=$(host_alias
) source-vault
968 $(MAKE
) -f .
/release
/Build-A-Release \
969 host
=$(host_alias
) target
=$(target_alias
)
972 @if
[ -f .
/release
/vault-install
] ; then \
973 .
/release
/vault-install
$(host_alias
) $(target_alias
) ; \
979 install.
all: install-no-fixedincludes
980 @if
[ -f .
/gcc
/Makefile
] ; then \
981 r
=`pwd` ; export r
; \
984 $(MAKE
) $(FLAGS_TO_PASS
) install-headers
) ; \
989 # inet-install is used because the I*Net wants DejaGNU installed but
990 # not built. Similarly, gzip is built but not installed.
992 $(MAKE
) INSTALL_MODULES
="`echo $(INSTALL_MODULES) | sed -e 's/install-dejagnu//' -e 's/install-gzip//'`" install
994 # install-no-fixedincludes is used because Cygnus can not distribute
995 # the fixed header files.
996 .PHONY
: install-no-fixedincludes
997 install-no-fixedincludes
: \
1000 $(INSTALL_TARGET_MODULES
) \
1001 $(INSTALL_X11_MODULES
) \
1002 gcc-no-fixedincludes
1004 # Install the gcc headers files, but not the fixed include files,
1005 # which Cygnus is not allowed to distribute. This rule is very
1006 # dependent on the workings of the gcc Makefile.in.
1007 .PHONY
: gcc-no-fixedincludes
1008 gcc-no-fixedincludes
:
1009 @if
[ -f .
/gcc
/Makefile
]; then \
1010 rm -rf gcc
/tmp-include
; \
1011 mv gcc
/include gcc
/tmp-include
2>/dev
/null
; \
1012 mkdir gcc
/include; \
1013 cp
$(srcdir)/gcc
/gsyslimits.h gcc
/include/syslimits.h
; \
1014 touch gcc
/stmp-fixinc gcc
/include/fixed
; \
1015 rm -f gcc
/stmp-headers gcc
/stmp-int-hdrs
; \
1016 r
=`pwd`; export r
; \
1017 s
=`cd $(srcdir); pwd` ; export s
; \
1020 $(MAKE
) $(GCC_FLAGS_TO_PASS
) install); \
1021 rm -rf gcc
/include; \
1022 mv gcc
/tmp-include gcc
/include 2>/dev
/null
; \
1025 # This rule is used to build the modules which use FLAGS_TO_PASS. To
1026 # build a target all-X means to cd to X and make all.
1028 # all-gui, and all-libproc are handled specially because
1029 # they are still experimental, and if they fail to build, that
1030 # shouldn't stop "make all".
1031 .PHONY
: $(ALL_MODULES
) all-gui all-libproc
1032 $(ALL_MODULES
) all-gui all-libproc
:
1033 @
dir=`echo $@ | sed -e 's/all-//'`; \
1034 if
[ -f .
/$${dir}/Makefile
] ; then \
1035 r
=`pwd`; export r
; \
1036 s
=`cd $(srcdir); pwd`; export s
; \
1038 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) all); \
1043 # These rules are used to check the modules which use FLAGS_TO_PASS.
1044 # To build a target check-X means to cd to X and make check. Some
1045 # modules are only tested in a native toolchain.
1047 .PHONY
: $(CHECK_MODULES
) $(NATIVE_CHECK_MODULES
) $(CROSS_CHECK_MODULES
)
1048 $(NATIVE_CHECK_MODULES
):
1049 @if
[ "$(host_canonical)" = "$(target_canonical)" ] ; then \
1050 dir=`echo $@ | sed -e 's/check-//'`; \
1051 if
[ -f .
/$${dir}/Makefile
] ; then \
1052 r
=`pwd`; export r
; \
1053 s
=`cd $(srcdir); pwd`; export s
; \
1055 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) check); \
1061 $(CROSS_CHECK_MODULES
):
1062 @
dir=`echo $@ | sed -e 's/check-//'`; \
1063 if
[ -f .
/$${dir}/Makefile
] ; then \
1064 r
=`pwd`; export r
; \
1065 s
=`cd $(srcdir); pwd`; export s
; \
1067 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) check); \
1072 # This rule is used to install the modules which use FLAGS_TO_PASS.
1073 # To build a target install-X means to cd to X and make install.
1074 .PHONY
: $(INSTALL_MODULES
)
1075 $(INSTALL_MODULES
): installdirs
1076 @
dir=`echo $@ | sed -e 's/install-//'`; \
1077 if
[ -f .
/$${dir}/Makefile
] ; then \
1078 r
=`pwd`; export r
; \
1079 s
=`cd $(srcdir); pwd`; export s
; \
1081 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) install); \
1086 # This rule is used to configure the modules which are built with the
1088 .PHONY
: $(CONFIGURE_TARGET_MODULES
)
1089 $(CONFIGURE_TARGET_MODULES
):
1090 @
dir=`echo $@ | sed -e 's/configure-target-//'`; \
1091 if
[ -d
$(TARGET_SUBDIR
)/$${dir} ]; then \
1092 r
=`pwd`; export r
; \
1093 $(CC_FOR_TARGET
) --print-multi-lib
> $(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
2> /dev
/null
; \
1094 if
[ -s
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
]; then \
1095 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/multilib.out
]; then \
1096 if cmp
$(TARGET_SUBDIR
)/$${dir}/multilib.out
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
> /dev
/null
; then \
1097 rm -f
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
; \
1099 echo
"Multilibs changed for $${dir}, reconfiguring"; \
1100 rm -f
$(TARGET_SUBDIR
)/$${dir}/multilib.out
$(TARGET_SUBDIR
)/$${dir}/Makefile
; \
1101 mv
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
$(TARGET_SUBDIR
)/$${dir}/multilib.out
; \
1104 mv
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
$(TARGET_SUBDIR
)/$${dir}/multilib.out
; \
1107 fi
; exit
0 # break command into two pieces
1108 @
dir=`echo $@ | sed -e 's/configure-target-//'`; \
1109 if
[ ! -d
$(TARGET_SUBDIR
) ]; then \
1111 elif
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1113 elif echo
" $(TARGET_CONFIGDIRS) " | grep
" $${dir} " >/dev
/null
2>&1; then \
1114 if
[ -d
$(srcdir)/$${dir} ]; then \
1115 [ -d
$(TARGET_SUBDIR
)/$${dir} ] || mkdir
$(TARGET_SUBDIR
)/$${dir};\
1116 r
=`pwd`; export r
; \
1117 s
=`cd $(srcdir); pwd`; export s
; \
1119 AR
="$(AR_FOR_TARGET)"; export AR
; \
1120 AS
="$(AS_FOR_TARGET)"; export AS
; \
1121 CC
="$(CC_FOR_TARGET)"; export CC
; \
1122 CFLAGS
="$(CFLAGS_FOR_TARGET)"; export CFLAGS
; \
1123 CXX
="$(CXX_FOR_TARGET)"; export CXX
; \
1124 CXXFLAGS
="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS
; \
1125 DLLTOOL
="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL
; \
1126 LD
="$(LD_FOR_TARGET)"; export LD
; \
1127 LDFLAGS
="$(LDFLAGS_FOR_TARGET)"; export LDFLAGS
; \
1128 NM
="$(NM_FOR_TARGET)"; export NM
; \
1129 RANLIB
="$(RANLIB_FOR_TARGET)"; export RANLIB
; \
1130 WINDRES
="$(WINDRES_FOR_TARGET)"; export WINDRES
; \
1131 echo Configuring in
$(TARGET_SUBDIR
)/$${dir}; \
1132 cd
$(TARGET_SUBDIR
)/$${dir}; \
1135 topdir
=$(srcdir) ;; \
1137 case
"$(TARGET_SUBDIR)" in \
1138 .
) topdir
="../$(srcdir)" ;; \
1139 *) topdir
="../../$(srcdir)" ;; \
1142 if
[ "$(srcdir)" = "." ] ; then \
1143 if
[ "$(TARGET_SUBDIR)" != "." ] ; then \
1144 if
$(SHELL
) $$s/symlink-tree
$${topdir}/$${dir} "no-such-file" ; then \
1145 if
[ -f Makefile
]; then \
1146 if
$(MAKE
) distclean; then \
1160 srcdiroption
="--srcdir=."; \
1163 srcdiroption
="--srcdir=$${topdir}/$${dir}"; \
1164 libsrcdir
="$$s/$${dir}"; \
1166 if
[ -f
$${libsrcdir}/configure
] ; then \
1167 $(SHELL
) $${libsrcdir}/configure \
1168 $(CONFIG_ARGUMENTS
) $${srcdiroption} \
1169 --with-target-subdir
="$(TARGET_SUBDIR)"; \
1171 $(SHELL
) $$s/configure \
1172 $(CONFIG_ARGUMENTS
) $${srcdiroption} \
1173 --with-target-subdir
="$(TARGET_SUBDIR)"; \
1182 # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
1183 # To build a target all-X means to cd to X and make all.
1184 .PHONY
: $(ALL_TARGET_MODULES
)
1185 $(ALL_TARGET_MODULES
):
1186 @
dir=`echo $@ | sed -e 's/all-target-//'`; \
1187 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1188 r
=`pwd`; export r
; \
1189 s
=`cd $(srcdir); pwd`; export s
; \
1191 (cd
$(TARGET_SUBDIR
)/$${dir}; $(MAKE
) $(TARGET_FLAGS_TO_PASS
) all); \
1196 # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
1197 # To build a target install-X means to cd to X and make install.
1198 .PHONY
: $(CHECK_TARGET_MODULES
)
1199 $(CHECK_TARGET_MODULES
):
1200 @
dir=`echo $@ | sed -e 's/check-target-//'`; \
1201 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1202 r
=`pwd`; export r
; \
1203 s
=`cd $(srcdir); pwd`; export s
; \
1205 (cd
$(TARGET_SUBDIR
)/$${dir};$(MAKE
) $(TARGET_FLAGS_TO_PASS
) check);\
1210 # This rule is used to install the modules which use
1211 # TARGET_FLAGS_TO_PASS. To build a target install-X means to cd to X
1213 .PHONY
: $(INSTALL_TARGET_MODULES
)
1214 $(INSTALL_TARGET_MODULES
): installdirs
1215 @
dir=`echo $@ | sed -e 's/install-target-//'`; \
1216 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1217 r
=`pwd`; export r
; \
1218 s
=`cd $(srcdir); pwd`; export s
; \
1220 (cd
$(TARGET_SUBDIR
)/$${dir}; \
1221 $(MAKE
) $(TARGET_FLAGS_TO_PASS
) install); \
1226 # This rule is used to build the modules which use X11_FLAGS_TO_PASS.
1227 # To build a target all-X means to cd to X and make all.
1228 .PHONY
: $(ALL_X11_MODULES
)
1230 @
dir=`echo $@ | sed -e 's/all-//'`; \
1231 if
[ -f .
/$${dir}/Makefile
] ; then \
1232 r
=`pwd`; export r
; \
1233 s
=`cd $(srcdir); pwd`; export s
; \
1236 $(MAKE
) $(FLAGS_TO_PASS
) $(X11_FLAGS_TO_PASS
) all); \
1241 # This rule is used to check the modules which use X11_FLAGS_TO_PASS.
1242 # To build a target check-X means to cd to X and make all.
1243 .PHONY
: $(CHECK_X11_MODULES
)
1244 $(CHECK_X11_MODULES
):
1245 @
dir=`echo $@ | sed -e 's/check-//'`; \
1246 if
[ -f .
/$${dir}/Makefile
] ; then \
1247 r
=`pwd`; export r
; \
1248 s
=`cd $(srcdir); pwd`; export s
; \
1251 $(MAKE
) $(FLAGS_TO_PASS
) $(X11_FLAGS_TO_PASS
) check); \
1256 # This rule is used to install the modules which use X11_FLAGS_TO_PASS.
1257 # To build a target install-X means to cd to X and make install.
1258 .PHONY
: $(INSTALL_X11_MODULES
)
1259 $(INSTALL_X11_MODULES
): installdirs
1260 @
dir=`echo $@ | sed -e 's/install-//'`; \
1261 if
[ -f .
/$${dir}/Makefile
] ; then \
1262 r
=`pwd`; export r
; \
1263 s
=`cd $(srcdir); pwd`; export s
; \
1266 $(MAKE
) $(FLAGS_TO_PASS
) $(X11_FLAGS_TO_PASS
) install); \
1271 # gcc is the only module which uses GCC_FLAGS_TO_PASS.
1274 @if
[ -f .
/gcc
/Makefile
] ; then \
1275 r
=`pwd`; export r
; \
1276 s
=`cd $(srcdir); pwd`; export s
; \
1278 (cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) all); \
1283 # Building GCC uses some tools for rebuilding "source" files
1284 # like texinfo, bison/byacc, etc. So we must depend on those.
1286 # While building GCC, it may be necessary to run various target
1287 # programs like the assembler, linker, etc. So we depend on
1290 # In theory, on an SMP all those dependencies can be resolved
1293 .PHONY
: bootstrap bootstrap-lean bootstrap2 bootstrap3 bootstrap4
1294 bootstrap bootstrap-lean bootstrap2 bootstrap3 bootstrap4
: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
1295 @r
=`pwd`; export r
; \
1296 s
=`cd $(srcdir); pwd`; export s
; \
1298 echo
"Bootstrapping the compiler"; \
1299 cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) $@
1300 @r
=`pwd`; export r
; \
1301 s
=`cd $(srcdir); pwd`; export s
; \
1303 *bootstrap4
) msg
="Comparing stage3 and stage4 of the compiler"; \
1304 compare
=compare3
;; \
1305 *-lean
) msg
="Comparing stage2 and stage3 of the compiler"; \
1306 compare
=compare-lean
;; \
1307 * ) msg
="Comparing stage2 and stage3 of the compiler"; \
1308 compare
=compare
;; \
1312 cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) $$compare
1313 @echo
"Building runtime libraries"; \
1317 cross
: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
1318 @r
=`pwd`; export r
; \
1319 s
=`cd $(srcdir); pwd`; export s
; \
1321 echo
"Building the C and C++ compiler"; \
1322 cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) LANGUAGES
="c c++"
1323 @echo
"Building runtime libraries"; \
1324 $(MAKE
) all LANGUAGES
="c c++"
1328 @if
[ -f .
/gcc
/Makefile
] ; then \
1329 r
=`pwd`; export r
; \
1330 s
=`cd $(srcdir); pwd`; export s
; \
1332 (cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) check); \
1339 @if
[ -f .
/gcc
/Makefile
] ; then \
1340 r
=`pwd`; export r
; \
1341 s
=`cd $(srcdir); pwd`; export s
; \
1343 (cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) LANGUAGES
="c c++" install); \
1348 .PHONY
: install-gcc-cross
1350 @if
[ -f .
/gcc
/Makefile
] ; then \
1351 r
=`pwd`; export r
; \
1352 s
=`cd $(srcdir); pwd`; export s
; \
1354 (cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) install); \
1358 # EXPERIMENTAL STUFF
1359 # This rule is used to install the modules which use FLAGS_TO_PASS.
1360 # To build a target install-X means to cd to X and make install.
1361 .PHONY
: install-dosrel
1362 install-dosrel
: installdirs info
1363 @
dir=`echo $@ | sed -e 's/install-//'`; \
1364 if
[ -f .
/$${dir}/Makefile
] ; then \
1365 r
=`pwd`; export r
; \
1366 s
=`cd $(srcdir); pwd`; export s
; \
1368 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) install); \
1373 install-dosrel-fake
:
1376 # This is a list of inter-dependencies among modules.
1378 all-autoconf
: all-m4 all-texinfo
1382 all-binutils
: all-libiberty all-opcodes all-bfd all-flex all-bison all-byacc
1383 all-bison
: all-texinfo
1387 all-dejagnu
: all-tcl all-expect all-tk
1388 all-diff
: all-libiberty
1390 all-emacs19
: all-bison all-byacc
1392 configure-target-examples
: $(ALL_GCC
)
1393 all-target-examples
: configure-target-examples
1394 all-expect
: all-tcl all-tk
1395 all-fileutils
: all-libiberty
1398 all-flex
: all-libiberty all-bison all-byacc
1399 all-gas
: all-libiberty all-opcodes all-bfd
1403 all-gcc
: all-bison all-byacc all-binutils all-gas all-ld
1404 GDB_TK
= all-tk all-tcl all-itcl all-tix
1405 all-gdb
: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-bison all-byacc all-sim
$(gdbnlmrequirements
) $(GDB_TK
)
1407 configure-target-gperf
: $(ALL_GCC
)
1408 all-target-gperf
: configure-target-gperf all-target-libiberty all-target-libg
++
1409 all-gprof
: all-libiberty all-bfd all-opcodes
1410 all-grep
: all-libiberty
1411 all-grez
: all-libiberty all-bfd all-opcodes
1412 all-gui
: all-gdb all-libproc all-target-librx
1414 all-gzip
: all-libiberty
1415 all-hello
: all-libiberty
1417 all-inet
: all-tcl all-send-pr all-perl
1418 all-ispell
: all-emacs19
1419 all-itcl
: all-tcl all-tk
1420 all-ld
: all-libiberty all-bfd all-opcodes all-bison all-byacc all-flex
1421 configure-target-libg
++: $(ALL_GCC
) configure-target-librx
1422 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
++
1423 configure-target-libgloss
: $(ALL_GCC
)
1424 all-target-libgloss
: configure-target-libgloss configure-target-newlib
1425 configure-target-libio
: $(ALL_GCC
)
1426 all-target-libio
: configure-target-libio all-gas all-ld all-gcc all-target-libiberty all-target-newlib
1427 check-target-libio
: all-target-libstdc
++
1429 configure-target-librx
: $(ALL_GCC
) configure-target-newlib
1430 all-target-librx
: configure-target-librx
1431 configure-target-libstdc
++: $(ALL_GCC
)
1432 all-target-libstdc
++: configure-target-libstdc
++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio
1433 all-m4
: all-libiberty
1434 all-make
: all-libiberty
1436 configure-target-newlib
: $(ALL_GCC
)
1437 all-target-newlib
: configure-target-newlib all-binutils all-gas all-gcc
1438 all-opcodes
: all-bfd all-libiberty
1439 all-patch
: all-libiberty
1441 all-prms
: all-libiberty
1444 all-recode
: all-libiberty
1445 all-sed
: all-libiberty
1446 all-send-pr
: all-prms
1448 all-sim
: all-libiberty all-bfd all-opcodes
1449 all-sn
: all-tcl all-tk all-itcl all-db all-grep
1450 all-tar
: all-libiberty
1452 all-tclX
: all-tcl all-tk
1454 all-texinfo
: all-libiberty
1456 all-tgas
: all-libiberty all-bfd all-opcodes
1458 all-tix
: all-tcl all-tk
1460 all-target-winsup
: all-target-newlib all-target-libiberty all-target-librx all-target-libio configure-target-winsup
1461 configure-target-winsup
: configure-target-newlib
1462 all-uudecode
: all-libiberty
1463 configure-target-libiberty
: $(ALL_GCC
)
1464 all-target-libiberty
: configure-target-libiberty all-gcc all-ld all-target-newlib
1465 all-target
: $(ALL_TARGET_MODULES
)
1466 install-target
: $(INSTALL_TARGET_MODULES
)
1468 ### other supporting targets
1474 installdirs: mkinstalldirs
1475 $(SHELL
) $(srcdir)/mkinstalldirs
$(MAKEDIRS
)
1477 dir.
info: do-install-info
1478 if
[ -f
$(srcdir)/texinfo
/gen-info-dir
] ; then \
1479 $(srcdir)/texinfo
/gen-info-dir
$(infodir) $(srcdir)/texinfo
/dir.info-template
> dir.
info.new
; \
1480 mv
-f
dir.
info.new
dir.
info ; \
1485 @echo
"Building a full distribution of this tree isn't done"
1486 @echo
"via 'make dist'. Check out the etc/ subdirectory"
1490 # Right now this just builds TAGS in each subdirectory. emacs19 has the
1491 # ability to use several tags files at once, so there is probably no need
1492 # to combine them into one big TAGS file (like CVS 1.3 does). We could
1493 # (if we felt like it) have this Makefile write a piece of elisp which
1494 # the user could load to tell emacs19 where all the TAGS files we just
1498 # with the gnu make, this is done automatically.
1500 Makefile
: Makefile.in configure.in
$(host_makefile_frag
) $(target_makefile_frag
)
1501 $(SHELL
) .
/config.status
1504 # Support for building net releases
1506 # Files in devo used in any net release.
1507 # ChangeLog omitted because it may refer to files which are not in this
1508 # distribution (perhaps it would be better to include it anyway).
1509 DEVO_SUPPORT
= README Makefile.in configure configure.in \
1510 config.guess config.sub config move-if-change \
1511 mpw-README mpw-build.in mpw-config.in mpw-configure mpw-install \
1512 COPYING COPYING.LIB install-sh config-ml.in symlink-tree \
1513 mkinstalldirs ltconfig ltmain.sh missing ylwrap
1515 # Files in devo/etc used in any net release.
1516 # ChangeLog omitted because it may refer to files which are not in this
1517 # distribution (perhaps it would be better to include it anyway).
1518 ETC_SUPPORT
= Makefile.in configure configure.in standards.texi \
1519 make-stds.texi standards.
info*
1521 # When you use `make setup-dirs' or `make taz' you should always redefine
1523 SUPPORT_FILES
= list-of-support-files-for-tool-in-question
1527 taz
: $(DEVO_SUPPORT
) $(SUPPORT_FILES
) \
1528 texinfo
/texinfo.
tex texinfo
/gpl.texinfo texinfo
/lgpl.texinfo
1529 # Take out texinfo from a few places; make simple BISON=bison line.
1530 sed
-e
'/^all\.normal: /s/\all-texinfo //' \
1531 -e
'/^ install-texinfo /d' \
1533 mv
-f tmp Makefile.in
1536 [ -z
"$(CONFIGURE_TARGET_MODULES)" ] \
1537 ||
$(MAKE
) $(CONFIGURE_TARGET_MODULES
) ALL_GCC
="" \
1538 CC_FOR_TARGET
="$(CC)" CXX_FOR_TARGET
="$(CXX)"
1539 # Make links, and run "make diststuff" or "make info" when needed.
1540 rm -rf proto-toplev
; mkdir proto-toplev
1541 set
-e
; dirs
="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
1542 for d in
$$dirs ; do \
1543 if
[ -d
$$d ]; then \
1544 if
[ ! -f
$$d/Makefile
] ; then true
; \
1545 elif grep
'^diststuff:' $$d/Makefile
>/dev
/null
; then \
1546 (cd
$$d ; $(MAKE
) diststuff
) || exit
1 ; \
1547 elif grep
'^info:' $$d/Makefile
>/dev
/null
; then \
1548 (cd
$$d ; $(MAKE
) info ) || exit
1 ; \
1550 if
[ -d
$$d/proto-
$$d.
dir ]; then \
1551 ln
-s ..
/$$d/proto-
$$d.
dir proto-toplev
/$$d ; \
1553 ln
-s ..
/$$d proto-toplev
/$$d ; \
1555 else ln
-s ..
/$$d proto-toplev
/$$d ; fi
; \
1557 cd etc
; $(MAKE
) info
1560 mkdir proto-toplev
/etc
1561 (cd proto-toplev
/etc
; \
1562 for i in
$(ETC_SUPPORT
); do \
1563 ln
-s ..
/..
/etc
/$$i .
; \
1566 # Take out texinfo from configurable dirs
1567 rm proto-toplev
/configure.in
1568 sed
-e
'/^host_tools=/s/texinfo //' \
1569 <configure.in
>proto-toplev
/configure.in
1571 mkdir proto-toplev
/texinfo
1572 ln
-s ..
/..
/texinfo
/texinfo.
tex proto-toplev
/texinfo
/
1573 ln
-s ..
/..
/texinfo
/gpl.texinfo proto-toplev
/texinfo
/
1574 ln
-s ..
/..
/texinfo
/lgpl.texinfo proto-toplev
/texinfo
/
1575 if
test -r texinfo
/util
/tex3patch
; then \
1576 mkdir proto-toplev
/texinfo
/util
&& \
1577 ln
-s ..
/..
/..
/texinfo
/util
/tex3patch proto-toplev
/texinfo
/util
; \
1579 chmod og
=u
`find . -print`
1580 if grep AM_INIT_AUTOMAKE
$(TOOL
)/configure.in
>/dev
/null
2>&1; then \
1581 ver
=`sed < $(TOOL)/configure.in -n 's/AM_INIT_AUTOMAKE[^,]*, *\([^)]*\))/\1/p'`; \
1583 ver
=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \
1585 $(MAKE
) -f Makefile.in do-tar-gz TOOL
=$(TOOL
) VER
=$$ver
1588 echo
"==> Making $(TOOL)-$(VER).tar.gz"
1589 -rm -f
$(TOOL
)-$(VER
)
1590 ln
-s proto-toplev
$(TOOL
)-$(VER
)
1591 tar cfh
$(TOOL
)-$(VER
).
tar $(TOOL
)-$(VER
)
1592 $(GZIPPROG
) -v
-9 $(TOOL
)-$(VER
).
tar
1594 TEXINFO_SUPPORT
= texinfo
/texinfo.
tex texinfo
/gpl.texinfo texinfo
/lgpl.texinfo
1595 DIST_SUPPORT
= $(DEVO_SUPPORT
) $(TEXINFO_SUPPORT
)
1598 GAS_SUPPORT_DIRS
= bfd
include libiberty opcodes setup.com makefile.vms
1599 gas.
tar.gz
: $(DIST_SUPPORT
) $(GAS_SUPPORT_DIRS
) gas
1600 $(MAKE
) -f Makefile.in taz TOOL
=gas \
1601 SUPPORT_FILES
="$(GAS_SUPPORT_DIRS)"
1603 # The FSF "binutils" release includes gprof and ld.
1604 .PHONY
: binutils.
tar.gz
1605 BINUTILS_SUPPORT_DIRS
= bfd gas
include libiberty opcodes
ld gprof setup.com makefile.vms
1606 binutils.
tar.gz
: $(DIST_SUPPORT
) $(BINUTILS_SUPPORT_DIRS
) binutils
1607 $(MAKE
) -f Makefile.in taz TOOL
=binutils \
1608 SUPPORT_FILES
="$(BINUTILS_SUPPORT_DIRS) makeall.bat configure.bat"
1610 .PHONY
: gas
+binutils.
tar.gz
1611 GASB_SUPPORT_DIRS
= $(GAS_SUPPORT_DIRS
) binutils
ld gprof
1612 gas
+binutils.
tar.gz
: $(DIST_SUPPORT
) $(GASB_SUPPORT_DIRS
) gas
1613 $(MAKE
) -f Makefile.in taz TOOL
=gas \
1614 SUPPORT_FILES
="$(GASB_SUPPORT_DIRS) makeall.bat configure.bat"
1616 .PHONY
: libg
++.
tar.gz
1617 LIBGXX_SUPPORT_DIRS
=include libstdc
++ libio librx libiberty
1618 libg
++.
tar.gz
: $(DIST_SUPPORT
) libg
++
1619 $(MAKE
) -f Makefile.in taz TOOL
=libg
++ \
1620 SUPPORT_FILES
="$(LIBGXX_SUPPORT_DIRS)"
1622 GNATS_SUPPORT_DIRS
=include libiberty send-pr
1623 gnats.
tar.gz
: $(DIST_SUPPORT
) $(GNATS_SUPPORT_DIRS
) gnats
1624 $(MAKE
) -f Makefile.in taz TOOL
=gnats \
1625 SUPPORT_FILES
="$(GNATS_SUPPORT_DIRS)"
1628 GDB_SUPPORT_DIRS
= bfd
include libiberty mmalloc opcodes readline sim utils
1629 GDBTK_SUPPORT_DIRS
= `if [ -d tcl -a -d tk ] ; then echo tcl tk ; fi`
1630 gdb.
tar.gz
: $(DIST_SUPPORT
) $(GDB_SUPPORT_DIRS
) gdb
1631 $(MAKE
) -f Makefile.in taz TOOL
=gdb \
1632 SUPPORT_FILES
="$(GDB_SUPPORT_DIRS) $(GDBTK_SUPPORT_DIRS)"
1634 .PHONY
: newlib.
tar.gz
1635 NEWLIB_SUPPORT_DIRS
=libgloss
1636 # taz configures for the sun4 target which won't configure newlib.
1637 # We need newlib configured so that the .info files are made.
1638 # Unfortunately, it is not enough to just configure newlib separately:
1639 # taz will build the .info files but since SUBDIRS won't contain newlib,
1640 # distclean won't be run (leaving Makefile, config.status, and the tmp files
1641 # used in building the .info files, eg: *.def, *.ref).
1642 # The problem isn't solvable however without a lot of extra work because
1643 # target libraries are built in subdir $(target_alias) which gets nuked during
1644 # the make distclean. For now punt on the issue of shipping newlib info files
1645 # with newlib net releases and wait for a day when some native target (sun4?)
1646 # supports newlib (if only minimally).
1647 newlib.
tar.gz
: $(DIST_SUPPORT
) $(NEWLIB_SUPPORT_DIRS
) newlib
1648 $(MAKE
) -f Makefile.in taz TOOL
=newlib \
1649 SUPPORT_FILES
="$(NEWLIB_SUPPORT_DIRS)" \
1650 DEVO_SUPPORT
="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib
1656 # end of Makefile.in