From fd798451f462489e2e6da648f3cd06761902d97d Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Tue, 2 Jan 2024 14:09:29 +0100 Subject: [PATCH] Makefile with basic targets --- makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 makefile diff --git a/makefile b/makefile new file mode 100644 index 0000000..90be8d2 --- /dev/null +++ b/makefile @@ -0,0 +1,11 @@ +run: + go run src/*.go + +build: + go build -o bin/main src/main.go + +clean: + rm -rf bin/* + +format: + go fmt src/*.go \ No newline at end of file