SHELL = /bin/sh -include config.mk .PHONY: all all: ./build-system/taler-build-scripts/sh/bin.sh/python.sh ./demo/template.py build .PHONY: clean clean: rm -rf build .PHONY: install ifndef prefix .PHONY: warn-noprefix warn-noprefix: @echo "no prefix configured, did you run ./configure?" @false install: warn-noprefix else install: all mkdir -p $(prefix)/share/taler-landing cp -r build/* $(prefix)/share/taler-landing/ endif