代码搜索:Autoconf
找到约 8,642 项符合「Autoconf」的源代码
代码结果 8,642
www.eeworm.com/read/359831/10121411
bootstrap
#! /bin/sh
aclocal -I .
autoheader
if test "`uname -s`" = Darwin; then
glibtoolize --automake
else
libtoolize --automake
fi
automake --add-missing
autoconf
www.eeworm.com/read/358185/10194795
sh autogen.sh
#!/bin/sh
# $Id: autogen.sh 3486 2006-09-21 00:58:22Z ckuethe $
# Automakeversion
AM_1=1
AM_2=7
AM_3=6
# Autoconfversion
AC_1=2
AC_2=57
# Libtoolversion
LT_1=1
LT_2=5
# Check automake version
AM_V
www.eeworm.com/read/278339/10543314
bootstrap
#! /bin/sh
case $OSTYPE in
darwin*)
LIBTOOLIZE=glibtoolize
;;
*)
LIBTOOLIZE=libtoolize
;;
esac
aclocal -I . && \
autoheader && \
$LIBTOOLIZE
www.eeworm.com/read/159444/10648010
todo
TODO-list
=========
* documentation !
* init/rc scripts
* .spec file / RPM
* check if VFAT is correctly handled (in case of long volume names)
* NTFS support
* figure out why HFS is not properly dete
www.eeworm.com/read/275564/10811681
rebuild
#! /bin/sh
#
# rebuild: rebuild Makefile.in, configure, etc. using GNU automake, autoconf,
# and libtool.
#
# $Id: rebuild,v 1.1.1.1 2001/06/27 19:47:42 erikm Exp $
#
echo '$Id: rebuild,v 1.1.1.1 200
www.eeworm.com/read/275564/10811684
rebuild-gcc
#! /bin/sh
#
# rebuild: rebuild Makefile.in, configure, etc. using GNU automake, autoconf,
# and libtool.
#
# This is the version for use with the GNU C/C++ compilers
#
# $Id: rebuild-gcc,v 1.1.1.1 20
www.eeworm.com/read/466466/7035600
bootstrap
#! /bin/sh
aclocal -I .
autoheader
if test "`uname -s`" = Darwin; then
glibtoolize --automake
else
libtoolize --automake
fi
automake --add-missing
autoconf
www.eeworm.com/read/439591/7705383
sh autogen.sh
#!/bin/sh
aclocal -I m4 --force && libtoolize --force --copy && automake --foreign --add-missing --copy && autoconf
www.eeworm.com/read/439589/7705418
sh autogen.sh
#!/bin/sh
aclocal -I m4 --force && libtoolize --force --copy && automake --foreign --add-missing --copy && autoconf
www.eeworm.com/read/438782/7727058
sh autogen.sh
#!/bin/sh
# $Id: autogen.sh 2 2008-04-24 15:04:59Z naoaki $
if [ "$1" = "--force" ];
then
FORCE=--force
NOFORCE=
FORCE_MISSING=--force-missing
else
FORCE=
NOFORCE=--no-force
F