import kpasman 0.1 sources
This commit is contained in:
parent
16a283b00c
commit
9a3f2b6afc
110 changed files with 27300 additions and 0 deletions
26
Makefile.dist
Normal file
26
Makefile.dist
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
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
|
||||
perl automoc
|
||||
autoconf
|
||||
|
||||
Reference in a new issue