.DEFAULT_GOAL := build
fmt:
go fmt ./...
.PHONY:fmt
lint: fmt
revive ./...
.PHONY:lint
vet: fmt
go vet ./...
.PHONY:vet
build: vet
go build -o hello_world hello.go
.PHONY:build
clean:
rm rf ./hello_world
.PHONY:clean