2022-10-31 12:02:09 +01:00
|
|
|
# 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/demobank-ui
|
|
|
|
|
|
|
|
install:
|
|
|
|
pnpm install --frozen-lockfile --filter @gnu-taler/demobank-ui...
|
|
|
|
pnpm run check
|
|
|
|
pnpm run build
|
|
|
|
install -d $(spa_dir)
|
2023-06-05 14:39:05 +02:00
|
|
|
install ./dist/prod/* $(spa_dir)
|
2022-10-31 12:02:09 +01:00
|
|
|
|