1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
# bootstrap
rm -f intltool-extract.in intltool-merge.in intltool-update.in
rm -f po/Makefile.in.in
rm -f config.guess config.sub depcomp install-sh missing
rm -rf autom4te.cache
glib-gettextize --copy --force || exit 1
intltoolize --automake --force --copy || exit 1
libtoolize --force --copy
aclocal $ACLOCAL_FLAGS || exit 1
autoheader
touch stamp-h
automake --add-missing --gnu --copy
autoconf
# CXX flags to pass to the compiler
CXXFLAGS='-O2 -g -Wall'
export CXXFLAGS
echo "Now type 'configure' and then 'make' to build Granule."
|