wallet-core/build-system/Makefile

128 lines
3.9 KiB
Makefile
Raw Normal View History

2020-11-13 22:33:05 +01:00
# This Makefile has been placed in the public domain.
2016-11-18 22:08:59 +01:00
src = src
poname = taler-wallet-webex
2016-02-22 19:08:16 +01:00
tsc = node_modules/typescript/bin/tsc
pogen = node_modules/@gnu-taler/pogen/bin/pogen.js
2017-05-24 15:10:37 +02:00
typedoc = node_modules/typedoc/bin/typedoc
ava = node_modules/.bin/ava
2017-05-27 18:05:10 +02:00
nyc = node_modules/nyc/bin/nyc.js
2020-11-13 22:12:54 +01:00
git-archive-all = ./build-system/taler-build-scripts/archive-with-submodules/git_archive_all.py
2020-08-03 09:52:29 +02:00
include ./build-system/config.mk
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:
2021-08-24 15:49:07 +02:00
$(git-archive-all) --include ./configure taler-wallet-$(shell git describe --tags --abbrev=0).tar.gz
# Create tarball with git hash prefix in name
.PHONY: dist-git
dist-git:
2020-11-13 22:33:05 +01:00
$(git-archive-all) --include ./configure taler-wallet-$(shell git describe --tags).tar.gz
2016-02-23 15:58:05 +01:00
.PHONY: publish
publish:
pnpm i -r --frozen-lockfile
pnpm run compile
pnpm publish -r --no-git-checks
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:
$(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:
pnpm run clean
2017-05-24 15:10:37 +02:00
2019-10-14 19:09:12 +02:00
.PHONY: submodules-update
submodules-update:
git submodule update --recursive --remote
2022-05-23 17:44:36 +02:00
.PHONY: compile
compile:
pnpm install -r --frozen-lockfile
pnpm run compile
2017-05-27 18:05:10 +02:00
.PHONY: check
check:
2022-03-08 13:14:33 +01:00
pnpm install -r --frozen-lockfile
pnpm run compile
pnpm run check
2019-08-20 16:05:38 +02:00
2022-05-23 17:44:36 +02:00
.PHONY: anastasis-webui
anastasis-webui:
pnpm install --frozen-lockfile --filter @gnu-taler/anastasis-webui...
pnpm run compile --filter @gnu-taler/anastasis-webui...
.PHONY: anastasis-webui-dev
anastasis-webui-dev:
pnpm install --frozen-lockfile --filter @gnu-taler/anastasis-webui...
pnpm run dev --filter @gnu-taler/anastasis-webui...
.PHONY: anastasis-webui-storybook
anastasis-webui-storybook:
pnpm install --frozen-lockfile --filter @gnu-taler/anastasis-webui...
pnpm run storybook --filter @gnu-taler/anastasis-webui...
2022-03-08 13:14:33 +01:00
.PHONY: webextension
webextension:
2022-03-08 13:14:33 +01:00
pnpm install --frozen-lockfile --filter @gnu-taler/taler-wallet-webextension...
2022-04-19 00:01:12 +02:00
pnpm run compile --filter @gnu-taler/taler-wallet-webextension...
2020-08-11 15:52:48 +02:00
cd ./packages/taler-wallet-webextension/ && ./pack.sh
2019-08-20 16:05:38 +02:00
2021-10-12 20:18:29 +02:00
.PHONY: webextension-dev-view
webextension-dev-view:
2022-03-08 13:14:33 +01:00
pnpm install -r --frozen-lockfile
pnpm run compile
pnpm run --filter @gnu-taler/taler-wallet-webextension storybook
2019-08-20 16:05:38 +02:00
.PHONY: i18n
i18n: compile
# extract translatable strings
find $(src) \( -name '*.ts' -or -name '*.tsx' \) ! -name '*.d.ts' \
| xargs node $(pogen) \
| msguniq \
| msgmerge src/i18n/poheader - \
> src/i18n/$(poname).pot
# merge existing translations
@for pofile in src/i18n/*.po; do \
echo merging $$pofile; \
msgmerge -o $$pofile $$pofile src/i18n/$(poname).pot; \
done;
# generate .ts file containing all translations
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
install_target = $(prefix)/lib/taler-wallet-cli
2019-08-19 14:08:14 +02:00
.PHONY: install
install:
pnpm install --frozen-lockfile --filter @gnu-taler/taler-wallet-cli...
2020-09-18 17:26:09 +02:00
install -d $(prefix)/bin
2020-08-07 08:11:56 +02:00
install -d $(install_target)/bin
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/dist/taler-wallet-cli.js.map $(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
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'