wmaker: Add autocomplete/history feature to keyboard shortcut Run dialog.
[wmaker-crm.git] / autogen.sh
blobd65e65d6b95e0600670184167ca4d3c53313fb09
1 #!/bin/sh
3 # Generate the documentation about compiling Window Maker
4 ./script/generate-txt-from-texi.sh "doc/build/Translations.texi" -o "README.i18n"
6 # Change date of the files to the past so they will be regenerated by 'make'
7 touch -d '2000-01-01' README.i18n
9 # Generate the configure script from the 'configure.ac'
10 autoreconf -vfi -I m4
12 exit 0
14 if [ -x config.status -a -z "$*" ]; then
15 ./config.status --recheck
16 else
17 if test -z "$*"; then
18 echo "I am going to run ./configure with no arguments - if you wish "
19 echo "to pass any to it, please specify them on the $0 command line."
20 echo "If you do not wish to run ./configure, press Ctrl-C now."
21 trap 'echo "configure aborted" ; exit 0' 1 2 15
22 sleep 1
24 ./configure "$@"