summaryrefslogtreecommitdiff
path: root/src/mitm/Makefile.in
blob: 4a9f33a272125db5c5f3343ecff7a64025d249a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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