summaryrefslogtreecommitdiff
path: root/src/merchant-tools/mitm/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/merchant-tools/mitm/Makefile.in')
-rw-r--r--src/merchant-tools/mitm/Makefile.in21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/merchant-tools/mitm/Makefile.in b/src/merchant-tools/mitm/Makefile.in
new file mode 100644
index 00000000..4a9f33a2
--- /dev/null
+++ b/src/merchant-tools/mitm/Makefile.in
@@ -0,0 +1,21 @@
+
+.PHONY: all
+all:
+ true
+
+.PHONY: install-data
+install-data:
+ install -m 444 -Dt @prefix@/share/taler/ merchant-mitm.wsgi
+
+.PHONY: install
+install: install-data
+ pip3 install . --install-option="--prefix=@prefix@" --upgrade --no-deps
+ install -m 544 -Dt @prefix@/bin taler-merchant-mitm
+
+# need a way to make 'make check' happy in this subdir.
+# This component is still too young to be tested.
+.PHONY: check
+check:
+ true
+clean:
+ true