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
|
|
|
|
|
|
|
tsc = node_modules/typescript/bin/tsc
|
2019-05-07 23:46:50 +02:00
|
|
|
pogen = node_modules/pogen/bin/pogen.js
|
2017-05-24 15:10:37 +02:00
|
|
|
typedoc = node_modules/typedoc/bin/typedoc
|
2020-04-06 17:35:51 +02:00
|
|
|
ava = node_modules/.bin/ava
|
2017-05-27 18:05:10 +02:00
|
|
|
nyc = node_modules/nyc/bin/nyc.js
|
2016-02-22 19:08:16 +01:00
|
|
|
|
2020-08-03 09:52:29 +02:00
|
|
|
include ./build-system/config.mk
|
2016-02-22 19:08:16 +01:00
|
|
|
|
2020-08-03 09:30:48 +02:00
|
|
|
.PHONY: compile
|
|
|
|
compile:
|
|
|
|
pnpm i
|
|
|
|
pnpm run compile
|
2016-02-22 19:08:16 +01:00
|
|
|
|
2017-05-27 18:05:10 +02:00
|
|
|
.PHONY: dist
|
2017-05-24 14:31:13 +02:00
|
|
|
dist:
|
2020-04-06 17:35:51 +02:00
|
|
|
git archive --format=tar.gz HEAD -o taler-wallet.tar.gz
|
2016-02-23 15:58:05 +01:00
|
|
|
|
2017-05-24 15:10:37 +02:00
|
|
|
# make documentation from docstrings
|
2017-05-27 18:05:10 +02:00
|
|
|
.PHONY: typedoc
|
2017-05-24 15:10:37 +02:00
|
|
|
typedoc:
|
2020-04-06 17:35:51 +02:00
|
|
|
$(typedoc) --out dist/typedoc --readme README
|
2017-05-24 15:10:37 +02:00
|
|
|
|
2017-05-27 18:05:10 +02:00
|
|
|
.PHONY: clean
|
2017-05-24 15:10:37 +02:00
|
|
|
clean:
|
2020-08-03 09:30:48 +02:00
|
|
|
pnpm run clean
|
2017-05-24 15:10:37 +02:00
|
|
|
|
2019-10-14 19:09:12 +02:00
|
|
|
.PHONY: submodules-update
|
|
|
|
submodules-update:
|
2019-10-02 23:25:19 +02:00
|
|
|
git submodule update --recursive --remote
|
|
|
|
|
2017-05-27 18:05:10 +02:00
|
|
|
.PHONY: check
|
2020-08-03 09:30:48 +02:00
|
|
|
check: compile
|
|
|
|
pnpm run check
|
2019-08-20 16:05:38 +02:00
|
|
|
|
2020-04-06 17:35:51 +02:00
|
|
|
.PHONY: webextensions
|
|
|
|
webextensions: rollup
|
2020-04-06 21:53:29 +02:00
|
|
|
./webextension/pack.sh
|
2019-08-20 16:05:38 +02:00
|
|
|
|
|
|
|
.PHONY: i18n
|
2020-08-03 09:30:48 +02:00
|
|
|
i18n: compile
|
2017-05-24 14:31:13 +02:00
|
|
|
# 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
|
2020-04-07 12:42:39 +02:00
|
|
|
cat src/i18n/strings-prelude > src/i18n/strings.ts
|
|
|
|
@for pofile in src/i18n/*.po; do \
|
|
|
|
echo appending $$pofile; \
|
|
|
|
./contrib/po2ts $$pofile >> src/i18n/strings.ts; \
|
|
|
|
done;
|
|
|
|
./node_modules/.bin/prettier --config .prettierrc --write src/i18n/strings.ts
|
2019-08-19 14:08:14 +02:00
|
|
|
|
2019-08-19 14:20:32 +02:00
|
|
|
# Some commands are only available when ./configure has been run
|
2019-08-19 14:08:14 +02:00
|
|
|
|
|
|
|
ifndef prefix
|
2019-08-19 14:20:32 +02:00
|
|
|
.PHONY: warn-noprefix install
|
|
|
|
warn-noprefix:
|
2019-08-19 14:08:14 +02:00
|
|
|
@echo "no prefix configured, did you run ./configure?"
|
2019-08-19 14:20:32 +02:00
|
|
|
install: warn-noprefix
|
2019-08-19 14:08:14 +02:00
|
|
|
else
|
2020-08-03 09:30:48 +02:00
|
|
|
install_target = $(prefix)/lib/taler-wallet-cli
|
2019-08-19 14:08:14 +02:00
|
|
|
.PHONY: install
|
2020-08-03 10:10:29 +02:00
|
|
|
install: compile
|
2020-08-03 09:30:48 +02:00
|
|
|
install -d $(install_target)/node_modules/taler-wallet-cli
|
|
|
|
install -d $(install_target)/node_modules/taler-wallet-cli/bin
|
|
|
|
install -d $(install_target)/node_modules/taler-wallet-cli/dist
|
|
|
|
install ./packages/taler-wallet-cli/dist/taler-wallet-cli.js $(install_target)/node_modules/taler-wallet-cli/dist/
|
|
|
|
install ./packages/taler-wallet-cli/bin/taler-wallet-cli $(install_target)/node_modules/taler-wallet-cli/bin/
|
|
|
|
ln -sft $(prefix)/bin $(install_target)/node_modules/taler-wallet-cli/bin/taler-wallet-cli
|
2019-08-19 14:08:14 +02:00
|
|
|
endif
|
|
|
|
|
2019-12-02 18:12:59 +01:00
|
|
|
.PHONY: rollup
|
2020-08-03 09:30:48 +02:00
|
|
|
rollup: compile
|
2019-12-02 18:12:59 +01:00
|
|
|
./node_modules/.bin/rollup -c
|
2019-11-02 13:38:41 +01:00
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
.PHONY: lint
|
|
|
|
lint:
|
2020-04-07 10:07:32 +02:00
|
|
|
./node_modules/.bin/eslint --ext '.js,.ts,.tsx' 'src'
|