damn - um... patches from mailing list - fix patch with layer number. da.po -
[platform/upstream/enlightenment.git] / autogen.sh
1 #!/bin/sh
2
3 rm -rf autom4te.cache
4 rm -f aclocal.m4
5
6 echo "Running aclocal..."; aclocal $ACLOCAL_FLAGS -I m4 \
7 && echo "Running autoheader..."; autoheader \
8 && echo "Running autoconf..."; autoconf \
9 && echo "Running libtoolize..."; ( libtoolize --automake || glibtoolize --automake ) \
10 && echo "Running automake..."; automake --add-missing --copy --gnu \
11 && echo "Generating gettext enlightenment.pot template"; \
12 xgettext \
13 -n \
14 -C \
15 -d enlightenment \
16 -p po \
17 --copyright-holder="Enlightenment development team" \
18 --foreign-user \
19 --msgid-bugs-address="enlightenment-devel@lists.sourceforge.net" \
20 -k -k_ -kd_ \
21 --from-code=UTF-8 \
22 -o enlightenment.pot \
23 `find . -name "*.[ch]" -print` 
24
25 if [ -z "$NOCONFIGURE" ]; then
26         ./configure "$@"
27 fi