]> cygwin.com Git - cygwin-apps/setup.git/blame - bootstrap.sh
2002-07-15 Robert Collins <rbtcollins@hotmail.com>
[cygwin-apps/setup.git] / bootstrap.sh
CommitLineData
f6100b6f
RC
1#! /bin/sh
2# Used to setup the configure.in, autoheader and Makefile.in's if configure
3# has not been generated. This script is only needed for developers when
4# configure has not been run, or if a Makefile.am in a non-configured directory
5# has been updated
6
7
8bootstrap() {
9 if "$@"; then
10 true # Everything OK
11 else
12 echo "$1 failed"
13 echo "Autotool bootstrapping failed. You will need to investigate and correct" ;
14 echo "before you can develop on this source tree"
15 exit 1
16 fi
17}
18
19# Make sure cfgaux exists
20mkdir -p cfgaux
21
22# Bootstrap the autotool subsystems
23bootstrap aclocal
24# bootstrap autoheader
6908b7d7 25bootstrap libtoolize --automake
f6100b6f
RC
26bootstrap autoconf
27bootstrap automake --foreign --add-missing
28
29echo "Autotool bootstrapping complete."
This page took 0.026176 seconds and 5 git commands to generate.