1default: all
2
3dist:
4	@echo "This file is to make it easier for you to create all you need"
5	cat acinclude.m4.in libtool.m4.in >acinclude.m4
6	aclocal
7	autoheader
8# use --include-deps, if you want to release the stuff. Don't use it for
9# yourself
10	automake --include-deps
11	autoconf
12	touch stamp-h.in
13	LIST=`find ./po -name "*.po"`; \
14	for i in $$LIST; do \
15	 file2=`echo $$i | sed -e "s#\.po#\.gmo#"`; \
16	 msgfmt -o $$file2 $$i; \
17	done
18	rm -f Makefile.dist
19
20all:
21	cat acinclude.m4.in libtool.m4.in >acinclude.m4
22	aclocal
23	autoheader
24	automake
25	autoconf
26
27