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
) \
186 if [ -f $$r/gcc/xgcc ] ; then \
187 if [ -f $$r/$(TARGET_SUBDIR)/newlib/Makefile ] ; then \
188 if [ -f $$r/$(TARGET_SUBDIR)/winsup/Makefile ] ; then \
189 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; \
191 echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \
194 echo $$r/gcc/xgcc -B$$r/gcc/; \
197 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
200 t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \
204 # If CC_FOR_TARGET is not overriden on the command line, then this
205 # variable is passed down to the gcc Makefile, where it is used to
206 # build libgcc2.a. We define it here so that it can itself be
207 # overridden on the command line.
208 GCC_FOR_TARGET
= $$r/gcc
/xgcc
-B
$$r/gcc
/
212 if [ -f $$r/gcc/xgcc ] ; then \
213 if [ -f $$r/$(TARGET_SUBDIR)/newlib/Makefile ] ; then \
214 if [ -f $$r/$(TARGET_SUBDIR)/winsup/Makefile ] ; then \
215 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; \
217 echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \
220 echo $$r/gcc/xgcc -B$$r/gcc/; \
223 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
226 t='$(program_transform_name)'; echo c++ | sed -e 's/x/x/' $$t; \
231 if [ -f $$r/gas/as-new ] ; then \
232 echo $$r/gas/as-new ; \
234 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
237 t='$(program_transform_name)'; echo as | sed -e 's/x/x/' $$t ; \
242 if [ -f $$r/ld/ld-new ] ; then \
243 echo $$r/ld/ld-new ; \
245 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
248 t='$(program_transform_name)'; echo ld | sed -e 's/x/x/' $$t ; \
252 DLLTOOL_FOR_TARGET
= ` \
253 if [ -f $$r/binutils/dlltool ] ; then \
254 echo $$r/binutils/dlltool ; \
256 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
259 t='$(program_transform_name)'; echo dlltool | sed -e 's/x/x/' $$t ; \
263 WINDRES_FOR_TARGET
= ` \
264 if [ -f $$r/binutils/windres ] ; then \
265 echo $$r/binutils/windres ; \
267 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
270 t='$(program_transform_name)'; echo windres | sed -e 's/x/x/' $$t ; \
275 if [ -f $$r/binutils/ar ] ; then \
276 echo $$r/binutils/ar ; \
278 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
281 t='$(program_transform_name)'; echo ar | sed -e 's/x/x/' $$t ; \
285 RANLIB_FOR_TARGET
= ` \
286 if [ -f $$r/binutils/ranlib ] ; then \
287 echo $$r/binutils/ranlib ; \
289 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
292 t='$(program_transform_name)'; echo ranlib | sed -e 's/x/x/' $$t ; \
297 if [ -f $$r/binutils/nm-new ] ; then \
298 echo $$r/binutils/nm-new ; \
300 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
303 t='$(program_transform_name)'; echo nm | sed -e 's/x/x/' $$t ; \
307 #### host and target specific makefile fragments come in here.
310 # Flags to pass down to all sub-makes.
311 # Please keep these in alphabetical order.
312 BASE_FLAGS_TO_PASS
= \
313 "AR_FLAGS=$(AR_FLAGS)" \
314 "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
315 "AS_FOR_TARGET=$(AS_FOR_TARGET)" \
317 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
318 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
320 "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
321 "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
322 "CXXFLAGS=$(CXXFLAGS)" \
323 "CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \
324 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
325 "DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \
326 "INSTALL=$(INSTALL)" \
327 "INSTALL_DATA=$(INSTALL_DATA)" \
328 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
329 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
330 "LDFLAGS=$(LDFLAGS)" \
332 "LD_FOR_TARGET=$(LD_FOR_TARGET)" \
333 "LIBCFLAGS=$(LIBCFLAGS)" \
334 "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
335 "LIBCXXFLAGS=$(LIBCXXFLAGS)" \
336 "LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \
339 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
340 "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
341 "PICFLAG=$(PICFLAG)" \
342 "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
343 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
346 "RUNTEST=$(RUNTEST)" \
347 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
348 "WINDRES_FOR_TARGET=$(WINDRES_FOR_TARGET)" \
350 "exec_prefix=$(exec_prefix)" \
354 # Flags to pass down to most sub-makes, in which we're building with
355 # the host environment.
356 # If any variables are added here, they must be added to do-*, below.
362 'DLLTOOL=$(DLLTOOL)' \
368 FLAGS_TO_PASS
= $(BASE_FLAGS_TO_PASS
) $(EXTRA_HOST_FLAGS
)
370 # Flags that are concerned with the location of the X11 include files
373 # NOTE: until the top-level is getting the values via autoconf, it only
374 # causes problems to have this top-level Makefile overriding the autoconf-set
375 # values in child directories. Only variables that don't conflict with
376 # autoconf'ed ones should be passed by X11_FLAGS_TO_PASS for now.
378 X11_FLAGS_TO_PASS
= \
379 'X11_EXTRA_CFLAGS=$(X11_EXTRA_CFLAGS)' \
380 'X11_EXTRA_LIBS=$(X11_EXTRA_LIBS)'
382 # Flags to pass down to makes which are built with the target environment.
383 # The double $ decreases the length of the command line; the variables
384 # are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them.
385 # If any variables are added here, they must be added to do-*, below.
386 EXTRA_TARGET_FLAGS
= \
387 'AR=$$(AR_FOR_TARGET)' \
388 'AS=$$(AS_FOR_TARGET)' \
389 'CC=$$(CC_FOR_TARGET)' \
390 'CFLAGS=$$(CFLAGS_FOR_TARGET)' \
391 'CXX=$$(CXX_FOR_TARGET)' \
392 'CXXFLAGS=$$(CXXFLAGS_FOR_TARGET)' \
393 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
394 'LD=$$(LD_FOR_TARGET)' \
395 'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET)' \
396 'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET)' \
397 'NM=$$(NM_FOR_TARGET)' \
398 'PICFLAG=$$(PICFLAG_FOR_TARGET)' \
399 'RANLIB=$$(RANLIB_FOR_TARGET)' \
400 'WINDRES=$$(WINDRES_FOR_TARGET)'
402 TARGET_FLAGS_TO_PASS
= $(BASE_FLAGS_TO_PASS
) $(EXTRA_TARGET_FLAGS
)
404 # Flags to pass down to gcc. gcc builds a library, libgcc.a, so it
405 # unfortunately needs the native compiler and the target ar and
407 # If any variables are added here, they must be added to do-*, below.
408 # The HOST_* variables are a special case, which are used for the gcc
409 # cross-building scheme.
411 'AR=$$(AR_FOR_TARGET)' \
415 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
416 'HOST_CC=$(CC_FOR_BUILD)' \
417 'HOST_PREFIX=$(HOST_PREFIX)' \
418 'HOST_PREFIX_1=$(HOST_PREFIX_1)' \
420 'RANLIB=$$(RANLIB_FOR_TARGET)' \
421 'WINDRES=$$(WINDRES_FOR_TARGET)' \
422 "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
423 "`if test x'$(LANGUAGES)' != x; then echo 'LANGUAGES=$(LANGUAGES)'; else echo 'XFOO=bar'; fi`" \
424 "`if test x'$(STMP_FIXPROTO)' != x; then echo 'STMP_FIXPROTO=$(STMP_FIXPROTO)'; else echo 'XFOO=bar'; fi`" \
425 "`if test x'$(LIMITS_H_TEST)' != x; then echo 'LIMITS_H_TEST=$(LIMITS_H_TEST)'; else echo 'XFOO=bar'; fi`" \
426 "`if test x'$(LIBGCC1_TEST)' != x; then echo 'LIBGCC1_TEST=$(LIBGCC1_TEST)'; else echo 'XFOO=bar'; fi`" \
427 "`if test x'$(LIBGCC2_CFLAGS)' != x; then echo 'LIBGCC2_CFLAGS=$(LIBGCC2_CFLAGS)'; else echo 'XFOO=bar'; fi`" \
428 "`if test x'$(LIBGCC2_DEBUG_CFLAGS)' != x; then echo 'LIBGCC2_DEBUG_CFLAGS=$(LIBGCC2_DEBUG_CFLAGS)'; else echo 'XFOO=bar'; fi`" \
429 "`if test x'$(LIBGCC2_INCLUDES)' != x; then echo 'LIBGCC2_INCLUDES=$(LIBGCC2_INCLUDES)'; else echo 'XFOO=bar'; fi`" \
430 "`if test x'$(ENQUIRE)' != x; then echo 'ENQUIRE=$(ENQUIRE)'; else echo 'XFOO=bar'; fi`" \
431 "`if test x'$(BOOT_CFLAGS)' != x; then echo 'BOOT_CFLAGS=$(BOOT_CFLAGS)'; else echo 'XFOO=bar'; fi`"
433 GCC_FLAGS_TO_PASS
= $(BASE_FLAGS_TO_PASS
) $(EXTRA_GCC_FLAGS
)
435 # This is a list of the targets for all of the modules which are compiled
436 # using $(FLAGS_TO_PASS).
495 # This is a list of the check targets for all of the modules which are
496 # compiled using $(FLAGS_TO_PASS).
498 # The list is in two parts. The first lists those tools which
499 # are tested as part of the host's native tool-chain, and not
500 # tested in a cross configuration.
501 NATIVE_CHECK_MODULES
= \
506 CROSS_CHECK_MODULES
= \
558 CHECK_MODULES
=$(NATIVE_CHECK_MODULES
) $(CROSS_CHECK_MODULES
)
560 # This is a list of the install targets for all of the modules which are
561 # compiled using $(FLAGS_TO_PASS).
562 # We put install-opcodes before install-binutils because the installed
563 # binutils might be on PATH, and they might need the shared opcodes
622 # This is a list of the targets for all of the modules which are compiled
623 # using $(X11_FLAGS_TO_PASS).
635 # This is a list of the check targets for all of the modules which are
636 # compiled using $(X11_FLAGS_TO_PASS).
637 CHECK_X11_MODULES
= \
647 # This is a list of the install targets for all the modules which are
648 # compiled using $(X11_FLAGS_TO_PASS).
649 INSTALL_X11_MODULES
= \
660 # This is a list of the targets for all of the modules which are compiled
661 # using $(TARGET_FLAGS_TO_PASS).
662 ALL_TARGET_MODULES
= \
664 all-target-libstdc
++ \
669 all-target-libgloss \
670 all-target-libiberty \
674 # This is a list of the configure targets for all of the modules which
675 # are compiled using the target tools.
676 CONFIGURE_TARGET_MODULES
= \
677 configure-target-libio \
678 configure-target-libstdc
++ \
679 configure-target-librx \
680 configure-target-libg
++ \
681 configure-target-newlib \
682 configure-target-winsup \
683 configure-target-libgloss \
684 configure-target-libiberty \
685 configure-target-gperf \
686 configure-target-examples
688 # This is a list of the check targets for all of the modules which are
689 # compiled using $(TARGET_FLAGS_TO_PASS).
690 CHECK_TARGET_MODULES
= \
692 check-target-libstdc
++ \
693 check-target-libg
++ \
694 check-target-newlib \
695 check-target-winsup \
696 check-target-libiberty \
699 # This is a list of the install targets for all of the modules which are
700 # compiled using $(TARGET_FLAGS_TO_PASS).
701 INSTALL_TARGET_MODULES
= \
702 install-target-libio \
703 install-target-libstdc
++ \
704 install-target-libg
++ \
705 install-target-newlib \
706 install-target-winsup \
707 install-target-libgloss \
708 install-target-libiberty \
711 # This is a list of the targets for which we can do a clean-{target}.
770 # All of the target modules that can be cleaned
771 CLEAN_TARGET_MODULES
= \
773 clean-target-libstdc
++ \
775 clean-target-libg
++ \
776 clean-target-newlib \
777 clean-target-winsup \
778 clean-target-libgloss \
779 clean-target-libiberty \
781 clean-target-examples
783 # All of the x11 modules that can be cleaned
784 CLEAN_X11_MODULES
= \
795 # The first rule in the file had better be this one. Don't put any above it.
799 # The target built for a native build.
804 $(ALL_TARGET_MODULES
) \
807 # Do a target for all the subdirectories. A ``make do-X'' will do a
808 # ``make X'' in all subdirectories (because, in general, there is a
809 # dependency (below) of X upon do-X, a ``make X'' will also do this,
810 # but it may do additional work as well).
811 # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
812 # because it is so large that it can easily overflow the command line
813 # length limit on some systems.
822 do-maintainer-clean \
826 @target
=`echo $@ | sed -e 's/^do-//'`; \
828 s
=`cd $(srcdir); pwd`; export s
; \
830 for i in
$(SUBDIRS
) -dummy-
; do \
831 if
[ -f .
/$$i/Makefile
]; then \
834 for flag in
$(EXTRA_GCC_FLAGS
); do \
835 eval
`echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
839 for flag in
$(EXTRA_HOST_FLAGS
); do \
840 eval
`echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
844 export AR AS CC CXX LD NM RANLIB DLLTOOL WINDRES
; \
846 $(MAKE
) $(BASE_FLAGS_TO_PASS
) "AR=$${AR}" "AS=$${AS}" \
847 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
848 "RANLIB=$${RANLIB}" \
849 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
851 then true
; else exit
1; fi
; \
854 @target
=`echo $@ | sed -e 's/^do-//'`; \
856 s
=`cd $(srcdir); pwd`; export s
; \
858 for i in
$(TARGET_CONFIGDIRS
) -dummy-
; do \
859 if
[ -f
$(TARGET_SUBDIR
)/$$i/Makefile
]; then \
860 for flag in
$(EXTRA_TARGET_FLAGS
); do \
861 eval
`echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
863 export AR AS CC CXX LD NM RANLIB DLLTOOL WINDRES
; \
864 if
(cd
$(TARGET_SUBDIR
)/$$i; \
865 $(MAKE
) $(BASE_FLAGS_TO_PASS
) "AR=$${AR}" "AS=$${AS}" \
866 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
867 "RANLIB=$${RANLIB}" \
868 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
870 then true
; else exit
1; fi
; \
874 # Here are the targets which correspond to the do-X targets.
876 .PHONY
: info installcheck dvi install-info
877 .PHONY
: clean distclean mostlyclean maintainer-clean
realclean
878 .PHONY
: local-clean local-distclean local-maintainer-clean
880 installcheck: do-installcheck
883 # Make sure makeinfo is built before we do a `make info'.
886 install-info
: do-install-info
dir.
info
887 s
=`cd $(srcdir); pwd`; export s
; \
888 if
[ -f
dir.
info ] ; then \
889 $(INSTALL_DATA
) dir.
info $(infodir)/dir.
info ; \
893 -rm -f
*.a TEMP errs core
*.o
*~ \
#* TAGS *.E
896 -rm -f Makefile config.status config.cache mh-frag mt-frag
897 -if
[ "$(TARGET_SUBDIR)" != "." ]; then \
898 rm -rf
$(TARGET_SUBDIR
); \
901 local-maintainer-clean
:
902 @echo
"This command is intended for maintainers to use;"
903 @echo
"it deletes files that may require special tools to rebuild."
905 clean: do-clean local-clean
906 mostlyclean: do-mostlyclean local-clean
907 distclean: do-distclean local-clean local-distclean
908 maintainer-clean
: local-maintainer-clean do-maintainer-clean local-clean
909 maintainer-clean
: local-distclean
910 realclean: maintainer-clean
912 # This rule is used to clean specific modules.
913 .PHONY
: $(CLEAN_MODULES
) $(CLEAN_X11_MODULES
) clean-gcc
914 $(CLEAN_MODULES
) $(CLEAN_X11_MODULES
) clean-gcc
:
915 @
dir=`echo $@ | sed -e 's/clean-//'`; \
916 if
[ -f .
/$${dir}/Makefile
] ; then \
918 s
=`cd $(srcdir); pwd`; export s
; \
920 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) clean); \
925 .PHONY
: $(CLEAN_TARGET_MODULES
)
926 $(CLEAN_TARGET_MODULES
):
927 @
dir=`echo $@ | sed -e 's/clean-target-//'`; \
928 rm -f
$(TARGET_SUBDIR
)/$${dir}/multilib.out
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
; \
929 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
931 s
=`cd $(srcdir); pwd`; export s
; \
933 (cd
$(TARGET_SUBDIR
)/$${dir}; $(MAKE
) $(TARGET_FLAGS_TO_PASS
) clean); \
938 clean-target
: $(CLEAN_TARGET_MODULES
)
943 check: $(CHECK_MODULES
) \
944 $(CHECK_TARGET_MODULES
) \
945 $(CHECK_X11_MODULES
) \
948 # Installation targets.
950 .PHONY
: install uninstall source-vault binary-vault vault-install
951 install: $(INSTALL_TARGET
)
954 @echo
"the uninstall target is not supported in this tree"
957 $(MAKE
) -f .
/release
/Build-A-Release \
958 host
=$(host_alias
) source-vault
961 $(MAKE
) -f .
/release
/Build-A-Release \
962 host
=$(host_alias
) target
=$(target_alias
)
965 @if
[ -f .
/release
/vault-install
] ; then \
966 .
/release
/vault-install
$(host_alias
) $(target_alias
) ; \
972 install.
all: install-no-fixedincludes
973 @if
[ -f .
/gcc
/Makefile
] ; then \
974 r
=`pwd` ; export r
; \
977 $(MAKE
) $(FLAGS_TO_PASS
) install-headers
) ; \
982 # inet-install is used because the I*Net wants DejaGNU installed but
983 # not built. Similarly, gzip is built but not installed.
985 $(MAKE
) INSTALL_MODULES
="`echo $(INSTALL_MODULES) | sed -e 's/install-dejagnu//' -e 's/install-gzip//'`" install
987 # install-no-fixedincludes is used because Cygnus can not distribute
988 # the fixed header files.
989 .PHONY
: install-no-fixedincludes
990 install-no-fixedincludes
: \
993 $(INSTALL_TARGET_MODULES
) \
994 $(INSTALL_X11_MODULES
) \
997 # Install the gcc headers files, but not the fixed include files,
998 # which Cygnus is not allowed to distribute. This rule is very
999 # dependent on the workings of the gcc Makefile.in.
1000 .PHONY
: gcc-no-fixedincludes
1001 gcc-no-fixedincludes
:
1002 @if
[ -f .
/gcc
/Makefile
]; then \
1003 rm -rf gcc
/tmp-include
; \
1004 mv gcc
/include gcc
/tmp-include
2>/dev
/null
; \
1005 mkdir gcc
/include; \
1006 cp
$(srcdir)/gcc
/gsyslimits.h gcc
/include/syslimits.h
; \
1007 touch gcc
/stmp-fixinc gcc
/include/fixed
; \
1008 rm -f gcc
/stmp-headers gcc
/stmp-int-hdrs
; \
1009 r
=`pwd`; export r
; \
1010 s
=`cd $(srcdir); pwd` ; export s
; \
1013 $(MAKE
) $(GCC_FLAGS_TO_PASS
) install); \
1014 rm -rf gcc
/include; \
1015 mv gcc
/tmp-include gcc
/include 2>/dev
/null
; \
1018 # This rule is used to build the modules which use FLAGS_TO_PASS. To
1019 # build a target all-X means to cd to X and make all.
1021 # all-gui, and all-libproc are handled specially because
1022 # they are still experimental, and if they fail to build, that
1023 # shouldn't stop "make all".
1024 .PHONY
: $(ALL_MODULES
) all-gui all-libproc
1025 $(ALL_MODULES
) all-gui all-libproc
:
1026 @
dir=`echo $@ | sed -e 's/all-//'`; \
1027 if
[ -f .
/$${dir}/Makefile
] ; then \
1028 r
=`pwd`; export r
; \
1029 s
=`cd $(srcdir); pwd`; export s
; \
1031 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) all); \
1036 # These rules are used to check the modules which use FLAGS_TO_PASS.
1037 # To build a target check-X means to cd to X and make check. Some
1038 # modules are only tested in a native toolchain.
1040 .PHONY
: $(CHECK_MODULES
) $(NATIVE_CHECK_MODULES
) $(CROSS_CHECK_MODULES
)
1041 $(NATIVE_CHECK_MODULES
):
1042 @if
[ "$(host_canonical)" = "$(target_canonical)" ] ; then \
1043 dir=`echo $@ | sed -e 's/check-//'`; \
1044 if
[ -f .
/$${dir}/Makefile
] ; then \
1045 r
=`pwd`; export r
; \
1046 s
=`cd $(srcdir); pwd`; export s
; \
1048 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) check); \
1054 $(CROSS_CHECK_MODULES
):
1055 @
dir=`echo $@ | sed -e 's/check-//'`; \
1056 if
[ -f .
/$${dir}/Makefile
] ; then \
1057 r
=`pwd`; export r
; \
1058 s
=`cd $(srcdir); pwd`; export s
; \
1060 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) check); \
1065 # This rule is used to install the modules which use FLAGS_TO_PASS.
1066 # To build a target install-X means to cd to X and make install.
1067 .PHONY
: $(INSTALL_MODULES
)
1068 $(INSTALL_MODULES
): installdirs
1069 @
dir=`echo $@ | sed -e 's/install-//'`; \
1070 if
[ -f .
/$${dir}/Makefile
] ; then \
1071 r
=`pwd`; export r
; \
1072 s
=`cd $(srcdir); pwd`; export s
; \
1074 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) install); \
1079 # This rule is used to configure the modules which are built with the
1081 .PHONY
: $(CONFIGURE_TARGET_MODULES
)
1082 $(CONFIGURE_TARGET_MODULES
):
1083 @
dir=`echo $@ | sed -e 's/configure-target-//'`; \
1084 if
[ -d
$(TARGET_SUBDIR
)/$${dir} ]; then \
1085 r
=`pwd`; export r
; \
1086 $(CC_FOR_TARGET
) --print-multi-lib
> $(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
2> /dev
/null
; \
1087 if
[ -s
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
]; then \
1088 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/multilib.out
]; then \
1089 if cmp
$(TARGET_SUBDIR
)/$${dir}/multilib.out
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
> /dev
/null
; then \
1090 rm -f
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
; \
1092 echo
"Multilibs changed for $${dir}, reconfiguring"; \
1093 rm -f
$(TARGET_SUBDIR
)/$${dir}/multilib.out
$(TARGET_SUBDIR
)/$${dir}/Makefile
; \
1094 mv
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
$(TARGET_SUBDIR
)/$${dir}/multilib.out
; \
1097 mv
$(TARGET_SUBDIR
)/$${dir}/tmpmulti.out
$(TARGET_SUBDIR
)/$${dir}/multilib.out
; \
1100 fi
; exit
0 # break command into two pieces
1101 @
dir=`echo $@ | sed -e 's/configure-target-//'`; \
1102 if
[ ! -d
$(TARGET_SUBDIR
) ]; then \
1104 elif
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1106 elif echo
" $(TARGET_CONFIGDIRS) " | grep
" $${dir} " >/dev
/null
2>&1; then \
1107 if
[ -d
$(srcdir)/$${dir} ]; then \
1108 [ -d
$(TARGET_SUBDIR
)/$${dir} ] || mkdir
$(TARGET_SUBDIR
)/$${dir};\
1109 r
=`pwd`; export r
; \
1110 s
=`cd $(srcdir); pwd`; export s
; \
1112 AR
="$(AR_FOR_TARGET)"; export AR
; \
1113 AS
="$(AS_FOR_TARGET)"; export AS
; \
1114 CC
="$(CC_FOR_TARGET)"; export CC
; \
1115 CFLAGS
="$(CFLAGS_FOR_TARGET)"; export CFLAGS
; \
1116 CXX
="$(CXX_FOR_TARGET)"; export CXX
; \
1117 CXXFLAGS
="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS
; \
1118 DLLTOOL
="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL
; \
1119 LD
="$(LD_FOR_TARGET)"; export LD
; \
1120 LDFLAGS
="$(LDFLAGS_FOR_TARGET)"; export LDFLAGS
; \
1121 NM
="$(NM_FOR_TARGET)"; export NM
; \
1122 RANLIB
="$(RANLIB_FOR_TARGET)"; export RANLIB
; \
1123 WINDRES
="$(WINDRES_FOR_TARGET)"; export WINDRES
; \
1124 echo Configuring in
$(TARGET_SUBDIR
)/$${dir}; \
1125 cd
$(TARGET_SUBDIR
)/$${dir}; \
1128 topdir
=$(srcdir) ;; \
1130 case
"$(TARGET_SUBDIR)" in \
1131 .
) topdir
="../$(srcdir)" ;; \
1132 *) topdir
="../../$(srcdir)" ;; \
1135 if
[ "$(srcdir)" = "." ] ; then \
1136 if
[ "$(TARGET_SUBDIR)" != "." ] ; then \
1137 if
$(SHELL
) $$s/symlink-tree
$${topdir}/$${dir} "no-such-file" ; then \
1138 if
[ -f Makefile
]; then \
1139 if
$(MAKE
) distclean; then \
1153 srcdiroption
="--srcdir=."; \
1156 srcdiroption
="--srcdir=$${topdir}/$${dir}"; \
1157 libsrcdir
="$$s/$${dir}"; \
1159 if
[ -f
$${libsrcdir}/configure
] ; then \
1160 $(SHELL
) $${libsrcdir}/configure \
1161 $(CONFIG_ARGUMENTS
) $${srcdiroption} \
1162 --with-target-subdir
="$(TARGET_SUBDIR)"; \
1164 $(SHELL
) $$s/configure \
1165 $(CONFIG_ARGUMENTS
) $${srcdiroption} \
1166 --with-target-subdir
="$(TARGET_SUBDIR)"; \
1175 # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
1176 # To build a target all-X means to cd to X and make all.
1177 .PHONY
: $(ALL_TARGET_MODULES
)
1178 $(ALL_TARGET_MODULES
):
1179 @
dir=`echo $@ | sed -e 's/all-target-//'`; \
1180 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1181 r
=`pwd`; export r
; \
1182 s
=`cd $(srcdir); pwd`; export s
; \
1184 (cd
$(TARGET_SUBDIR
)/$${dir}; $(MAKE
) $(TARGET_FLAGS_TO_PASS
) all); \
1189 # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
1190 # To build a target install-X means to cd to X and make install.
1191 .PHONY
: $(CHECK_TARGET_MODULES
)
1192 $(CHECK_TARGET_MODULES
):
1193 @
dir=`echo $@ | sed -e 's/check-target-//'`; \
1194 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1195 r
=`pwd`; export r
; \
1196 s
=`cd $(srcdir); pwd`; export s
; \
1198 (cd
$(TARGET_SUBDIR
)/$${dir};$(MAKE
) $(TARGET_FLAGS_TO_PASS
) check);\
1203 # This rule is used to install the modules which use
1204 # TARGET_FLAGS_TO_PASS. To build a target install-X means to cd to X
1206 .PHONY
: $(INSTALL_TARGET_MODULES
)
1207 $(INSTALL_TARGET_MODULES
): installdirs
1208 @
dir=`echo $@ | sed -e 's/install-target-//'`; \
1209 if
[ -f
$(TARGET_SUBDIR
)/$${dir}/Makefile
] ; then \
1210 r
=`pwd`; export r
; \
1211 s
=`cd $(srcdir); pwd`; export s
; \
1213 (cd
$(TARGET_SUBDIR
)/$${dir}; \
1214 $(MAKE
) $(TARGET_FLAGS_TO_PASS
) install); \
1219 # This rule is used to build the modules which use X11_FLAGS_TO_PASS.
1220 # To build a target all-X means to cd to X and make all.
1221 .PHONY
: $(ALL_X11_MODULES
)
1223 @
dir=`echo $@ | sed -e 's/all-//'`; \
1224 if
[ -f .
/$${dir}/Makefile
] ; then \
1225 r
=`pwd`; export r
; \
1226 s
=`cd $(srcdir); pwd`; export s
; \
1229 $(MAKE
) $(FLAGS_TO_PASS
) $(X11_FLAGS_TO_PASS
) all); \
1234 # This rule is used to check the modules which use X11_FLAGS_TO_PASS.
1235 # To build a target check-X means to cd to X and make all.
1236 .PHONY
: $(CHECK_X11_MODULES
)
1237 $(CHECK_X11_MODULES
):
1238 @
dir=`echo $@ | sed -e 's/check-//'`; \
1239 if
[ -f .
/$${dir}/Makefile
] ; then \
1240 r
=`pwd`; export r
; \
1241 s
=`cd $(srcdir); pwd`; export s
; \
1244 $(MAKE
) $(FLAGS_TO_PASS
) $(X11_FLAGS_TO_PASS
) check); \
1249 # This rule is used to install the modules which use X11_FLAGS_TO_PASS.
1250 # To build a target install-X means to cd to X and make install.
1251 .PHONY
: $(INSTALL_X11_MODULES
)
1252 $(INSTALL_X11_MODULES
): installdirs
1253 @
dir=`echo $@ | sed -e 's/install-//'`; \
1254 if
[ -f .
/$${dir}/Makefile
] ; then \
1255 r
=`pwd`; export r
; \
1256 s
=`cd $(srcdir); pwd`; export s
; \
1259 $(MAKE
) $(FLAGS_TO_PASS
) $(X11_FLAGS_TO_PASS
) install); \
1264 # gcc is the only module which uses GCC_FLAGS_TO_PASS.
1267 @if
[ -f .
/gcc
/Makefile
] ; then \
1268 r
=`pwd`; export r
; \
1269 s
=`cd $(srcdir); pwd`; export s
; \
1271 (cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) all); \
1276 # Building GCC uses some tools for rebuilding "source" files
1277 # like texinfo, bison/byacc, etc. So we must depend on those.
1279 # While building GCC, it may be necessary to run various target
1280 # programs like the assembler, linker, etc. So we depend on
1283 # In theory, on an SMP all those dependencies can be resolved
1286 .PHONY
: bootstrap bootstrap-lean bootstrap2 bootstrap3 bootstrap4
1287 bootstrap bootstrap-lean bootstrap2 bootstrap3 bootstrap4
: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
1288 @r
=`pwd`; export r
; \
1289 s
=`cd $(srcdir); pwd`; export s
; \
1291 echo
"Bootstrapping the compiler"; \
1292 cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) $@
1293 @r
=`pwd`; export r
; \
1294 s
=`cd $(srcdir); pwd`; export s
; \
1296 *bootstrap4
) msg
="Comparing stage3 and stage4 of the compiler"; \
1297 compare
=compare3
;; \
1298 *-lean
) msg
="Comparing stage2 and stage3 of the compiler"; \
1299 compare
=compare-lean
;; \
1300 * ) msg
="Comparing stage2 and stage3 of the compiler"; \
1301 compare
=compare
;; \
1305 cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) $$compare
1306 @echo
"Building runtime libraries"; \
1310 cross
: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
1311 @r
=`pwd`; export r
; \
1312 s
=`cd $(srcdir); pwd`; export s
; \
1314 echo
"Building the C and C++ compiler"; \
1315 cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) LANGUAGES
="c c++"
1316 @echo
"Building runtime libraries"; \
1317 $(MAKE
) all LANGUAGES
="c c++"
1321 @if
[ -f .
/gcc
/Makefile
] ; then \
1322 r
=`pwd`; export r
; \
1323 s
=`cd $(srcdir); pwd`; export s
; \
1325 (cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) check); \
1332 @if
[ -f .
/gcc
/Makefile
] ; then \
1333 r
=`pwd`; export r
; \
1334 s
=`cd $(srcdir); pwd`; export s
; \
1336 (cd gcc
; $(MAKE
) $(GCC_FLAGS_TO_PASS
) install); \
1342 # EXPERIMENTAL STUFF
1343 # This rule is used to install the modules which use FLAGS_TO_PASS.
1344 # To build a target install-X means to cd to X and make install.
1345 .PHONY
: install-dosrel
1346 install-dosrel
: installdirs info
1347 @
dir=`echo $@ | sed -e 's/install-//'`; \
1348 if
[ -f .
/$${dir}/Makefile
] ; then \
1349 r
=`pwd`; export r
; \
1350 s
=`cd $(srcdir); pwd`; export s
; \
1352 (cd
$${dir}; $(MAKE
) $(FLAGS_TO_PASS
) install); \
1357 install-dosrel-fake
:
1360 # This is a list of inter-dependencies among modules.
1362 all-autoconf
: all-m4 all-texinfo
1366 all-binutils
: all-libiberty all-opcodes all-bfd all-flex all-bison all-byacc
1367 all-bison
: all-texinfo
1371 all-dejagnu
: all-tcl all-expect all-tk
1372 all-diff
: all-libiberty
1374 all-emacs19
: all-bison all-byacc
1376 configure-target-examples
: $(ALL_GCC
)
1377 all-target-examples
: configure-target-examples
1378 all-expect
: all-tcl all-tk
1379 all-fileutils
: all-libiberty
1382 all-flex
: all-libiberty all-bison all-byacc
1383 all-gas
: all-libiberty all-opcodes all-bfd
1387 all-gcc
: all-bison all-byacc all-binutils all-gas all-ld
1388 GDB_TK
= all-tk all-tcl all-itcl all-tix
1389 all-gdb
: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-bison all-byacc all-sim
$(gdbnlmrequirements
) $(GDB_TK
)
1391 configure-target-gperf
: $(ALL_GCC
)
1392 all-target-gperf
: configure-target-gperf all-target-libiberty all-target-libg
++
1393 all-gprof
: all-libiberty all-bfd all-opcodes
1394 all-grep
: all-libiberty
1395 all-grez
: all-libiberty all-bfd all-opcodes
1396 all-gui
: all-gdb all-libproc all-target-librx
1398 all-gzip
: all-libiberty
1399 all-hello
: all-libiberty
1401 all-inet
: all-tcl all-send-pr all-perl
1402 all-ispell
: all-emacs19
1403 all-itcl
: all-tcl all-tk
1404 all-ld
: all-libiberty all-bfd all-opcodes all-bison all-byacc all-flex
1405 configure-target-libg
++: $(ALL_GCC
) configure-target-librx
1406 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
++
1407 configure-target-libgloss
: $(ALL_GCC
)
1408 all-target-libgloss
: configure-target-libgloss configure-target-newlib
1409 configure-target-libio
: $(ALL_GCC
)
1410 all-target-libio
: configure-target-libio all-gas all-ld all-gcc all-target-libiberty all-target-newlib
1411 check-target-libio
: all-target-libstdc
++
1413 configure-target-librx
: $(ALL_GCC
) configure-target-newlib
1414 all-target-librx
: configure-target-librx
1415 configure-target-libstdc
++: $(ALL_GCC
)
1416 all-target-libstdc
++: configure-target-libstdc
++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio
1417 all-m4
: all-libiberty
1418 all-make
: all-libiberty
1420 configure-target-newlib
: $(ALL_GCC
)
1421 all-target-newlib
: configure-target-newlib all-binutils all-gas all-gcc
1422 all-opcodes
: all-bfd all-libiberty
1423 all-patch
: all-libiberty
1425 all-prms
: all-libiberty
1428 all-recode
: all-libiberty
1429 all-sed
: all-libiberty
1430 all-send-pr
: all-prms
1432 all-sim
: all-libiberty all-bfd all-opcodes
1433 all-sn
: all-tcl all-tk all-itcl all-db all-grep
1434 all-tar
: all-libiberty
1436 all-tclX
: all-tcl all-tk
1438 all-texinfo
: all-libiberty
1440 all-tgas
: all-libiberty all-bfd all-opcodes
1442 all-tix
: all-tcl all-tk
1444 all-target-winsup
: all-target-newlib all-target-libiberty all-target-librx all-target-libio configure-target-winsup
1445 configure-target-winsup
: configure-target-newlib
1446 all-uudecode
: all-libiberty
1447 configure-target-libiberty
: $(ALL_GCC
)
1448 all-target-libiberty
: configure-target-libiberty all-gcc all-ld all-target-newlib
1449 all-target
: $(ALL_TARGET_MODULES
)
1450 install-target
: $(INSTALL_TARGET_MODULES
)
1452 ### other supporting targets
1458 installdirs: mkinstalldirs
1459 $(SHELL
) $(srcdir)/mkinstalldirs
$(MAKEDIRS
)
1461 dir.
info: do-install-info
1462 if
[ -f
$(srcdir)/texinfo
/gen-info-dir
] ; then \
1463 $(srcdir)/texinfo
/gen-info-dir
$(infodir) $(srcdir)/texinfo
/dir.info-template
> dir.
info.new
; \
1464 mv
-f
dir.
info.new
dir.
info ; \
1469 @echo
"Building a full distribution of this tree isn't done"
1470 @echo
"via 'make dist'. Check out the etc/ subdirectory"
1474 # Right now this just builds TAGS in each subdirectory. emacs19 has the
1475 # ability to use several tags files at once, so there is probably no need
1476 # to combine them into one big TAGS file (like CVS 1.3 does). We could
1477 # (if we felt like it) have this Makefile write a piece of elisp which
1478 # the user could load to tell emacs19 where all the TAGS files we just
1482 # with the gnu make, this is done automatically.
1484 Makefile
: Makefile.in configure.in
$(host_makefile_frag
) $(target_makefile_frag
)
1485 $(SHELL
) .
/config.status
1488 # Support for building net releases
1490 # Files in devo used in any net release.
1491 # ChangeLog omitted because it may refer to files which are not in this
1492 # distribution (perhaps it would be better to include it anyway).
1493 DEVO_SUPPORT
= README Makefile.in configure configure.in \
1494 config.guess config.sub config move-if-change \
1495 mpw-README mpw-build.in mpw-config.in mpw-configure mpw-install \
1496 COPYING COPYING.LIB install-sh config-ml.in symlink-tree \
1497 mkinstalldirs ltconfig ltmain.sh missing ylwrap
1499 # Files in devo/etc used in any net release.
1500 # ChangeLog omitted because it may refer to files which are not in this
1501 # distribution (perhaps it would be better to include it anyway).
1502 ETC_SUPPORT
= Makefile.in configure configure.in standards.texi \
1503 make-stds.texi standards.
info*
1505 # When you use `make setup-dirs' or `make taz' you should always redefine
1507 SUPPORT_FILES
= list-of-support-files-for-tool-in-question
1511 taz
: $(DEVO_SUPPORT
) $(SUPPORT_FILES
) \
1512 texinfo
/texinfo.
tex texinfo
/gpl.texinfo texinfo
/lgpl.texinfo
1513 # Take out texinfo from a few places; make simple BISON=bison line.
1514 sed
-e
'/^all\.normal: /s/\all-texinfo //' \
1515 -e
'/^ install-texinfo /d' \
1517 mv
-f tmp Makefile.in
1520 [ -z
"$(CONFIGURE_TARGET_MODULES)" ] \
1521 ||
$(MAKE
) $(CONFIGURE_TARGET_MODULES
) ALL_GCC
="" \
1522 CC_FOR_TARGET
="$(CC)" CXX_FOR_TARGET
="$(CXX)"
1523 # Make links, and run "make diststuff" or "make info" when needed.
1524 rm -rf proto-toplev
; mkdir proto-toplev
1525 set
-e
; dirs
="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
1526 for d in
$$dirs ; do \
1527 if
[ -d
$$d ]; then \
1528 if
[ ! -f
$$d/Makefile
] ; then true
; \
1529 elif grep
'^diststuff:' $$d/Makefile
>/dev
/null
; then \
1530 (cd
$$d ; $(MAKE
) diststuff
) || exit
1 ; \
1531 elif grep
'^info:' $$d/Makefile
>/dev
/null
; then \
1532 (cd
$$d ; $(MAKE
) info ) || exit
1 ; \
1534 if
[ -d
$$d/proto-
$$d.
dir ]; then \
1535 ln
-s ..
/$$d/proto-
$$d.
dir proto-toplev
/$$d ; \
1537 ln
-s ..
/$$d proto-toplev
/$$d ; \
1539 else ln
-s ..
/$$d proto-toplev
/$$d ; fi
; \
1541 cd etc
; $(MAKE
) info
1544 mkdir proto-toplev
/etc
1545 (cd proto-toplev
/etc
; \
1546 for i in
$(ETC_SUPPORT
); do \
1547 ln
-s ..
/..
/etc
/$$i .
; \
1550 # Take out texinfo from configurable dirs
1551 rm proto-toplev
/configure.in
1552 sed
-e
'/^host_tools=/s/texinfo //' \
1553 <configure.in
>proto-toplev
/configure.in
1555 mkdir proto-toplev
/texinfo
1556 ln
-s ..
/..
/texinfo
/texinfo.
tex proto-toplev
/texinfo
/
1557 ln
-s ..
/..
/texinfo
/gpl.texinfo proto-toplev
/texinfo
/
1558 ln
-s ..
/..
/texinfo
/lgpl.texinfo proto-toplev
/texinfo
/
1559 if
test -r texinfo
/util
/tex3patch
; then \
1560 mkdir proto-toplev
/texinfo
/util
&& \
1561 ln
-s ..
/..
/..
/texinfo
/util
/tex3patch proto-toplev
/texinfo
/util
; \
1563 chmod og
=u
`find . -print`
1564 if grep AM_INIT_AUTOMAKE
$(TOOL
)/configure.in
>/dev
/null
2>&1; then \
1565 ver
=`sed < $(TOOL)/configure.in -n 's/AM_INIT_AUTOMAKE[^,]*, *\([^)]*\))/\1/p'`; \
1567 ver
=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \
1569 $(MAKE
) -f Makefile.in do-tar-gz TOOL
=$(TOOL
) VER
=$$ver
1572 echo
"==> Making $(TOOL)-$(VER).tar.gz"
1573 -rm -f
$(TOOL
)-$(VER
)
1574 ln
-s proto-toplev
$(TOOL
)-$(VER
)
1575 tar cfh
$(TOOL
)-$(VER
).
tar $(TOOL
)-$(VER
)
1576 $(GZIPPROG
) -v
-9 $(TOOL
)-$(VER
).
tar
1578 TEXINFO_SUPPORT
= texinfo
/texinfo.
tex texinfo
/gpl.texinfo texinfo
/lgpl.texinfo
1579 DIST_SUPPORT
= $(DEVO_SUPPORT
) $(TEXINFO_SUPPORT
)
1582 GAS_SUPPORT_DIRS
= bfd
include libiberty opcodes setup.com makefile.vms
1583 gas.
tar.gz
: $(DIST_SUPPORT
) $(GAS_SUPPORT_DIRS
) gas
1584 $(MAKE
) -f Makefile.in taz TOOL
=gas \
1585 SUPPORT_FILES
="$(GAS_SUPPORT_DIRS)"
1587 # The FSF "binutils" release includes gprof and ld.
1588 .PHONY
: binutils.
tar.gz
1589 BINUTILS_SUPPORT_DIRS
= bfd gas
include libiberty opcodes
ld gprof setup.com makefile.vms
1590 binutils.
tar.gz
: $(DIST_SUPPORT
) $(BINUTILS_SUPPORT_DIRS
) binutils
1591 $(MAKE
) -f Makefile.in taz TOOL
=binutils \
1592 SUPPORT_FILES
="$(BINUTILS_SUPPORT_DIRS) makeall.bat configure.bat"
1594 .PHONY
: gas
+binutils.
tar.gz
1595 GASB_SUPPORT_DIRS
= $(GAS_SUPPORT_DIRS
) binutils
ld gprof
1596 gas
+binutils.
tar.gz
: $(DIST_SUPPORT
) $(GASB_SUPPORT_DIRS
) gas
1597 $(MAKE
) -f Makefile.in taz TOOL
=gas \
1598 SUPPORT_FILES
="$(GASB_SUPPORT_DIRS) makeall.bat configure.bat"
1600 .PHONY
: libg
++.
tar.gz
1601 LIBGXX_SUPPORT_DIRS
=include libstdc
++ libio librx libiberty
1602 libg
++.
tar.gz
: $(DIST_SUPPORT
) libg
++
1603 $(MAKE
) -f Makefile.in taz TOOL
=libg
++ \
1604 SUPPORT_FILES
="$(LIBGXX_SUPPORT_DIRS)"
1606 GNATS_SUPPORT_DIRS
=include libiberty send-pr
1607 gnats.
tar.gz
: $(DIST_SUPPORT
) $(GNATS_SUPPORT_DIRS
) gnats
1608 $(MAKE
) -f Makefile.in taz TOOL
=gnats \
1609 SUPPORT_FILES
="$(GNATS_SUPPORT_DIRS)"
1612 GDB_SUPPORT_DIRS
= bfd
include libiberty mmalloc opcodes readline sim utils
1613 GDBTK_SUPPORT_DIRS
= `if [ -d tcl -a -d tk ] ; then echo tcl tk ; fi`
1614 gdb.
tar.gz
: $(DIST_SUPPORT
) $(GDB_SUPPORT_DIRS
) gdb
1615 $(MAKE
) -f Makefile.in taz TOOL
=gdb \
1616 SUPPORT_FILES
="$(GDB_SUPPORT_DIRS) $(GDBTK_SUPPORT_DIRS)"
1618 .PHONY
: newlib.
tar.gz
1619 NEWLIB_SUPPORT_DIRS
=libgloss
1620 # taz configures for the sun4 target which won't configure newlib.
1621 # We need newlib configured so that the .info files are made.
1622 # Unfortunately, it is not enough to just configure newlib separately:
1623 # taz will build the .info files but since SUBDIRS won't contain newlib,
1624 # distclean won't be run (leaving Makefile, config.status, and the tmp files
1625 # used in building the .info files, eg: *.def, *.ref).
1626 # The problem isn't solvable however without a lot of extra work because
1627 # target libraries are built in subdir $(target_alias) which gets nuked during
1628 # the make distclean. For now punt on the issue of shipping newlib info files
1629 # with newlib net releases and wait for a day when some native target (sun4?)
1630 # supports newlib (if only minimally).
1631 newlib.
tar.gz
: $(DIST_SUPPORT
) $(NEWLIB_SUPPORT_DIRS
) newlib
1632 $(MAKE
) -f Makefile.in taz TOOL
=newlib \
1633 SUPPORT_FILES
="$(NEWLIB_SUPPORT_DIRS)" \
1634 DEVO_SUPPORT
="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib
1640 # end of Makefile.in