2018-01-14 01:18:50 +00:00
|
|
|
EXTENSIONS:=embroider embroider_params embroider_simulate embroider_update
|
|
|
|
|
|
|
|
# This gets the branch name or the name of the tag
|
2018-01-24 03:04:19 +00:00
|
|
|
VERSION:=$(TRAVIS_BRANCH)
|
2018-01-14 01:18:50 +00:00
|
|
|
OS:=$(shell uname)
|
|
|
|
ARCH:=$(shell uname -m)
|
|
|
|
|
2018-02-05 03:38:24 +00:00
|
|
|
dist: distclean locales
|
2018-01-14 01:18:50 +00:00
|
|
|
bin/build-dist $(EXTENSIONS)
|
|
|
|
cp *.inx dist
|
2018-02-05 04:10:18 +00:00
|
|
|
mv locales dist/inkstitch/bin
|
2018-02-20 02:43:39 +00:00
|
|
|
if [ "$$BUILD" = "windows" ]; then \
|
|
|
|
cd dist; zip -r ../inkstitch-$(VERSION)-win32.zip *; \
|
|
|
|
else \
|
|
|
|
cd dist; tar zcf ../inkstitch-$(VERSION)-$(OS)-$(ARCH).tar.gz *; \
|
|
|
|
fi
|
2018-01-14 01:18:50 +00:00
|
|
|
|
|
|
|
distclean:
|
|
|
|
rm -rf build dist *.spec *.tar.gz
|
2018-02-05 03:38:24 +00:00
|
|
|
|
2018-02-27 00:49:43 +00:00
|
|
|
messages.po:
|
2018-02-05 03:38:24 +00:00
|
|
|
rm -f messages.po
|
2018-02-28 04:14:29 +00:00
|
|
|
xgettext --no-location --add-comments embroider*.py inkstitch/__init__.py
|
2018-02-05 03:38:24 +00:00
|
|
|
|
2018-02-27 00:49:43 +00:00
|
|
|
.PHONY: messages.po
|
2018-02-05 03:38:24 +00:00
|
|
|
.PHONY: locales
|
|
|
|
locales:
|
|
|
|
# message files will look like this:
|
2018-02-05 04:01:59 +00:00
|
|
|
# translations/messages_en_US.po
|
2018-02-05 03:38:24 +00:00
|
|
|
if ls translations/*.po > /dev/null 2>&1; then \
|
|
|
|
for po in translations/*.po; do \
|
2018-02-05 04:01:59 +00:00
|
|
|
lang=$${po%.*}; \
|
|
|
|
lang=$${lang#*_}; \
|
2018-02-05 03:38:24 +00:00
|
|
|
mkdir -p locales/$$lang/LC_MESSAGES/; \
|
|
|
|
msgfmt $$po -o locales/$$lang/LC_MESSAGES/inkstitch.mo; \
|
|
|
|
done; \
|
|
|
|
else \
|
2018-02-05 04:01:59 +00:00
|
|
|
mkdir -p locales; \
|
2018-02-05 03:38:24 +00:00
|
|
|
fi
|