blob: 3731e34907fd5555afba1d05f185502e8aa02a7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# 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/merchant-backoffice
install:
pnpm install --frozen-lockfile --filter @gnu-taler/merchant-backoffice...
pnpm run build
(cd dist && find . -type f -exec install -D "{}" "$(spa_dir)/{}" \;)
|