You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
221 B
Makefile
22 lines
221 B
Makefile
1 year ago
|
.DEFAULT_GOAL := build
|
||
|
|
||
|
fmt:
|
||
|
go fmt ./...
|
||
|
.PHONY:fmt
|
||
|
|
||
|
lint: fmt
|
||
|
revive ./...
|
||
|
.PHONY:lint
|
||
|
|
||
|
vet: fmt
|
||
|
go vet ./...
|
||
|
.PHONY:vet
|
||
|
|
||
|
build: vet
|
||
|
go build -o my_slice slice.go
|
||
|
.PHONY:build
|
||
|
|
||
|
clean:
|
||
|
rm rf ./my_slice
|
||
|
.PHONY:clean
|