499b3f1cb9
git-svn-id: svn://10.65.10.50/trunk@9036 c028cbd2-c16b-5b4b-a496-9718f37d4682
26 lines
470 B
Makefile
Executable File
26 lines
470 B
Makefile
Executable File
default: all
|
|
|
|
dist:
|
|
@echo "This file is to make it easier for you to create all you need"
|
|
aclocal
|
|
autoheader
|
|
# use --include-deps, if you want to release the stuff. Don't use it for
|
|
# yourself
|
|
automake --include-deps
|
|
perl automoc
|
|
autoconf
|
|
touch stamp-h.in
|
|
LIST=`find ./po -name "*.po"`; \
|
|
for i in $$LIST; do \
|
|
file2=`echo $$i | sed -e "s#\.po#\.gmo#"`; \
|
|
msgfmt -o $$file2 $$i; \
|
|
done
|
|
rm -f Makefile.dist
|
|
|
|
all:
|
|
aclocal
|
|
autoheader
|
|
automake
|
|
autoconf
|
|
|