Menu

[ecd09e]: / autogen.sh  Maximize  Restore  History

Download this file

29 lines (23 with data), 486 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#! /bin/bash -e
export WANT_AUTOMAKE=1.11
usage="Usage: autogen.sh [-c]"
opt_c=
while getopts ":c" options; do
case $options in
c ) opt_c=-c;;
\? ) echo $usage; exit 0;;
* ) echo $usage 1>&2; exit 1;;
esac
done
shift $(($OPTIND - 1))
set -x
aclocal
autoheader
automake --gnu --add-missing
autoconf
(cd msys-here && ./autogen.sh)
if [ "x${opt_c}" != "x" ]
then
./configure --host=mingw32 --prefix=/mingw \
--enable-maintainer-mode --enable-silent-rules "$@"
fi
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.