wireproxy/Makefile
2022-09-01 19:06:20 +08:00

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