代码搜索:Bootstrap
找到约 2,394 项符合「Bootstrap」的源代码
代码结果 2,394
www.eeworm.com/read/114876/15034927
bootstrap
#! /bin/sh
aclocal
autoheader
automake --foreign --add-missing --copy
autoconf
www.eeworm.com/read/212967/15144302
bootstrap
#! /bin/sh
set -x
aclocal -I autotools
libtoolize --force --copy
autoheader
#add --include-deps if you want to bootstrap with any other compiler than gcc
#automake --add-missing --copy --include-deps
www.eeworm.com/read/208137/15253709
bootstrap
#! /bin/sh
libtoolize
aclocal
autoheader
# automake --foreign --add-missing --copy
automake --add-missing
autoconf
./configure --prefix=/usr
www.eeworm.com/read/11139/197372
bootstrap
#!/bin/sh
set -x
aclocal -I config
# libtoolize --force --copy
aclocal -I config
autoheader
automake --gnu --add-missing --copy
autoconf
www.eeworm.com/read/11139/197437
bootstrap
aclocal
autoheader
autoconf
[ -d config ] || mkdir config
automake -a -c
www.eeworm.com/read/11139/197557
bootstrap
#!/bin/sh
set -e
srcdir=src
ACLOCAL="aclocal"
AUTOMAKE="automake"
AUTOCONF="autoconf"
AUTOHEADER="autoheader"
set -x
(
$ACLOCAL
$AUTOCONF
[ -d config-aux ] || mkdir conf
www.eeworm.com/read/11139/202865
bootstrap
mkdir config-aux
aclocal
autoheader
autoconf
automake -a -c
www.eeworm.com/read/14187/319871
bootstrap
#!/bin/sh
#
# Bootstrap development of mpeg4ip with GNU autoconf, automake, and libtool
# Assumes tools are available on the system
#
MPEG4IP_SRC=`dirname $0`
echo dir: $MPEG4IP_SRC
# Check that we
www.eeworm.com/read/14426/333107
bootstrap
aclocal -I .
autoheader
libtoolize --automake
automake --add-missing
autoconf
./configure
www.eeworm.com/read/14545/389324
bootstrap
#!/bin/sh
#
# Bootstrap development of mpeg4ip with GNU autoconf, automake, and libtool
# Assumes tools are available on the system
#
# Check that we can find libtool
# Frequently it hasn't been inst