inkstitch/Makefile

62 wiersze
2.4 KiB
Makefile
Czysty Zwykły widok Historia

# used for distlocal
OS=$(shell uname)
dist: version locales inx
python bin/generate-flaskserverport-file
2020-08-18 18:52:47 +00:00
bash bin/build-python
bash bin/build-electron
bash bin/build-distribution-archives
distclean:
rm -rf build dist inx locales artifacts win mac *.spec *.tar.gz *.zip electron/node_modules electron/dist electron/build/mac electron/build/mac-arm64 electron/build/win-ia32-unpacked electron/build/linux-unpacked electron/build/linux-arm64-unpacked electron/src/lib/flaskserverport.json
distlocal:
@case ${OS} in "Darwin") export BUILD=osx ;; "Linux")export BUILD=linux ;; *) export BUILD=windows ;; esac; export VERSION=local-build; make distclean && make dist;
manual:
make inx && cd electron && yarn install && cd ..
.PHONY: inx
inx: version locales
2024-02-07 20:00:07 +00:00
python bin/generate-inx-files;
.PHONY: messages.po
2021-09-27 09:33:07 +00:00
messages.po: inx
rm -f messages.po
xgettext inx/*.inx --its=its/inx.its -o messages-inx.po
# There seems to be no proper way to set the charset to utf-8
2021-09-27 09:33:07 +00:00
sed -i 's/charset=CHARSET/charset=UTF-8/g' messages-inx.po
bin/pyembroidery-gettext > pyembroidery-format-descriptions.py
bin/inkstitch-fonts-gettext > inkstitch-fonts-metadata.py
bin/inkstitch-tiles-gettext > inkstitch-tiles-metadata.py
# After the inx files are finished building, we don't need the src/ folder anymore.
# We don't want babel to grab possible translation strings from that folder, so let's remove it
rm -rf src/
2020-04-28 16:34:05 +00:00
pybabel extract -o messages-babel.po -F babel.conf --add-location=full --add-comments=l10n,L10n,L10N --sort-by-file --strip-comments -k N_ -k '$$gettext' .
rm pyembroidery-format-descriptions.py inkstitch-fonts-metadata.py inkstitch-tiles-metadata.py
2020-05-21 00:40:56 +00:00
cd electron && yarn --link-duplicates --pure-lockfile
2020-04-28 16:34:05 +00:00
find electron/src -name '*.html' -o -name '*.js' -o -name '*.vue' | xargs electron/node_modules/.bin/gettext-extract --quiet --attribute v-translate --output messages-vue.po
msgcat -o messages.po messages-babel.po messages-vue.po messages-inx.po
2020-04-28 16:34:05 +00:00
2021-03-05 16:19:25 +00:00
electron/src/renderer/assets/translations.json: $(wildcard translations/messages_*.po)
find translations -name '*.po' -a ! -empty | \
2020-04-28 16:34:05 +00:00
xargs electron/node_modules/.bin/gettext-compile --output electron/src/renderer/assets/translations.json
%.po: %.mo
msgunfmt -o $@ $<
2018-09-15 17:01:41 +00:00
.PHONY: clean
clean:
rm -f messages.po pyembroidery-format-descriptions.py
.PHONY: locales
locales:
bash bin/generate-translation-files
2018-08-22 18:54:14 +00:00
.PHONY: version
version:
bash bin/generate-version-file
2018-08-22 18:54:14 +00:00
.PHONY: style
style:
bash -x bin/style-check