summaryrefslogtreecommitdiff
path: root/Makefile
blob: 2b9455161e56e0e44f04b6c272c61c1800c393c8 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# This Makefile has been placed in the public domain.

tsc = node_modules/typescript/bin/tsc
pogen = node_modules/@gnu-taler/pogen/bin/pogen.js
typedoc = node_modules/typedoc/bin/typedoc
ava = node_modules/.bin/ava
nyc = node_modules/nyc/bin/nyc.js
git-archive-all = ./build-system/taler-build-scripts/archive-with-submodules/git_archive_all.py

include .config.mk

.PHONY: compile
compile:
	pnpm install -r --frozen-lockfile
	pnpm run compile


.PHONY: dist
dist:
	$(git-archive-all) \
	       	--include ./configure \
	       	--include ./packages/taler-wallet-cli/configure \
	       	--include ./packages/demobank-ui/configure \
	       	--include ./packages/taler-harness/configure \
	       	--include ./packages/merchant-backoffice-ui/configure \
	       	taler-wallet-$(shell git describe --tags --abbrev=0).tar.gz

# Create tarball with git hash prefix in name
.PHONY: dist-git
dist-git:
	$(git-archive-all) --include ./configure taler-wallet-$(shell git describe --tags).tar.gz

.PHONY: publish
publish:
	pnpm i -r --frozen-lockfile
	pnpm run compile
	pnpm publish -r --no-git-checks

.PHONY: backoffice-prebuilt
backoffice-prebuilt:
	pnpm install --frozen-lockfile --filter @gnu-taler/merchant-backoffice-ui...
	pnpm run --filter @gnu-taler/merchant-backoffice-ui... build
	./contrib/copy-backoffice-into-prebuilt.sh

.PHONY: backend-prebuilt
backend-prebuilt:
	pnpm install --frozen-lockfile --filter @gnu-taler/merchant-backend-ui...
	pnpm run --filter @gnu-taler/merchant-backend... build
	./contrib/copy-backend-into-prebuilt.sh

.PHONY: demobank-prebuilt
demobank-prebuilt:
	pnpm install --frozen-lockfile --filter @gnu-taler/merchant-ba...
	pnpm run --filter @gnu-taler/demobank-ui... build
	./contrib/copy-demobank-into-prebuilt.sh

# make documentation from docstrings
.PHONY: typedoc
typedoc:
	$(typedoc) --out dist/typedoc --readme README

.PHONY: clean
clean:
	pnpm run clean

.PHONY: submodules-update
submodules-update:
	git submodule update --recursive --remote

.PHONY: check
check:
	pnpm install -r --frozen-lockfile
	pnpm run compile
	pnpm run check

.PHONY: config-lib
config-lib:
	pnpm install --frozen-lockfile --filter @gnu-taler/taler-config-lib...
	cd ./packages/taler-config-lib/ && pnpm link -g

.PHONY: anastasis-webui
anastasis-webui:
	pnpm install --frozen-lockfile --filter . --filter @gnu-taler/anastasis-webui...
	pnpm run --filter @gnu-taler/anastasis-webui... build

.PHONY: anastasis-webui-dist
anastasis-webui-dist: anastasis-webui
	(cd packages/anastasis-webui/dist && zip -r - fonts ui.html) > anastasis-webui.zip


.PHONY: anastasis-webui-dev
anastasis-webui-dev:
	pnpm install --frozen-lockfile --filter @gnu-taler/anastasis-webui...
	pnpm run --filter @gnu-taler/anastasis-webui... dev

.PHONY: webextension
webextension:
	pnpm install --frozen-lockfile --filter @gnu-taler/taler-wallet-webextension...
	pnpm run --filter @gnu-taler/taler-wallet-webextension... compile
	cd ./packages/taler-wallet-webextension/ && ./pack.sh dev

.PHONY: webextension-dev
webextension-dev:
	pnpm install --frozen-lockfile --filter @gnu-taler/taler-wallet-webextension...
	pnpm run --filter @gnu-taler/taler-wallet-webextension... dev

.PHONY: embedded
embedded:
	pnpm install --frozen-lockfile --filter @gnu-taler/taler-wallet-embedded...
	pnpm run --filter @gnu-taler/taler-wallet-embedded compile
	@echo built packages/taler-wallet-embedded/dist/taler-wallet-core-qjs.mjs

.PHONY: lint
lint:
	./node_modules/.bin/eslint --ext '.js,.ts,.tsx' 'src'


install: compile
	@echo Please run \'make install\' from one of the directories in packages/\'

# Install taler-wallet-cli and taler-harness
install-tools:
	pnpm install --frozen-lockfile --filter @gnu-taler/taler-wallet-cli... --filter @gnu-taler/taler-harness...
	make -C packages/taler-wallet-cli install-nodeps
	make -C packages/taler-harness install-nodeps