Feat: works on my machine

This commit is contained in:
2025-10-16 05:07:56 +08:00
commit 5bbab63a2c
37 changed files with 4553 additions and 0 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
.PHONY: all clean
GO_ARGS += CGO_ENABLED=0
SOURCE := $(shell find . -type f -name '*.go')
TARGET := game
all: $(TARGET)
$(TARGET): $(SOURCE)
$(GO_ARGS) go build -o $@
clean:
-rm -f $(TARGET)