blob: e93a00eea06809625536296da54900ce9bfa3ae2 (
plain) (
tree)
|
|
#!/bin/sh -e
# Generate config.h.in
echo "touch stamp-h"
touch stamp-h
# create po/Makefile.in.in
glib-gettextize --force --copy
# add aclocal.m4 to current dir
echo "aclocal..."
aclocal -I $PWD/m4
# This generates the configure script from configure.in
echo "autoconf..."
autoconf
echo "autoheader..."
autoheader
# Generate Makefile.in from Makefile.am
echo "automake..."
automake --add-missing
# configure
if test x$NOCONFIGURE = x; then
echo "./configure $*"
./configure $*
fi
|