wallet-core/Makefile

55 lines
1.3 KiB
Makefile
Raw Normal View History

2016-11-18 22:08:59 +01:00
src = src
2016-02-22 23:15:24 +01:00
ts = $(shell git ls-files $(src) | grep '\.tsx\?$$')
2016-03-18 17:35:52 +01:00
poname = taler-wallet-webex
2016-02-22 19:08:16 +01:00
gulp = node_modules/gulp/bin/gulp.js
tsc = node_modules/typescript/bin/tsc
po2json = node_modules/po2json/bin/po2json
2016-11-27 22:13:24 +01:00
.PHONY: pogen src/i18n/strings.ts yarn-install
2016-02-22 19:08:16 +01:00
2016-11-27 22:13:24 +01:00
package-stable: tsc yarn-install
2016-02-22 19:08:16 +01:00
$(gulp) package-stable
2016-11-27 22:13:24 +01:00
package-unstable: tsc yarn-install
2016-02-22 19:08:16 +01:00
$(gulp) package-unstable
2016-11-27 22:13:24 +01:00
tsc: tsconfig.json yarn-install src/i18n/strings.ts
2016-02-22 19:08:16 +01:00
$(tsc)
2016-11-23 01:29:34 +01:00
yarn-install:
yarn install
tsconfig.json: gulpfile.js yarn-install
2016-02-22 19:08:16 +01:00
$(gulp) tsconfig
pogen/pogen.js: pogen/pogen.ts pogen/tsconfig.json
2016-02-23 15:58:05 +01:00
cd pogen; ../$(tsc)
2016-11-23 01:29:34 +01:00
pogen: $(ts) pogen/pogen.js yarn-install
2016-03-18 17:35:52 +01:00
find $(src) \( -name '*.ts' -or -name '*.tsx' \) ! -name '*.d.ts' \
| xargs node pogen/pogen.js \
| msguniq \
2016-11-18 22:08:59 +01:00
| msgmerge src/i18n/poheader - \
> src/i18n/$(poname).pot
2016-03-18 17:35:52 +01:00
msgmerge:
2016-11-18 22:08:59 +01:00
@for pofile in src/i18n/*.po; do \
2016-03-18 17:35:52 +01:00
echo merging $$pofile; \
2016-11-18 22:08:59 +01:00
msgmerge -o $$pofile $$pofile src/i18n/$(poname).pot; \
2016-02-23 21:04:20 +01:00
done; \
2016-02-22 23:15:24 +01:00
dist:
$(gulp) srcdist
2016-11-27 22:13:24 +01:00
src/i18n/strings.ts: pogen msgmerge
cp src/i18n/strings-prelude src/i18n/strings.ts
2016-11-18 22:08:59 +01:00
for pofile in src/i18n/*.po; do \
2016-03-18 17:35:52 +01:00
b=`basename $$pofile`; \
lang=$${b%%.po}; \
$(po2json) -F -f jed1.x -d $$lang $$pofile $$pofile.json; \
2016-11-27 22:13:24 +01:00
(echo -n "strings['$$lang'] = "; cat $$pofile.json; echo ';') >> $@; \
rm $$pofile.json; \
2016-02-22 23:15:24 +01:00
done
2016-02-22 19:08:16 +01:00