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 "gxx_include_dir=$(gxx_include_dir)" \
333 "INSTALL=$(INSTALL)" \
334 "INSTALL_DATA=$(INSTALL_DATA)" \
335 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
336 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
337 "LDFLAGS=$(LDFLAGS)" \
339 "LD_FOR_TARGET=$(LD_FOR_TARGET)" \
340 "LIBCFLAGS=$(LIBCFLAGS)" \
341 "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
342 "LIBCXXFLAGS=$(LIBCXXFLAGS)" \
343 "LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \
344 "local_prefix=$(local_prefix)" \
347 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
348 "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
349 "PICFLAG=$(PICFLAG)" \
350 "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
351 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
354 "RUNTEST=$(RUNTEST)" \
355 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
356 "WINDRES_FOR_TARGET=$(WINDRES_FOR_TARGET)" \
358 "exec_prefix=$(exec_prefix)" \
362 # Flags to pass down to most sub-makes, in which we're building with
363 # the host environment.
364 # If any variables are added here, they must be added to do-*, below.
370 'DLLTOOL=$(DLLTOOL)' \
376 FLAGS_TO_PASS
= $(BASE_FLAGS_TO_PASS
) $(EXTRA_HOST_FLAGS
)
378 # Flags that are concerned with the location of the X11 include files
381 # NOTE: until the top-level is getting the values via autoconf, it only
382 # causes problems to have this top-level Makefile overriding the autoconf-set
383 # values in child directories. Only variables that don't conflict with
384 # autoconf'ed ones should be passed by X11_FLAGS_TO_PASS for now.
386 X11_FLAGS_TO_PASS
= \
387 'X11_EXTRA_CFLAGS=$(X11_EXTRA_CFLAGS)' \
388 'X11_EXTRA_LIBS=$(X11_EXTRA_LIBS)'
390 # Flags to pass down to makes which are built with the target environment.
391 # The double $ decreases the length of the command line; the variables
392 # are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them.
393 # If any variables are added here, they must be added to do-*, below.
394 EXTRA_TARGET_FLAGS
= \
395 'AR=$$(AR_FOR_TARGET)' \
396 'AS=$$(AS_FOR_TARGET)' \
397 'CC=$$(CC_FOR_TARGET)' \
398 'CFLAGS=$$(CFLAGS_FOR_TARGET)' \
399 'CXX=$$(CXX_FOR_TARGET)' \
400 'CXXFLAGS=$$(CXXFLAGS_FOR_TARGET)' \
401 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
402 'LD=$$(LD_FOR_TARGET)' \
403 'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET)' \
404 'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET)' \
405 'NM=$$(NM_FOR_TARGET)' \
406 'PICFLAG=$$(PICFLAG_FOR_TARGET)' \
407 'RANLIB=$$(RANLIB_FOR_TARGET)' \
408 'WINDRES=$$(WINDRES_FOR_TARGET)'
410 TARGET_FLAGS_TO_PASS
= $(BASE_FLAGS_TO_PASS
) $(EXTRA_TARGET_FLAGS
)
412 # Flags to pass down to gcc. gcc builds a library, libgcc.a, so it
413 # unfortunately needs the native compiler and the target ar and
415 # If any variables are added here, they must be added to do-*, below.
416 # The HOST_* variables are a special case, which are used for the gcc
417 # cross-building scheme.
419 'AR=$$(AR_FOR_TARGET)' \
423 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
424 'HOST_CC=$(CC_FOR_BUILD)' \
425 'HOST_PREFIX=$(HOST_PREFIX)' \
426 'HOST_PREFIX_1=$(HOST_PREFIX_1)' \
428 'RANLIB=$$(RANLIB_FOR_TARGET)' \
429 'WINDRES=$$(WINDRES_FOR_TARGET)' \
430 "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
431 "`if test x'$(LANGUAGES)' != x; then echo 'LANGUAGES=$(LANGUAGES)'; else echo 'XFOO=bar'; fi`" \
432 "`if test x'$(STMP_FIXPROTO)' != x; then echo 'STMP_FIXPROTO=$(STMP_FIXPROTO)'; else echo 'XFOO=bar'; fi`" \
433 "`if test x'$(LIMITS_H_TEST)' != x; then echo 'LIMITS_H_TEST=$(LIMITS_H_TEST)'; else echo 'XFOO=bar'; fi`" \
434 "`if test x'$(LIBGCC1_TEST)' != x; then echo 'LIBGCC1_TEST=$(LIBGCC1_TEST)'; else echo 'XFOO=bar'; fi`" \
435 "`if test x'$(LIBGCC2_CFLAGS)' != x; then echo 'LIBGCC2_CFLAGS=$(LIBGCC2_CFLAGS)'; else echo 'XFOO=bar'; fi`" \
436 "`if test x'$(LIBGCC2_DEBUG_CFLAGS)' != x; then echo 'LIBGCC2_DEBUG_CFLAGS=$(LIBGCC2_DEBUG_CFLAGS)'; else echo 'XFOO=bar'; fi`" \
437 "`if test x'$(LIBGCC2_INCLUDES)' != x; then echo 'LIBGCC2_INCLUDES=$(LIBGCC2_INCLUDES)'; else echo 'XFOO=bar'; fi`" \
438 "`if test x'$(ENQUIRE)' != x; then echo 'ENQUIRE=$(ENQUIRE)'; else echo 'XFOO=bar'; fi`" \
439 "`if test x'$(BOOT_CFLAGS)' != x; then echo 'BOOT_CFLAGS=$(BOOT_CFLAGS)'; else echo 'XFOO=bar'; fi`"
441 GCC_FLAGS_TO_PASS
= $(BASE_FLAGS_TO_PASS
) $(EXTRA_GCC_FLAGS
)
443 # This is a list of the targets for all of the modules which are compiled
444 # using $(FLAGS_TO_PASS).
503 # This is a list of the check targets for all of the modules which are
504 # compiled using $(FLAGS_TO_PASS).
506 # The list is in two parts. The first lists those tools which
507 # are tested as part of the host's native tool-chain, and not
508 # tested in a cross configuration.
509 NATIVE_CHECK_MODULES
= \
514 CROSS_CHECK_MODULES
= \
566 CHECK_MODULES
=$(NATIVE_CHECK_MODULES
) $(CROSS_CHECK_MODULES
)
568 # This is a list of the install targets for all of the modules which are
569 # compiled using $(FLAGS_TO_PASS).
570 # We put install-opcodes before install-binutils because the installed
571 # binutils might be on PATH, and they might need the shared opcodes
630 # This is a list of the targets for all of the modules which are compiled
631 # using $(X11_FLAGS_TO_PASS).
643 # This is a list of the check targets for all of the modules which are
644 # compiled using $(X11_FLAGS_TO_PASS).
645 CHECK_X11_MODULES
= \
655 # This is a list of the install targets for all the modules which are
656 # compiled using $(X11_FLAGS_TO_PASS).
657 INSTALL_X11_MODULES
= \
668 # This is a list of the targets for all of the modules which are compiled
669 # using $(TARGET_FLAGS_TO_PASS).
670 ALL_TARGET_MODULES
= \
672 all-target-libstdc
++ \
677 all-target-libgloss \
678 all-target-libiberty \
682 # This is a list of the configure targets for all of the modules which
683 # are compiled using the target tools.
684 CONFIGURE_TARGET_MODULES
= \
685 configure-target-libio \
686 configure-target-libstdc
++ \
687 configure-target-librx \
688 configure-target-libg
++ \
689 configure-target-newlib \
690 configure-target-winsup \
691 configure-target-libgloss \
692 configure-target-libiberty \
693 configure-target-gperf \
694 configure-target-examples
696 # This is a list of the check targets for all of the modules which are
697 # compiled using $(TARGET_FLAGS_TO_PASS).
698 CHECK_TARGET_MODULES
= \
700 check-target-libstdc
++ \
701 check-target-libg
++ \
702 check-target-newlib \
703 check-target-winsup \
704 check-target-libiberty \
707 # This is a list of the install targets for all of the modules which are
708 # compiled using $(TARGET_FLAGS_TO_PASS).
709 INSTALL_TARGET_MODULES
= \
710 install-target-libio \
711 install-target-libstdc
++ \
712 install-target-libg
++ \
713 install-target-newlib \
714 install-target-winsup \
715 install-target-libgloss \
716 install-target-libiberty \
719 # This is a list of the targets for which we can do a clean-{target}.
778 # All of the target modules that can be cleaned
779 CLEAN_TARGET_MODULES
= \
781 clean-target-libstdc
++ \
783 clean-target-libg
++ \
784 clean-target-newlib \
785 clean-target-winsup \
786 clean-target-libgloss \
787 clean-target-libiberty \
789 clean-target-examples
791 # All of the x11 modules that can be cleaned
792 CLEAN_X11_MODULES
= \
803 # The first rule in the file had better be this one. Don't put any above it.
807 # The target built for a native build.
812 $(ALL_TARGET_MODULES
) \
815 # Do a target for all the subdirectories. A ``make do-X'' will do a
816 # ``make X'' in all subdirectories (because, in general, there is a
817 # dependency (below) of X upon do-X, a ``make X'' will also do this,
818 # but it may do additional work as well).
819 # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
820 # because it is so large that it can easily overflow the command line
821 # length limit on some systems.
830 do-maintainer-clean \
834 @target
=`echo $@ | sed -e 's/^do-//'`; \
836 s
=`cd $(srcdir); pwd`; export s
; \
838 for i in
$(SUBDIRS
) -dummy-
; do \
839 if
[ -f .
/$$i/Makefile
]; then \
842 for flag in
$(EXTRA_GCC_FLAGS
); do \
843 eval
`echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
847 for flag in
$(EXTRA_HOST_FLAGS
); do \
848 eval
`echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
852 export AR AS CC CXX LD NM RANLIB DLLTOOL WINDRES
; \
854 $(MAKE
) $(BASE_FLAGS_TO_PASS
) "AR=$${AR}" "AS=$${AS}" \
855 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
856 "RANLIB=$${RANLIB}" \
857 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
859 then true
; else exit
1; fi
; \
862 @target
=`echo $@ | sed -e 's/^do-//'`; \
864 s
=`cd $(srcdir); pwd`; export s
; \
866 for i in
$(TARGET_CONFIGDIRS
) -dummy-
; do \
867 if
[ -f
$(TARGET_SUBDIR
)/$$i/Makefile
]; then \
868 for flag in
$(EXTRA_TARGET_FLAGS
); do \
869 eval
`echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
871 export AR AS CC CXX LD NM RANLIB DLLTOOL WINDRES
; \
872 if
(cd
$(TARGET_SUBDIR
)/$$i; \
873 $(MAKE
) $(BASE_FLAGS_TO_PASS
) "AR=$${AR}" "AS=$${AS}" \
874 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
875 "RANLIB=$${RANLIB}" \
876 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
878 then true
; else exit
1; fi
; \
882 # Here are the targets which correspond to the do-X targets.
884 .PHONY
: info installcheck dvi install-info
885 .PHONY
: clean distclean mostlyclean maintainer-clean
realclean
886 .PHONY
: local-clean local-distclean local-maintainer-clean
888 installcheck: do-installcheck
891 # Make sure makeinfo is built before we do a `make info'.
894 install-info
: do-install-info
dir.
info
895 s
=`cd $(srcdir); pwd`; export s
; \
896 if
[ -f
dir.
info ] ; then \
897 $(INSTALL_DATA
) dir.
info $(infodir)/dir.
info ; \
901 -rm -f
*.a TEMP errs core
*.o
*~ \
#* TAGS *.E
904 -rm -f Makefile config.status config.cache mh-frag mt-frag
905 -if
[ "$(TARGET_SUBDIR)" != "." ]; then \
906 rm -rf
$(TARGET_SUBDIR
); \
909 local-maintainer-clean
:
910 @echo
"This command is intended for maintainers to use;"
911 @echo
"it deletes files that may require special tools to rebuild."
913 clean: do-clean local-clean
914 mostlyclean: do-mostlyclean local-clean
915 distclean: do-distclean local-clean local-distclean
916 maintainer-clean
: local-maintainer-clean do-maintainer-clean local-clean
917 maintainer-clean
: local-distclean
918 realclean: maintainer-clean
920 # This rule is used to clean specific modules.
921 .PHONY
: $(CLEAN_MODULES
) $(CLEAN_X11_MODULES
) clean-gcc
922 $(CLEAN_MODULES
) $(CLEAN_X11_MODULES
) clean-gcc
:
923 @
dir=`echo $@ | sed -e 's/clean-//'`; \
924 if
[ -f .
/$${dir}/Makefile
] ; then \
926 s
=`cd $(srcdir); pwd`; export s
; \
928 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) clean); \
933 .PHONY
: $(CLEAN_TARGET_MODULES
)
934 $(CLEAN_TARGET_MODULES
):
935 @
dir=`echo $@ | sed -e 's/clean-target-//'`; \
936 rm -f
$(TARGET_SUBDIR
)/$${dir}/multilib.out
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
; \
937 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
939 s
=`cd $(srcdir); pwd`; export s
; \
941 (cd
$(TARGET_SUBDIR
)/$${dir}; $(MAKE
) $(TARGET_FLAGS_TO_PASS
) clean); \
946 clean-target
: $(CLEAN_TARGET_MODULES
)
951 check: $(CHECK_MODULES
) \
952 $(CHECK_TARGET_MODULES
) \
953 $(CHECK_X11_MODULES
) \
956 # Installation targets.
958 .PHONY
: install install-cross
uninstall source-vault binary-vault vault-install
959 install: $(INSTALL_TARGET
)
960 install-cross
: $(INSTALL_TARGET_CROSS
)
963 @echo
"the uninstall target is not supported in this tree"
966 $(MAKE
) -f .
/release
/Build-A-Release \
967 host
=$(host_alias
) source-vault
970 $(MAKE
) -f .
/release
/Build-A-Release \
971 host
=$(host_alias
) target
=$(target_alias
)
974 @if
[ -f .
/release
/vault-install
] ; then \
975 .
/release
/vault-install
$(host_alias
) $(target_alias
) ; \
981 install.
all: install-no-fixedincludes
982 @if
[ -f .
/gcc
/Makefile
] ; then \
983 r
=`pwd` ; export r
; \
986 $(MAKE
) $(FLAGS_TO_PASS
) install-headers
) ; \
991 # inet-install is used because the I*Net wants DejaGNU installed but
992 # not built. Similarly, gzip is built but not installed.
994 $(MAKE
) INSTALL_MODULES
="`echo $(INSTALL_MODULES) | sed -e 's/install-dejagnu//' -e 's/install-gzip//'`" install
996 # install-no-fixedincludes is used because Cygnus can not distribute
997 # the fixed header files.
998 .PHONY
: install-no-fixedincludes
999 install-no-fixedincludes
: \
1001 $(INSTALL_MODULES
) \
1002 $(INSTALL_TARGET_MODULES
) \
1003 $(INSTALL_X11_MODULES
) \
1004 gcc-no-fixedincludes
1006 # Install the gcc headers files, but not the fixed include files,
1007 # which Cygnus is not allowed to distribute. This rule is very
1008 # dependent on the workings of the gcc Makefile.in.
1009 .PHONY
: gcc-no-fixedincludes
1010 gcc-no-fixedincludes
:
1011 @if
[ -f .
/gcc
/Makefile
]; then \
1012 rm -rf gcc
/tmp-include
; \
1013 mv gcc
/include gcc
/tmp-include
2>/dev
/null
; \
1014 mkdir gcc
/include; \
1015 cp
$(srcdir)/gcc
/gsyslimits.h gcc
/include/syslimits.h
; \
1016 touch gcc
/stmp-fixinc gcc
/include/fixed
; \
1017 rm -f gcc
/stmp-headers gcc
/stmp-int-hdrs
; \
1018 r
=`pwd`; export r
; \
1019 s
=`cd $(srcdir); pwd` ; export s
; \
1022 $(MAKE
) $(GCC_FLAGS_TO_PASS
) install); \
1023 rm -rf gcc
/include; \
1024 mv gcc
/tmp-include gcc
/include 2>/dev
/null
; \
1027 # This rule is used to build the modules which use FLAGS_TO_PASS. To
1028 # build a target all-X means to cd to X and make all.
1030 # all-gui, and all-libproc are handled specially because
1031 # they are still experimental, and if they fail to build, that
1032 # shouldn't stop "make all".
1033 .PHONY
: $(ALL_MODULES
) all-gui all-libproc
1034 $(ALL_MODULES
) all-gui all-libproc
:
1035 @
dir=`echo $@ | sed -e 's/all-//'`; \
1036 if
[ -f .
/$${dir}/Makefile
] ; then \
1037 r
=`pwd`; export r
; \
1038 s
=`cd $(srcdir); pwd`; export s
; \
1040 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) all); \
1045 # These rules are used to check the modules which use FLAGS_TO_PASS.
1046 # To build a target check-X means to cd to X and make check. Some
1047 # modules are only tested in a native toolchain.
1049 .PHONY
: $(CHECK_MODULES
) $(NATIVE_CHECK_MODULES
) $(CROSS_CHECK_MODULES
)
1050 $(NATIVE_CHECK_MODULES
):
1051 @if
[ "$(host_canonical)" = "$(target_canonical)" ] ; then \
1052 dir=`echo $@ | sed -e 's/check-//'`; \
1053 if
[ -f .
/$${dir}/Makefile
] ; then \
1054 r
=`pwd`; export r
; \
1055 s
=`cd $(srcdir); pwd`; export s
; \
1057 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) check); \
1063 $(CROSS_CHECK_MODULES
):
1064 @
dir=`echo $@ | sed -e 's/check-//'`; \
1065 if
[ -f .
/$${dir}/Makefile
] ; then \
1066 r
=`pwd`; export r
; \
1067 s
=`cd $(srcdir); pwd`; export s
; \
1069 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) check); \
1074 # This rule is used to install the modules which use FLAGS_TO_PASS.
1075 # To build a target install-X means to cd to X and make install.
1076 .PHONY
: $(INSTALL_MODULES
)
1077 $(INSTALL_MODULES
): installdirs
1078 @
dir=`echo $@ | sed -e 's/install-//'`; \
1079 if
[ -f .
/$${dir}/Makefile
] ; then \
1080 r
=`pwd`; export r
; \
1081 s
=`cd $(srcdir); pwd`; export s
; \
1083 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) install); \
1088 # This rule is used to configure the modules which are built with the
1090 .PHONY
: $(CONFIGURE_TARGET_MODULES
)
1091 $(CONFIGURE_TARGET_MODULES
):
1092 @
dir=`echo $@ | sed -e 's/configure-target-//'`; \
1093 if
[ -d
$(TARGET_SUBDIR
)/$${dir} ]; then \
1094 r
=`pwd`; export r
; \
1095 $(CC_FOR_TARGET
) --print-multi-lib
> $(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
2> /dev
/null
; \
1096 if
[ -s
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
]; then \
1097 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/multilib.out
]; then \
1098 if cmp
$(TARGET_SUBDIR
)/$${dir}/multilib.out
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
> /dev
/null
; then \
1099 rm -f
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
; \
1101 echo
"Multilibs changed for $${dir}, reconfiguring"; \
1102 rm -f
$(TARGET_SUBDIR
)/$${dir}/multilib.out
$(TARGET_SUBDIR
)/$${dir}/Makefile
; \
1103 mv
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
$(TARGET_SUBDIR
)/$${dir}/multilib.out
; \
1106 mv
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
$(TARGET_SUBDIR
)/$${dir}/multilib.out
; \
1109 fi
; exit
0 # break command into two pieces
1110 @
dir=`echo $@ | sed -e 's/configure-target-//'`; \
1111 if
[ ! -d
$(TARGET_SUBDIR
) ]; then \
1113 elif
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1115 elif echo
" $(TARGET_CONFIGDIRS) " | grep
" $${dir} " >/dev
/null
2>&1; then \
1116 if
[ -d
$(srcdir)/$${dir} ]; then \
1117 [ -d
$(TARGET_SUBDIR
)/$${dir} ] || mkdir
$(TARGET_SUBDIR
)/$${dir};\
1118 r
=`pwd`; export r
; \
1119 s
=`cd $(srcdir); pwd`; export s
; \
1121 AR
="$(AR_FOR_TARGET)"; export AR
; \
1122 AS
="$(AS_FOR_TARGET)"; export AS
; \
1123 CC
="$(CC_FOR_TARGET)"; export CC
; \
1124 CFLAGS
="$(CFLAGS_FOR_TARGET)"; export CFLAGS
; \
1125 CXX
="$(CXX_FOR_TARGET)"; export CXX
; \
1126 CXXFLAGS
="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS
; \
1127 DLLTOOL
="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL
; \
1128 LD
="$(LD_FOR_TARGET)"; export LD
; \
1129 LDFLAGS
="$(LDFLAGS_FOR_TARGET)"; export LDFLAGS
; \
1130 NM
="$(NM_FOR_TARGET)"; export NM
; \
1131 RANLIB
="$(RANLIB_FOR_TARGET)"; export RANLIB
; \
1132 WINDRES
="$(WINDRES_FOR_TARGET)"; export WINDRES
; \
1133 echo Configuring in
$(TARGET_SUBDIR
)/$${dir}; \
1134 cd
$(TARGET_SUBDIR
)/$${dir}; \
1137 topdir
=$(srcdir) ;; \
1139 case
"$(TARGET_SUBDIR)" in \
1140 .
) topdir
="../$(srcdir)" ;; \
1141 *) topdir
="../../$(srcdir)" ;; \
1144 if
[ "$(srcdir)" = "." ] ; then \
1145 if
[ "$(TARGET_SUBDIR)" != "." ] ; then \
1146 if
$(SHELL
) $$s/symlink-tree
$${topdir}/$${dir} "no-such-file" ; then \
1147 if
[ -f Makefile
]; then \
1148 if
$(MAKE
) distclean; then \
1162 srcdiroption
="--srcdir=."; \
1165 srcdiroption
="--srcdir=$${topdir}/$${dir}"; \
1166 libsrcdir
="$$s/$${dir}"; \
1168 if
[ -f
$${libsrcdir}/configure
] ; then \
1169 $(SHELL
) $${libsrcdir}/configure \
1170 $(CONFIG_ARGUMENTS
) $${srcdiroption} \
1171 --with-target-subdir
="$(TARGET_SUBDIR)"; \
1173 $(SHELL
) $$s/configure \
1174 $(CONFIG_ARGUMENTS
) $${srcdiroption} \
1175 --with-target-subdir
="$(TARGET_SUBDIR)"; \
1184 # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
1185 # To build a target all-X means to cd to X and make all.
1186 .PHONY
: $(ALL_TARGET_MODULES
)
1187 $(ALL_TARGET_MODULES
):
1188 @
dir=`echo $@ | sed -e 's/all-target-//'`; \
1189 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1190 r
=`pwd`; export r
; \
1191 s
=`cd $(srcdir); pwd`; export s
; \
1193 (cd
$(TARGET_SUBDIR
)/$${dir}; $(MAKE
) $(TARGET_FLAGS_TO_PASS
) all); \
1198 # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
1199 # To build a target install-X means to cd to X and make install.
1200 .PHONY
: $(CHECK_TARGET_MODULES
)
1201 $(CHECK_TARGET_MODULES
):
1202 @
dir=`echo $@ | sed -e 's/check-target-//'`; \
1203 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1204 r
=`pwd`; export r
; \
1205 s
=`cd $(srcdir); pwd`; export s
; \
1207 (cd
$(TARGET_SUBDIR
)/$${dir};$(MAKE
) $(TARGET_FLAGS_TO_PASS
) check);\
1212 # This rule is used to install the modules which use
1213 # TARGET_FLAGS_TO_PASS. To build a target install-X means to cd to X
1215 .PHONY
: $(INSTALL_TARGET_MODULES
)
1216 $(INSTALL_TARGET_MODULES
): installdirs
1217 @
dir=`echo $@ | sed -e 's/install-target-//'`; \
1218 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1219 r
=`pwd`; export r
; \
1220 s
=`cd $(srcdir); pwd`; export s
; \
1222 (cd
$(TARGET_SUBDIR
)/$${dir}; \
1223 $(MAKE
) $(TARGET_FLAGS_TO_PASS
) install); \
1228 # This rule is used to build the modules which use X11_FLAGS_TO_PASS.
1229 # To build a target all-X means to cd to X and make all.
1230 .PHONY
: $(ALL_X11_MODULES
)
1232 @
dir=`echo $@ | sed -e 's/all-//'`; \
1233 if
[ -f .
/$${dir}/Makefile
] ; then \
1234 r
=`pwd`; export r
; \
1235 s
=`cd $(srcdir); pwd`; export s
; \
1238 $(MAKE
) $(FLAGS_TO_PASS
) $(X11_FLAGS_TO_PASS
) all); \
1243 # This rule is used to check the modules which use X11_FLAGS_TO_PASS.
1244 # To build a target check-X means to cd to X and make all.
1245 .PHONY
: $(CHECK_X11_MODULES
)
1246 $(CHECK_X11_MODULES
):
1247 @
dir=`echo $@ | sed -e 's/check-//'`; \
1248 if
[ -f .
/$${dir}/Makefile
] ; then \
1249 r
=`pwd`; export r
; \
1250 s
=`cd $(srcdir); pwd`; export s
; \
1253 $(MAKE
) $(FLAGS_TO_PASS
) $(X11_FLAGS_TO_PASS
) check); \
1258 # This rule is used to install the modules which use X11_FLAGS_TO_PASS.
1259 # To build a target install-X means to cd to X and make install.
1260 .PHONY
: $(INSTALL_X11_MODULES
)
1261 $(INSTALL_X11_MODULES
): installdirs
1262 @
dir=`echo $@ | sed -e 's/install-//'`; \
1263 if
[ -f .
/$${dir}/Makefile
] ; then \
1264 r
=`pwd`; export r
; \
1265 s
=`cd $(srcdir); pwd`; export s
; \
1268 $(MAKE
) $(FLAGS_TO_PASS
) $(X11_FLAGS_TO_PASS
) install); \
1273 # gcc is the only module which uses GCC_FLAGS_TO_PASS.
1276 @if
[ -f .
/gcc
/Makefile
] ; then \
1277 r
=`pwd`; export r
; \
1278 s
=`cd $(srcdir); pwd`; export s
; \
1280 (cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) all); \
1285 # Building GCC uses some tools for rebuilding "source" files
1286 # like texinfo, bison/byacc, etc. So we must depend on those.
1288 # While building GCC, it may be necessary to run various target
1289 # programs like the assembler, linker, etc. So we depend on
1292 # In theory, on an SMP all those dependencies can be resolved
1295 .PHONY
: bootstrap bootstrap-lean bootstrap2 bootstrap3 bootstrap4
1296 bootstrap bootstrap-lean bootstrap2 bootstrap3 bootstrap4
: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
1297 @r
=`pwd`; export r
; \
1298 s
=`cd $(srcdir); pwd`; export s
; \
1300 echo
"Bootstrapping the compiler"; \
1301 cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) $@
1302 @r
=`pwd`; export r
; \
1303 s
=`cd $(srcdir); pwd`; export s
; \
1305 *bootstrap4
) msg
="Comparing stage3 and stage4 of the compiler"; \
1306 compare
=compare3
;; \
1307 *-lean
) msg
="Comparing stage2 and stage3 of the compiler"; \
1308 compare
=compare-lean
;; \
1309 * ) msg
="Comparing stage2 and stage3 of the compiler"; \
1310 compare
=compare
;; \
1314 cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) $$compare
1315 @echo
"Building runtime libraries"; \
1319 cross
: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
1320 @r
=`pwd`; export r
; \
1321 s
=`cd $(srcdir); pwd`; export s
; \
1323 echo
"Building the C and C++ compiler"; \
1324 cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) LANGUAGES
="c c++"
1325 @echo
"Building runtime libraries"; \
1326 $(MAKE
) all LANGUAGES
="c c++"
1330 @if
[ -f .
/gcc
/Makefile
] ; then \
1331 r
=`pwd`; export r
; \
1332 s
=`cd $(srcdir); pwd`; export s
; \
1334 (cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) check); \
1341 @if
[ -f .
/gcc
/Makefile
] ; then \
1342 r
=`pwd`; export r
; \
1343 s
=`cd $(srcdir); pwd`; export s
; \
1345 (cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) LANGUAGES
="c c++" install); \
1350 .PHONY
: install-gcc-cross
1352 @if
[ -f .
/gcc
/Makefile
] ; then \
1353 r
=`pwd`; export r
; \
1354 s
=`cd $(srcdir); pwd`; export s
; \
1356 (cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) install); \
1360 # EXPERIMENTAL STUFF
1361 # This rule is used to install the modules which use FLAGS_TO_PASS.
1362 # To build a target install-X means to cd to X and make install.
1363 .PHONY
: install-dosrel
1364 install-dosrel
: installdirs info
1365 @
dir=`echo $@ | sed -e 's/install-//'`; \
1366 if
[ -f .
/$${dir}/Makefile
] ; then \
1367 r
=`pwd`; export r
; \
1368 s
=`cd $(srcdir); pwd`; export s
; \
1370 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) install); \
1375 install-dosrel-fake
:
1378 # This is a list of inter-dependencies among modules.
1380 all-autoconf
: all-m4 all-texinfo
1384 all-binutils
: all-libiberty all-opcodes all-bfd all-flex all-bison all-byacc
1385 all-bison
: all-texinfo
1389 all-dejagnu
: all-tcl all-expect all-tk
1390 all-diff
: all-libiberty
1392 all-emacs19
: all-bison all-byacc
1394 configure-target-examples
: $(ALL_GCC
)
1395 all-target-examples
: configure-target-examples
1396 all-expect
: all-tcl all-tk
1397 all-fileutils
: all-libiberty
1400 all-flex
: all-libiberty all-bison all-byacc
1401 all-gas
: all-libiberty all-opcodes all-bfd
1405 all-gcc
: all-bison all-byacc all-binutils all-gas all-ld
1406 GDB_TK
= all-tk all-tcl all-itcl all-tix
1407 all-gdb
: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-bison all-byacc all-sim
$(gdbnlmrequirements
) $(GDB_TK
)
1409 configure-target-gperf
: $(ALL_GCC
)
1410 all-target-gperf
: configure-target-gperf all-target-libiberty all-target-libg
++
1411 all-gprof
: all-libiberty all-bfd all-opcodes
1412 all-grep
: all-libiberty
1413 all-grez
: all-libiberty all-bfd all-opcodes
1414 all-gui
: all-gdb all-libproc all-target-librx
1416 all-gzip
: all-libiberty
1417 all-hello
: all-libiberty
1419 all-inet
: all-tcl all-send-pr all-perl
1420 all-ispell
: all-emacs19
1421 all-itcl
: all-tcl all-tk
1422 all-ld
: all-libiberty all-bfd all-opcodes all-bison all-byacc all-flex
1423 configure-target-libg
++: $(ALL_GCC
) configure-target-librx
1424 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
++
1425 configure-target-libgloss
: $(ALL_GCC
)
1426 all-target-libgloss
: configure-target-libgloss configure-target-newlib
1427 configure-target-libio
: $(ALL_GCC
)
1428 all-target-libio
: configure-target-libio all-gas all-ld all-gcc all-target-libiberty all-target-newlib
1429 check-target-libio
: all-target-libstdc
++
1431 configure-target-librx
: $(ALL_GCC
) configure-target-newlib
1432 all-target-librx
: configure-target-librx
1433 configure-target-libstdc
++: $(ALL_GCC
)
1434 all-target-libstdc
++: configure-target-libstdc
++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio
1435 all-m4
: all-libiberty
1436 all-make
: all-libiberty
1438 configure-target-newlib
: $(ALL_GCC
)
1439 all-target-newlib
: configure-target-newlib all-binutils all-gas all-gcc
1440 all-opcodes
: all-bfd all-libiberty
1441 all-patch
: all-libiberty
1443 all-prms
: all-libiberty
1446 all-recode
: all-libiberty
1447 all-sed
: all-libiberty
1448 all-send-pr
: all-prms
1450 all-sim
: all-libiberty all-bfd all-opcodes
1451 all-sn
: all-tcl all-tk all-itcl all-db all-grep
1452 all-tar
: all-libiberty
1454 all-tclX
: all-tcl all-tk
1456 all-texinfo
: all-libiberty
1458 all-tgas
: all-libiberty all-bfd all-opcodes
1460 all-tix
: all-tcl all-tk
1462 all-target-winsup
: all-target-newlib all-target-libiberty all-target-librx all-target-libio configure-target-winsup
1463 configure-target-winsup
: configure-target-newlib
1464 all-uudecode
: all-libiberty
1465 configure-target-libiberty
: $(ALL_GCC
)
1466 all-target-libiberty
: configure-target-libiberty all-gcc all-ld all-target-newlib
1467 all-target
: $(ALL_TARGET_MODULES
)
1468 install-target
: $(INSTALL_TARGET_MODULES
)
1470 ### other supporting targets
1476 installdirs: mkinstalldirs
1477 $(SHELL
) $(srcdir)/mkinstalldirs
$(MAKEDIRS
)
1479 dir.
info: do-install-info
1480 if
[ -f
$(srcdir)/texinfo
/gen-info-dir
] ; then \
1481 $(srcdir)/texinfo
/gen-info-dir
$(infodir) $(srcdir)/texinfo
/dir.info-template
> dir.
info.new
; \
1482 mv
-f
dir.
info.new
dir.
info ; \
1487 @echo
"Building a full distribution of this tree isn't done"
1488 @echo
"via 'make dist'. Check out the etc/ subdirectory"
1492 # Right now this just builds TAGS in each subdirectory. emacs19 has the
1493 # ability to use several tags files at once, so there is probably no need
1494 # to combine them into one big TAGS file (like CVS 1.3 does). We could
1495 # (if we felt like it) have this Makefile write a piece of elisp which
1496 # the user could load to tell emacs19 where all the TAGS files we just
1500 # with the gnu make, this is done automatically.
1502 Makefile
: Makefile.in configure.in
$(host_makefile_frag
) $(target_makefile_frag
)
1503 $(SHELL
) .
/config.status
1506 # Support for building net releases
1508 # Files in devo used in any net release.
1509 # ChangeLog omitted because it may refer to files which are not in this
1510 # distribution (perhaps it would be better to include it anyway).
1511 DEVO_SUPPORT
= README Makefile.in configure configure.in \
1512 config.guess config.sub config move-if-change \
1513 mpw-README mpw-build.in mpw-config.in mpw-configure mpw-install \
1514 COPYING COPYING.LIB install-sh config-ml.in symlink-tree \
1515 mkinstalldirs ltconfig ltmain.sh missing ylwrap
1517 # Files in devo/etc used in any net release.
1518 # ChangeLog omitted because it may refer to files which are not in this
1519 # distribution (perhaps it would be better to include it anyway).
1520 ETC_SUPPORT
= Makefile.in configure configure.in standards.texi \
1521 make-stds.texi standards.
info*
1523 # When you use `make setup-dirs' or `make taz' you should always redefine
1525 SUPPORT_FILES
= list-of-support-files-for-tool-in-question
1529 taz
: $(DEVO_SUPPORT
) $(SUPPORT_FILES
) \
1530 texinfo
/texinfo.
tex texinfo
/gpl.texinfo texinfo
/lgpl.texinfo
1531 # Take out texinfo from a few places; make simple BISON=bison line.
1532 sed
-e
'/^all\.normal: /s/\all-texinfo //' \
1533 -e
'/^ install-texinfo /d' \
1535 mv
-f tmp Makefile.in
1538 [ -z
"$(CONFIGURE_TARGET_MODULES)" ] \
1539 ||
$(MAKE
) $(CONFIGURE_TARGET_MODULES
) ALL_GCC
="" \
1540 CC_FOR_TARGET
="$(CC)" CXX_FOR_TARGET
="$(CXX)"
1541 # Make links, and run "make diststuff" or "make info" when needed.
1542 rm -rf proto-toplev
; mkdir proto-toplev
1543 set
-e
; dirs
="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
1544 for d in
$$dirs ; do \
1545 if
[ -d
$$d ]; then \
1546 if
[ ! -f
$$d/Makefile
] ; then true
; \
1547 elif grep
'^diststuff:' $$d/Makefile
>/dev
/null
; then \
1548 (cd
$$d ; $(MAKE
) diststuff
) || exit
1 ; \
1549 elif grep
'^info:' $$d/Makefile
>/dev
/null
; then \
1550 (cd
$$d ; $(MAKE
) info ) || exit
1 ; \
1552 if
[ -d
$$d/proto-
$$d.
dir ]; then \
1553 ln
-s ..
/$$d/proto-
$$d.
dir proto-toplev
/$$d ; \
1555 ln
-s ..
/$$d proto-toplev
/$$d ; \
1557 else ln
-s ..
/$$d proto-toplev
/$$d ; fi
; \
1559 cd etc
; $(MAKE
) info
1562 mkdir proto-toplev
/etc
1563 (cd proto-toplev
/etc
; \
1564 for i in
$(ETC_SUPPORT
); do \
1565 ln
-s ..
/..
/etc
/$$i .
; \
1568 # Take out texinfo from configurable dirs
1569 rm proto-toplev
/configure.in
1570 sed
-e
'/^host_tools=/s/texinfo //' \
1571 <configure.in
>proto-toplev
/configure.in
1573 mkdir proto-toplev
/texinfo
1574 ln
-s ..
/..
/texinfo
/texinfo.
tex proto-toplev
/texinfo
/
1575 ln
-s ..
/..
/texinfo
/gpl.texinfo proto-toplev
/texinfo
/
1576 ln
-s ..
/..
/texinfo
/lgpl.texinfo proto-toplev
/texinfo
/
1577 if
test -r texinfo
/util
/tex3patch
; then \
1578 mkdir proto-toplev
/texinfo
/util
&& \
1579 ln
-s ..
/..
/..
/texinfo
/util
/tex3patch proto-toplev
/texinfo
/util
; \
1581 chmod og
=u
`find . -print`
1582 if grep AM_INIT_AUTOMAKE
$(TOOL
)/configure.in
>/dev
/null
2>&1; then \
1583 ver
=`sed < $(TOOL)/configure.in -n 's/AM_INIT_AUTOMAKE[^,]*, *\([^)]*\))/\1/p'`; \
1585 ver
=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \
1587 $(MAKE
) -f Makefile.in do-tar-gz TOOL
=$(TOOL
) VER
=$$ver
1590 echo
"==> Making $(TOOL)-$(VER).tar.gz"
1591 -rm -f
$(TOOL
)-$(VER
)
1592 ln
-s proto-toplev
$(TOOL
)-$(VER
)
1593 tar cfh
$(TOOL
)-$(VER
).
tar $(TOOL
)-$(VER
)
1594 $(GZIPPROG
) -v
-9 $(TOOL
)-$(VER
).
tar
1596 TEXINFO_SUPPORT
= texinfo
/texinfo.
tex texinfo
/gpl.texinfo texinfo
/lgpl.texinfo
1597 DIST_SUPPORT
= $(DEVO_SUPPORT
) $(TEXINFO_SUPPORT
)
1600 GAS_SUPPORT_DIRS
= bfd
include libiberty opcodes setup.com makefile.vms
1601 gas.
tar.gz
: $(DIST_SUPPORT
) $(GAS_SUPPORT_DIRS
) gas
1602 $(MAKE
) -f Makefile.in taz TOOL
=gas \
1603 SUPPORT_FILES
="$(GAS_SUPPORT_DIRS)"
1605 # The FSF "binutils" release includes gprof and ld.
1606 .PHONY
: binutils.
tar.gz
1607 BINUTILS_SUPPORT_DIRS
= bfd gas
include libiberty opcodes
ld gprof setup.com makefile.vms
1608 binutils.
tar.gz
: $(DIST_SUPPORT
) $(BINUTILS_SUPPORT_DIRS
) binutils
1609 $(MAKE
) -f Makefile.in taz TOOL
=binutils \
1610 SUPPORT_FILES
="$(BINUTILS_SUPPORT_DIRS) makeall.bat configure.bat"
1612 .PHONY
: gas
+binutils.
tar.gz
1613 GASB_SUPPORT_DIRS
= $(GAS_SUPPORT_DIRS
) binutils
ld gprof
1614 gas
+binutils.
tar.gz
: $(DIST_SUPPORT
) $(GASB_SUPPORT_DIRS
) gas
1615 $(MAKE
) -f Makefile.in taz TOOL
=gas \
1616 SUPPORT_FILES
="$(GASB_SUPPORT_DIRS) makeall.bat configure.bat"
1618 .PHONY
: libg
++.
tar.gz
1619 LIBGXX_SUPPORT_DIRS
=include libstdc
++ libio librx libiberty
1620 libg
++.
tar.gz
: $(DIST_SUPPORT
) libg
++
1621 $(MAKE
) -f Makefile.in taz TOOL
=libg
++ \
1622 SUPPORT_FILES
="$(LIBGXX_SUPPORT_DIRS)"
1624 GNATS_SUPPORT_DIRS
=include libiberty send-pr
1625 gnats.
tar.gz
: $(DIST_SUPPORT
) $(GNATS_SUPPORT_DIRS
) gnats
1626 $(MAKE
) -f Makefile.in taz TOOL
=gnats \
1627 SUPPORT_FILES
="$(GNATS_SUPPORT_DIRS)"
1630 GDB_SUPPORT_DIRS
= bfd
include libiberty mmalloc opcodes readline sim utils
1631 GDBTK_SUPPORT_DIRS
= `if [ -d tcl -a -d tk ] ; then echo tcl tk ; fi`
1632 gdb.
tar.gz
: $(DIST_SUPPORT
) $(GDB_SUPPORT_DIRS
) gdb
1633 $(MAKE
) -f Makefile.in taz TOOL
=gdb \
1634 SUPPORT_FILES
="$(GDB_SUPPORT_DIRS) $(GDBTK_SUPPORT_DIRS)"
1636 .PHONY
: newlib.
tar.gz
1637 NEWLIB_SUPPORT_DIRS
=libgloss
1638 # taz configures for the sun4 target which won't configure newlib.
1639 # We need newlib configured so that the .info files are made.
1640 # Unfortunately, it is not enough to just configure newlib separately:
1641 # taz will build the .info files but since SUBDIRS won't contain newlib,
1642 # distclean won't be run (leaving Makefile, config.status, and the tmp files
1643 # used in building the .info files, eg: *.def, *.ref).
1644 # The problem isn't solvable however without a lot of extra work because
1645 # target libraries are built in subdir $(target_alias) which gets nuked during
1646 # the make distclean. For now punt on the issue of shipping newlib info files
1647 # with newlib net releases and wait for a day when some native target (sun4?)
1648 # supports newlib (if only minimally).
1649 newlib.
tar.gz
: $(DIST_SUPPORT
) $(NEWLIB_SUPPORT_DIRS
) newlib
1650 $(MAKE
) -f Makefile.in taz TOOL
=newlib \
1651 SUPPORT_FILES
="$(NEWLIB_SUPPORT_DIRS)" \
1652 DEVO_SUPPORT
="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib
1658 # end of Makefile.in