7 lines
105 B
Makefile
7 lines
105 B
Makefile
GO = go
|
|
GOFLAGS = -trimpath -ldflags="-s -w"
|
|
|
|
.PHONY: tetris
|
|
|
|
tetris :
|
|
$(GO) build $(GOFLAGS) tetris.go
|