summaryrefslogtreecommitdiff
path: root/build-system/Makefile
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2022-10-24 10:42:18 +0200
committerFlorian Dold <florian@dold.me>2022-10-24 10:43:06 +0200
commit3c6cf97646d4abe228ff2458fdc7a2c1bd20c35b (patch)
tree639ef99208defd7d9d29f92c005c2f328c2f3ccc /build-system/Makefile
parent264b14818f71751f61fd21df17a1837435b0e793 (diff)
downloadmerchant-backoffice-master.tar.gz
merchant-backoffice-master.tar.bz2
merchant-backoffice-master.zip
move repoHEADmaster
Diffstat (limited to 'build-system/Makefile')
-rw-r--r--build-system/Makefile93
1 files changed, 0 insertions, 93 deletions
diff --git a/build-system/Makefile b/build-system/Makefile
deleted file mode 100644
index b440e53..0000000
--- a/build-system/Makefile
+++ /dev/null
@@ -1,93 +0,0 @@
-# This Makefile has been placed in the public domain.
-
-PORT = 8080
-
-include ./build-system/config.mk
-
-.PHONY: compile
-compile:
- pnpm i -r --frozen-lockfile
- 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:
- pnpm run typedoc
-
-.PHONY: clean
-clean:
- pnpm run clean
-
-.PHONY: build
-build:
- pnpm run build
-
-.PHONY: build
-build-single:
- pnpm run build-single --filter merchant-backoffice
- pnpm run build --filter merchant-backend
- @echo Build done, result at: 'packages/merchant-backoffice/single/index.html' packages/merchant-backend/dist/pages/*html
-
-.PHONY: submodules-update
-submodules-update:
- git submodule update --recursive --remote
-
-.PHONY: check
-check: compile lint
- pnpm run check
-
-.PHONY: dev
-dev: compile
- pnpm run --filter merchant-backoffice dev
-
-.PHONY: serve
-serve: build
- pnpm run --filter merchant-backoffice serve
-
-.PHONY: dev-backoffice-ui
-dev-backoffice-ui: compile
- pnpm run --filter merchant-backoffice storybook
-
-.PHONY: dev-backend-ui
-dev-backend-ui: compile
- pnpm run --filter merchant-backend storybook
-
-.PHONY: lint
-lint:
- pnpm run lint
-
-.PHONY: dist
-dist: build
- (cd packages/frontend/build && zip -r - .) > merchant-backoffice.zip
-
-.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
-
-.PHONY: install
-install-view:
- pnpm run --filter merchant-backoffice build-storybook
- echo install -d ${prefix}
- for file in `find packages/frontend/storybook-static/ -type f`; do \
- install -m 644 -D $$file ${prefix}/$${file#packages/frontend/storybook-static/}; \
- done
-
-.PHONY: i18n
-i18n:
- ./build-translations.sh
-