Code

po: updated Russian translation
[ncmpc.git] / autogen.sh
1 #!/bin/sh -e
3 # Generate config.h.in
4 echo "touch stamp-h"
5 touch stamp-h
7 # add aclocal.m4 to current dir
8 echo "aclocal..."
9 aclocal -I $PWD/m4
11 # This generates the configure script from configure.in
12 echo "autoconf..."
13 autoconf
15 echo "autoheader..."
16 autoheader
18 # Generate Makefile.in from Makefile.am
19 echo "automake..."
20 automake --add-missing
23 # configure
24 if test x$NOCONFIGURE = x; then
25         echo "./configure $*"
26         ./configure $*
27 fi