From 213b9a0d9eb4d0871566d549ece09128b97976bc Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Wed, 24 Sep 2025 20:13:56 +0200 Subject: [PATCH] chore: fix build for windows --- .gitignore | 1 + Makefile | 5 +---- main.go => tetris.go | 0 3 files changed, 2 insertions(+), 4 deletions(-) rename main.go => tetris.go (100%) diff --git a/.gitignore b/.gitignore index 1dce0e8..e0cc394 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /tetris +/tetris.exe diff --git a/Makefile b/Makefile index 7017b46..cfda436 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,3 @@ GO = go - -.PHONY: tetris - tetris : - $(GO) build -o $@ + $(GO) build tetris.go diff --git a/main.go b/tetris.go similarity index 100% rename from main.go rename to tetris.go