You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
261 B
Makefile

4 years ago
all: mitmproxy
4 years ago
.PHONY: mitmproxy
mitmproxy:
go build -o go-mitmproxy cmd/go-mitmproxy/main.go
4 years ago
.PHONY: dummycert
dummycert:
go build -o dummycert cmd/dummycert/main.go
4 years ago
.PHONY: clean
clean:
rm -f go-mitmproxy dummycert
4 years ago
.PHONY: test
test:
2 years ago
go test ./... -v