push all exercices
This commit is contained in:
15
ch1/Makefile
Normal file
15
ch1/Makefile
Normal file
@@ -0,0 +1,15 @@
|
||||
.DEFAULT_GOAL := build
|
||||
|
||||
fmt:
|
||||
go fmt ./...
|
||||
|
||||
vet: fmt
|
||||
go vet ./...
|
||||
|
||||
build: vet
|
||||
go build
|
||||
|
||||
clean:
|
||||
go clean
|
||||
|
||||
.PHONY:fmt vet build
|
||||
Reference in New Issue
Block a user