wallet-core/Makefile

42 lines
893 B
Makefile
Raw Normal View History

2016-11-18 22:08:59 +01:00
src = src
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
2017-05-24 14:31:13 +02:00
pogen = node_modules/pogen/pogen.js
2016-02-22 19:08:16 +01:00
2017-05-24 14:31:13 +02:00
.PHONY: src/i18n/strings.ts yarn-install
2016-02-22 19:08:16 +01:00
2017-05-24 14:31:13 +02:00
package-stable: i18n
2016-02-22 19:08:16 +01:00
$(gulp) package-stable
2017-05-24 14:31:13 +02:00
package-unstable: i18n
2016-02-22 19:08:16 +01:00
$(gulp) package-unstable
2017-05-24 14:31:13 +02:00
tsc: tsconfig.json yarn-install
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
2017-05-24 14:31:13 +02:00
dist:
$(gulp) srcdist
2016-02-23 15:58:05 +01:00
2017-05-24 14:31:13 +02:00
i18n: yarn-install
# extract translatable strings
2016-03-18 17:35:52 +01:00
find $(src) \( -name '*.ts' -or -name '*.tsx' \) ! -name '*.d.ts' \
2017-05-24 14:31:13 +02:00
| xargs node $(pogen) \
2016-03-18 17:35:52 +01:00
| msguniq \
2016-11-18 22:08:59 +01:00
| msgmerge src/i18n/poheader - \
> src/i18n/$(poname).pot
2017-05-24 14:31:13 +02:00
# merge existing translations
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; \
2017-05-24 14:31:13 +02:00
done;
# generate .ts file containing all translations
$(gulp) po2js