代码搜索:Bootstrap
找到约 2,394 项符合「Bootstrap」的源代码
代码结果 2,394
www.eeworm.com/read/152475/12111090
bootstrap
#!/bin/sh
echo "bootstrapping (this may take a while)"
rm -rf build
mkdir build
aclocal &&
libtoolize &&
autoconf &&
autoheader &&
automake --add-missing --force-missing || exit
www.eeworm.com/read/253232/12237263
bootstrap
#!/bin/sh
find . \( -name autom4te.cache -o -name libtool \) -exec rm -r {} \;
aclocal
libtoolize --force --copy
autoheader
automake --add-missing --copy
autoconf
www.eeworm.com/read/253222/12238566
bootstrap
#! /bin/sh
# helps bootstrapping libtool, when checked out from CVS
# requires at least GNU autoconf 2.50 and GNU automake1.4-p5
rm -rf `find . -path './{arch}' -prune -o \( -name autom4te.cache -o
www.eeworm.com/read/339324/12242762
bootstrap
#!/bin/sh
set -e
cat m4/*.m4 > acinclude.m4
aclocal
libtoolize --copy --force
cp /usr/share/automake/install-sh .
autoconf
www.eeworm.com/read/252976/12252070
bootstrap
rm -f config.cache
rm -f acconfig.h
aclocal
autoconf
#acconfig
#autoheader
automake -a
www.eeworm.com/read/252834/12261526
bootstrap
#! /bin/sh
aclocal
autoheader
libtoolize --force --copy
automake --foreign --copy
autoconf
www.eeworm.com/read/225703/14523145
bootstrap
#! /bin/sh
set -x
set -e
# Check for automake
amvers="no"
for v in "-1.9" "19" "-1.8" "18" "-1.7" "17" "-1.6" "16" "-1.5" "15"; do
if automake${v} --version >/dev/null 2>&1; then
amvers="${v}"
www.eeworm.com/read/119797/14821236
bootstrap
#! /bin/sh
autoheader
aclocal \
&& autoconf \
&& automake --foreign --add-missing