Makefile with basic targets

This commit is contained in:
Imbus 2024-01-02 14:09:29 +01:00
parent 9e87ed8178
commit fd798451f4

11
makefile Normal file
View file

@ -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