doc: describe how to choose the language (i18n) at run time
[wmaker-crm.git] / autogen.sh
blob46e56fcd2107eeb49eb3a445b96328a9579116c9
1 #!/bin/sh
3 # Generate the documentation about compiling Window Maker
4 ./script/generate-txt-from-texi.sh doc/build/Translations.texi > README.i18n
6 # Generate the configure script from the 'configure.ac'
7 autoreconf -vfi -I m4
9 exit 0
11 if [ -x config.status -a -z "$*" ]; then
12 ./config.status --recheck
13 else
14 if test -z "$*"; then
15 echo "I am going to run ./configure with no arguments - if you wish "
16 echo "to pass any to it, please specify them on the $0 command line."
17 echo "If you do not wish to run ./configure, press Ctrl-C now."
18 trap 'echo "configure aborted" ; exit 0' 1 2 15
19 sleep 1
21 ./configure "$@"