Code

keyboard: call wgetch() on main window
[ncmpc.git] / autogen.sh
1 #!/bin/sh -e
3 rm -rf config.cache build
4 mkdir build
6 # create po/Makefile.in.in
7 glib-gettextize --force --copy
9 # add aclocal.m4 to current dir
10 echo "aclocal..."
11 aclocal -I m4
13 # This generates the configure script from configure.in
14 echo "autoconf..."
15 autoconf
17 echo "autoheader..."
18 autoheader
20 # Generate Makefile.in from Makefile.am
21 echo "automake..."
22 automake --add-missing $AUTOMAKE_FLAGS
25 # configure
26 if test x$NOCONFIGURE = x; then
27         echo "./configure $*"
28         ./configure $*
29 fi