Makefile with basic targets
This commit is contained in:
parent
9e87ed8178
commit
fd798451f4
1 changed files with 11 additions and 0 deletions
11
makefile
Normal file
11
makefile
Normal 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
|
Loading…
Reference in a new issue