go-template/makefile
2024-01-02 14:09:29 +01:00

11 lines
No EOL
111 B
Makefile

run:
go run src/*.go
build:
go build -o bin/main src/main.go
clean:
rm -rf bin/*
format:
go fmt src/*.go