diff --git a/Makefile b/Makefile index 672e158..42604a9 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ GO = go +GOFLAGS = -trimpath -ldflags="-s -w" .PHONY: tetris tetris : - $(GO) build tetris.go + $(GO) build $(GOFLAGS) tetris.go