2018-04-29 02:30:28 +00:00
|
|
|
EXTENSIONS:=inkstitch
|
2018-01-14 01:18:50 +00:00
|
|
|
|
|
|
|
# This gets the branch name or the name of the tag
|
2018-08-17 19:52:55 +00:00
|
|
|
VERSION:=$(subst /,-,$(TRAVIS_BRANCH))
|
2018-08-01 21:24:29 +00:00
|
|
|
OS:=$(TRAVIS_OS_NAME)
|
2018-01-14 01:18:50 +00:00
|
|
|
ARCH:=$(shell uname -m)
|
|
|
|
|
2019-04-12 16:02:26 +00:00
|
|
|
dist: locales inx
|
2018-01-14 01:18:50 +00:00
|
|
|
bin/build-dist $(EXTENSIONS)
|
2019-04-11 03:38:43 +00:00
|
|
|
bin/build-electron
|
2018-04-10 00:13:13 +00:00
|
|
|
cp inx/*.inx dist
|
2018-03-31 00:40:29 +00:00
|
|
|
cp -a images/examples dist/inkstitch
|
2018-04-21 02:49:05 +00:00
|
|
|
cp -a palettes dist/inkstitch
|
2018-06-26 01:02:38 +00:00
|
|
|
cp -a symbols dist/inkstitch
|
2018-11-15 01:23:06 +00:00
|
|
|
cp -a fonts dist/inkstitch
|
2018-09-01 20:26:47 +00:00
|
|
|
cp -a icons dist/inkstitch/bin
|
|
|
|
cp -a locales dist/inkstitch/bin
|
|
|
|
cp -a print dist/inkstitch/bin
|
2019-04-12 05:41:14 +00:00
|
|
|
cp -a electron/dist/*-unpacked dist/inkstitch/electron
|
2018-02-20 02:43:39 +00:00
|
|
|
if [ "$$BUILD" = "windows" ]; then \
|
|
|
|
cd dist; zip -r ../inkstitch-$(VERSION)-win32.zip *; \
|
|
|
|
else \
|
2018-08-01 21:24:29 +00:00
|
|
|
cd dist; tar zcf ../inkstitch-$(VERSION)-$(OS)-$(ARCH).tar.gz *; \
|
2018-02-20 02:43:39 +00:00
|
|
|
fi
|
2018-01-14 01:18:50 +00:00
|
|
|
|
|
|
|
distclean:
|
2019-04-12 16:02:26 +00:00
|
|
|
rm -rf build dist inx locales *.spec *.tar.gz *.zip electron/node_modules electron/dist
|
2018-02-05 03:38:24 +00:00
|
|
|
|
2018-08-20 19:07:12 +00:00
|
|
|
.PHONY: inx
|
2018-08-21 00:42:02 +00:00
|
|
|
inx: locales
|
2018-08-20 19:07:12 +00:00
|
|
|
mkdir -p inx
|
2018-08-21 01:59:49 +00:00
|
|
|
if [ "$$BUILD" = "windows" ]; then \
|
|
|
|
wine c:\\Python\\python.exe bin/generate-inx-files; \
|
|
|
|
else \
|
|
|
|
bin/generate-inx-files; \
|
|
|
|
fi
|
2018-08-20 19:07:12 +00:00
|
|
|
|
|
|
|
.PHONY: messages.po
|
2018-02-27 00:49:43 +00:00
|
|
|
messages.po:
|
2018-02-05 03:38:24 +00:00
|
|
|
rm -f messages.po
|
2018-08-20 19:17:55 +00:00
|
|
|
bin/pyembroidery-gettext > pyembroidery-format-descriptions.py
|
2018-08-20 19:49:19 +00:00
|
|
|
pybabel extract -o messages.po -F babel.conf --add-location=full --add-comments=l10n,L10n,L10N --sort-by-file --strip-comments -k N_ .
|
2018-08-20 19:17:55 +00:00
|
|
|
rm pyembroidery-format-descriptions.py
|
2018-02-05 03:38:24 +00:00
|
|
|
|
2018-09-15 17:01:41 +00:00
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
rm -f messages.po pyembroidery-format-descriptions.py
|
|
|
|
|
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
|
2018-08-22 18:54:14 +00:00
|
|
|
|
|
|
|
.PHONY: style
|
|
|
|
style:
|
2019-04-12 19:32:37 +00:00
|
|
|
flake8 . --count --max-complexity=10 --max-line-length=150 --statistics --exclude=pyembroidery,__init__.py,electron,build
|