summaryrefslogtreecommitdiff
path: root/src/merchant-tools/mitm/Makefile.in
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2017-05-11 14:03:34 +0200
committerMarcello Stanisci <marcello.stanisci@inria.fr>2017-05-11 14:07:46 +0200
commitb50bb3ad2bc31fceccaa686fa91ceace278c1897 (patch)
tree870c5854079709c9ba56b8d86a1e925a033437d6 /src/merchant-tools/mitm/Makefile.in
parent61e31b91451665d32be04fbfc2483420ed2aad9d (diff)
downloadmerchant-b50bb3ad2bc31fceccaa686fa91ceace278c1897.tar.gz
merchant-b50bb3ad2bc31fceccaa686fa91ceace278c1897.tar.bz2
merchant-b50bb3ad2bc31fceccaa686fa91ceace278c1897.zip
moving all the tools in one place
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