e17 now CAN be translated. i have done a partial japanese translation for
[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 -s \
14 -n \
15 -C \
16 -d enlightenment \
17 -p po \
18 --copyright-holder="Enlightenment development team" \
19 --foreign-user \
20 --msgid-bugs-address="enlightenment-devel@lists.sourceforge.net" \
21 -k -k_ -kd_ \
22 --from-code=UTF-8 \
23 -o enlightenment.pot \
24 `find . -name "*.[ch]" -print` 
25
26 ###  If you want this, uncomment it.
27 ./configure "$@"