summaryrefslogtreecommitdiff
path: root/Makefile
blob: 1f36f8e4fd1457fac5f02f756e1c362a87474284 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
src = lib background content_scripts pages popup
ts = $(shell git ls-files $(src) | grep '\.tsx\?$$')
poname = taler-wallet-webex

gulp = node_modules/gulp/bin/gulp.js
tsc = node_modules/typescript/bin/tsc
po2json = node_modules/po2json/bin/po2json

.PHONY: node_modules pogen i18n/strings.js

package-stable: node_modules
	$(gulp) package-stable

package-unstable: node_modules
	$(gulp) package-unstable

tsc: tsconfig.json node_modules
	$(tsc)

tsconfig.json: gulpfile.js node_modules
	$(gulp) tsconfig

i18n: pogen i18n/strings.js

pogen/pogen.js: pogen/pogen.ts pogen/tsconfig.json node_modules
	cd pogen; ../$(tsc)

pogen: $(ts) pogen/pogen.js node_modules
	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; \
	done; \

dist: node_modules
	$(gulp) srcdist

appdist:
	$(gulp) appdist

i18n/strings.js: # $(ts) node_modules
	cp i18n/strings-prelude.js i18n/strings.js
	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 ';') >> $@; \
	done


node_modules:
	npm install .