mirror of git://gcc.gnu.org/git/gcc.git
Makefile.in (bootstrap): avoid recursion if subdir missing
* Makefile.in (bootstrap): avoid recursion if subdir missing (cross): ditto (do-proto-toplev): ditto From-SVN: r36713
This commit is contained in:
parent
9c00185b89
commit
3a4fee6674
|
|
@ -1,3 +1,9 @@
|
||||||
|
2000-10-04 Andris Pavenis <pavenis@latnet.lv>
|
||||||
|
|
||||||
|
* Makefile.in (bootstrap): avoid recursion if subdir missing
|
||||||
|
(cross): ditto
|
||||||
|
(do-proto-toplev): ditto
|
||||||
|
|
||||||
2000-09-30 Alexandre Oliva <aoliva@redhat.com>
|
2000-09-30 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
* Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4,
|
* Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4,
|
||||||
|
|
|
||||||
|
|
@ -1444,7 +1444,7 @@ bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean b
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); pwd`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
echo "Bootstrapping the compiler"; \
|
echo "Bootstrapping the compiler"; \
|
||||||
cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) $@
|
cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) $@
|
||||||
@r=`pwd`; export r; \
|
@r=`pwd`; export r; \
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); pwd`; export s; \
|
||||||
case "$@" in \
|
case "$@" in \
|
||||||
|
|
@ -1460,7 +1460,7 @@ bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean b
|
||||||
esac; \
|
esac; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
echo "$$msg"; \
|
echo "$$msg"; \
|
||||||
cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) $$compare
|
cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) $$compare
|
||||||
@r=`pwd`; export r; \
|
@r=`pwd`; export r; \
|
||||||
s=`cd $(srcdir); pwd` ; export s; \
|
s=`cd $(srcdir); pwd` ; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
|
|
@ -1473,7 +1473,7 @@ cross: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
|
||||||
s=`cd $(srcdir); pwd`; export s; \
|
s=`cd $(srcdir); pwd`; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
echo "Building the C and C++ compiler"; \
|
echo "Building the C and C++ compiler"; \
|
||||||
cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++"
|
cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++"
|
||||||
@r=`pwd`; export r; \
|
@r=`pwd`; export r; \
|
||||||
s=`cd $(srcdir); pwd` ; export s; \
|
s=`cd $(srcdir); pwd` ; export s; \
|
||||||
$(SET_LIB_PATH) \
|
$(SET_LIB_PATH) \
|
||||||
|
|
@ -1791,7 +1791,7 @@ do-proto-toplev: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex
|
||||||
fi ; \
|
fi ; \
|
||||||
else ln -s ../$$d proto-toplev/$$d ; fi ; \
|
else ln -s ../$$d proto-toplev/$$d ; fi ; \
|
||||||
done
|
done
|
||||||
cd etc ; $(MAKE) info
|
cd etc && $(MAKE) info
|
||||||
$(MAKE) distclean
|
$(MAKE) distclean
|
||||||
#
|
#
|
||||||
mkdir proto-toplev/etc
|
mkdir proto-toplev/etc
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue