31 lines
1.1 KiB
Makefile
31 lines
1.1 KiB
Makefile
|
# This Makefile has been placed in the public domain.
|
||
|
|
||
|
-include ../../.config.mk
|
||
|
include .config.mk
|
||
|
|
||
|
$(info prefix is $(prefix))
|
||
|
|
||
|
all:
|
||
|
@echo use 'make install' to build and install taler-harness
|
||
|
|
||
|
ifndef prefix
|
||
|
.PHONY: warn-noprefix install
|
||
|
warn-noprefix:
|
||
|
@echo "no prefix configured, did you run ./configure?"
|
||
|
install: warn-noprefix
|
||
|
else
|
||
|
install_target = $(prefix)/lib/taler-harness
|
||
|
.PHONY: install install-nodeps
|
||
|
install:
|
||
|
pnpm install --frozen-lockfile --filter @gnu-taler/taler-harness...
|
||
|
install -d $(prefix)/bin
|
||
|
install -d $(install_target)/bin
|
||
|
install -d $(install_target)/node_modules/taler-harness
|
||
|
install -d $(install_target)/node_modules/taler-harness/bin
|
||
|
install -d $(install_target)/node_modules/taler-harness/dist
|
||
|
install ./dist/taler-harness-bundled.cjs $(install_target)/node_modules/taler-harness/dist/
|
||
|
install ./dist/taler-harness-bundled.cjs.map $(install_target)/node_modules/taler-harness/dist/
|
||
|
install ./bin/taler-harness.mjs $(install_target)/node_modules/taler-harness/bin/
|
||
|
ln -sf $(install_target)/node_modules/taler-harness/bin/taler-harness.mjs $(prefix)/bin/taler-harness
|
||
|
endif
|