2023-05-05 13:50:35 +02:00
|
|
|
# This Makefile has been placed in the public domain
|
|
|
|
|
|
|
|
# Settings from "./configure"
|
|
|
|
include .config.mk
|
|
|
|
|
|
|
|
all:
|
|
|
|
@echo run \'make install\' to install
|
|
|
|
|
2023-06-05 15:04:09 +02:00
|
|
|
spa_dir=$(prefix)/share/taler/aml-backoffice-ui
|
2023-05-05 13:50:35 +02:00
|
|
|
|
|
|
|
install:
|
2023-06-05 15:04:09 +02:00
|
|
|
pnpm install --frozen-lockfile --filter @gnu-taler/aml-backoffice-ui...
|
2023-05-05 13:50:35 +02:00
|
|
|
pnpm run check
|
|
|
|
pnpm run build
|
|
|
|
install -d $(spa_dir)
|
2023-06-05 14:42:10 +02:00
|
|
|
install ./dist/prod/* $(spa_dir)
|
2023-05-05 13:50:35 +02:00
|
|
|
|