summaryrefslogtreecommitdiff
path: root/build-system/Makefile
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-02-23 16:43:24 -0300
committerSebastian <sebasjm@gmail.com>2021-02-23 16:43:29 -0300
commit808934fae5968ae0d967bdd3d1d5f5ba9322881e (patch)
tree29959cebebea4ce1791e40fc5a8fde0d3f9dacea /build-system/Makefile
parent2a54606abd6b00fb33381e07d8a31b20c2ff25fb (diff)
downloadmerchant-backoffice-808934fae5968ae0d967bdd3d1d5f5ba9322881e.tar.gz
merchant-backoffice-808934fae5968ae0d967bdd3d1d5f5ba9322881e.tar.bz2
merchant-backoffice-808934fae5968ae0d967bdd3d1d5f5ba9322881e.zip
installation script
Diffstat (limited to 'build-system/Makefile')
-rw-r--r--build-system/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/build-system/Makefile b/build-system/Makefile
index fc57ad5..37a44b9 100644
--- a/build-system/Makefile
+++ b/build-system/Makefile
@@ -10,10 +10,18 @@ compile:
pnpm i -r
pnpm run compile
+# .PHONY: dist
+# dist:
+# $(git-archive-all) --include ./configure taler-wallet-$(shell git describe --tags).tar.gz
+
# .PHONY: publish
# publish: compile
# pnpm publish -r --no-git-checks
+# make documentation from docstrings
+.PHONY: echo
+echo:
+ echo ${PORT}
.PHONY: typedoc
typedoc:
@@ -50,3 +58,10 @@ dev-view: compile
.PHONY: lint
lint:
pnpm run lint
+
+.PHONY: install
+install: build
+ echo install -d ${prefix}
+ for file in `find packages/frontend/build/ -type f`; do \
+ install -m 644 -D $$file ${prefix}/$${file#packages/frontend/build/}; \
+ done