summaryrefslogtreecommitdiff
path: root/Makefile
blob: f9f82428578e2b85b07f4e086c6e3e8715266c67 (plain)
1
2
3
4
5
6
7
8
BINARY = linum
GO = go
MAIN = .
OUTPUT = build/$(BINARY)
LDFLAGS = -ldflags="-s -w -X main.version=$(VERSION)"

default:
	$(GO) build $(LDFLAGS) -o $(OUTPUT) $(MAIN)