]> cygwin.com Git - cygwin-apps/setup.git/blob - libgetopt++/bootstrap.sh
Implement paired boolean options
[cygwin-apps/setup.git] / libgetopt++ / bootstrap.sh
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
8 bootstrap() {
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 we are running in the right directory
20 if [ ! -f src/GetOption.cc ]; then
21 echo "You must run this script from the directory containing it"
22 exit 1
23 fi
24
25 # Make sure cfgaux exists
26 mkdir -p cfgaux
27
28 # Bootstrap the autotool subsystems
29 bootstrap aclocal
30 bootstrap autoheader
31 bootstrap libtoolize --automake
32 bootstrap automake --foreign --add-missing
33 bootstrap autoconf
34
35 echo "Autotool bootstrapping complete."
This page took 0.036771 seconds and 5 git commands to generate.