diff options
author | Anne Nicolas <ennael@mageia.org> | 2011-05-04 21:14:55 +0000 |
---|---|---|
committer | Anne Nicolas <ennael@mageia.org> | 2011-05-04 21:14:55 +0000 |
commit | b9231d4b3b5e5b808544157179e6e2ff101830eb (patch) | |
tree | b1e3297e979313bd33bbf8fd6556c765fb61df2e /Makefile | |
download | usbdumper-b9231d4b3b5e5b808544157179e6e2ff101830eb.tar usbdumper-b9231d4b3b5e5b808544157179e6e2ff101830eb.tar.gz usbdumper-b9231d4b3b5e5b808544157179e6e2ff101830eb.tar.bz2 usbdumper-b9231d4b3b5e5b808544157179e6e2ff101830eb.tar.xz usbdumper-b9231d4b3b5e5b808544157179e6e2ff101830eb.zip |
update files for usbdumper
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..21cb119 --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +PKGNAME=liveusb-creator +NAME=usbdumper +VERSION=$(shell date +%Y%m%d) + +all: mo + +mo: + cd po; for po in `ls *.po`; do cp $$po liveusb-creator_$$po; done + cd po; python mki18n.py -v --domain=liveusb-creator -m + rm po/liveusb-creator_*.po* + +clean: + rm -f *.py{c,o} */*.py{c,o} */*/*.py{c,o} + rm -fr po/${PKGNAME}*.po{,.new} po/locale + rm -fr build + +dist: + @git archive --prefix=$(NAME)-$(VERSION)/ HEAD | bzip2 -9 -c >../$(NAME)-$(VERSION).tar.bz2; + |