mirror of
https://github.com/whyvl/wireproxy.git
synced 2025-04-29 19:01:42 +02:00
13 lines
224 B
Makefile
13 lines
224 B
Makefile
export GO ?= go
|
|
|
|
.PHONY: all
|
|
all: wireproxy
|
|
|
|
.PHONY: wireproxy
|
|
wireproxy:
|
|
tag="$$(git describe --tag 2>/dev/null)" && \
|
|
${GO} build -ldflags "-X 'main.version=$$tag'" ./cmd/wireproxy
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
${RM} wireproxy
|