wallet-core/Makefile

56 lines
1.2 KiB
Makefile
Raw Normal View History

2016-02-22 23:15:24 +01:00
src = lib background content_scripts pages popup
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
.PHONY: pogen i18n/strings.js
2016-02-22 19:08:16 +01:00
2016-09-26 16:52:42 +02:00
package-stable: tsc i18n
2016-02-22 19:08:16 +01:00
$(gulp) package-stable
2016-09-26 16:52:42 +02:00
package-unstable: tsc i18n
2016-02-22 19:08:16 +01:00
$(gulp) package-unstable
tsc: tsconfig.json
2016-02-22 19:08:16 +01:00
$(tsc)
tsconfig.json: gulpfile.js
2016-02-22 19:08:16 +01:00
$(gulp) tsconfig
2016-09-27 13:08:38 +02:00
i18n: pogen msgmerge i18n/strings.js
2016-02-22 19:08:16 +01:00
pogen/pogen.js: pogen/pogen.ts pogen/tsconfig.json
2016-02-23 15:58:05 +01:00
cd pogen; ../$(tsc)
pogen: $(ts) pogen/pogen.js
2016-03-18 17:35:52 +01:00
find $(src) \( -name '*.ts' -or -name '*.tsx' \) ! -name '*.d.ts' \
| xargs node pogen/pogen.js \
| msguniq \
| msgmerge i18n/poheader - \
> i18n/$(poname).pot
msgmerge:
@for pofile in i18n/*.po; do \
echo merging $$pofile; \
msgmerge -o $$pofile $$pofile i18n/$(poname).pot; \
2016-02-23 21:04:20 +01:00
done; \
2016-02-22 23:15:24 +01:00
dist:
$(gulp) srcdist
2016-03-18 14:40:35 +01:00
appdist:
$(gulp) appdist
i18n/strings.js: # $(ts)
2016-04-06 01:32:19 +02:00
cp i18n/strings-prelude.js i18n/strings.js
2016-03-18 17:35:52 +01:00
for pofile in i18n/*.po; do \
b=`basename $$pofile`; \
lang=$${b%%.po}; \
$(po2json) -F -f jed1.x -d $$lang $$pofile $$pofile.json; \
(echo -n "i18n.strings['$$lang'] = "; cat $$pofile.json; echo ';') >> $@; \
2016-02-22 23:15:24 +01:00
done
2016-02-22 19:08:16 +01:00