Update Serbian translation from master branch
[wmaker-crm.git] / autogen.sh
blobc3a25a9f77c21fd2f85970eb1c24e4f759b97049
1 #!/bin/sh
3 # Generate the documentation about compiling Window Maker
4 ./script/generate-txt-from-texi.sh "doc/build/Compilation.texi" -o "INSTALL-WMAKER"
5 ./script/generate-txt-from-texi.sh "doc/build/Translations.texi" -o "README.i18n"
7 # Change date of the files to the past so they will be regenerated by 'make'
8 touch -d '2000-01-01' INSTALL-WMAKER README.i18n
10 # Generate the configure script from the 'configure.ac'
11 autoreconf -vfi -I m4
13 exit 0
15 if [ -x config.status -a -z "$*" ]; then
16 ./config.status --recheck
17 else
18 if test -z "$*"; then
19 echo "I am going to run ./configure with no arguments - if you wish "
20 echo "to pass any to it, please specify them on the $0 command line."
21 echo "If you do not wish to run ./configure, press Ctrl-C now."
22 trap 'echo "configure aborted" ; exit 0' 1 2 15
23 sleep 1
25 ./configure "$@"