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
|
|
|
|
install -d $(spa_dir)
|
|
|
|
install ./dist/* $(spa_dir)
|
|
|
|
|