From: Gonzalo A. <ga...@us...> - 2006-08-23 14:16:50
|
Update of /cvsroot/mod-c/mod_c In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv16380 Added Files: bootstrap.sh Log Message: It is always handy to have a bootstrap script. --- NEW FILE: bootstrap.sh --- #!/bin/bash # $Id: bootstrap.sh,v 1.1 2006/08/23 14:16:38 garana Exp $ set -e rm -rvf configure config.log config.h autom4te.cache aclocal.m4 rm -rvf Makefile.in stamp-h.in src/Makefile.in rm -rvf cfgaux/[a-z]* src/cfgaux/[a-z]* config.status config.guess mkdir cfgaux || true # Generate AM macros for autoconf aclocal # configure.in => configure echo autoconf autoconf --force # ads ltmain.sh echo libtoolize --copy libtoolize --copy # Makefile.am => Makefile.in autoheader echo automake --add-missing --copy automake --add-missing --copy exit 0 |