wallet-core/packages/exchange-backoffice-ui/Makefile
2023-05-05 08:52:59 -03:00

19 lines
401 B
Makefile

# This Makefile has been placed in the public domain
# Settings from "./configure"
include .config.mk
all:
@echo run \'make install\' to install
spa_dir=$(prefix)/share/taler/exchange-backoffice-ui
install:
pnpm install --frozen-lockfile --filter @gnu-taler/exchange-backoffice-ui...
pnpm run check
pnpm run build
install -d $(spa_dir)
rm -rf ./dist/components
install ./dist/* $(spa_dir)