wallet-core/packages/merchant-backoffice-ui/Makefile

16 lines
371 B
Makefile
Raw Normal View History

2022-11-04 14:24:29 +01:00
# This Makefile has been placed in the public domain
# Settings from "./configure"
include .config.mk
all:
@echo run \'make install\' to install
2022-11-04 15:50:09 +01:00
spa_dir=$(prefix)/share/taler/merchant-backoffice
2022-11-04 14:24:29 +01:00
install:
2022-11-04 15:50:09 +01:00
pnpm install --frozen-lockfile --filter @gnu-taler/merchant-backoffice...
2022-11-04 14:24:29 +01:00
pnpm run build
(cd dist && find . -type f -exec install -D "{}" "$(spa_dir)/{}" \;)
2022-11-04 14:24:29 +01:00