Update of /cvsroot/linux-vax/toolchain/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13830/scripts
Modified Files:
build_toolchain.sh
Log Message:
- uClibc is going to use one large Makefile infrastructure where the
top-level Makefile includes all subdirectorie's Makefiles (instead
of recursing through the directories and make'ing all targets there,
too).
- This should take the different Makefile.in into account, as well
as creating us a proper VAX-specific Makefile.in .
Index: build_toolchain.sh
===================================================================
RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- build_toolchain.sh 9 Oct 2005 20:48:06 -0000 1.20
+++ build_toolchain.sh 26 Oct 2005 10:49:48 -0000 1.21
@@ -559,13 +559,14 @@
echo "DEVEL_PREFIX=\"${INSTALL_BASE}/usr/${TARGET}/lib\"" >> .config
echo "RUNTIME_PREFIX=\"${INSTALL_BASE}/runtime-prefix/\""
- build "${BUILD_UCLIBC}" && execute make oldconfig
+ build "${BUILD_UCLIBC}" && execute ./extra/scripts/create_links.sh
+ build "${BUILD_UCLIBC}" && execute make -f Makefile.in oldconfig
# Build
- build "${BUILD_GCC1}" && execute make ${MAKEFLAGS}
+ build "${BUILD_GCC1}" && execute make -f Makefile.in ${MAKEFLAGS}
# Install
- build "${BUILD_GCC1}" && execute make install
+ build "${BUILD_GCC1}" && execute make -f Makefile.in install
# Fixup. Until LINK_SPEC is correct for GCC, we need to fiddle
# with library and header file location...
|