diff --git a/Makefile b/Makefile index 51af20952..075a8865e 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,10 @@ endif bin/gh: $(BUILD_FILES) @go build -trimpath -ldflags "$(GO_LDFLAGS)" -o "$@" ./cmd/gh +clean: + rm -rf ./bin ./share +.PHONY: clean + test: go test ./... .PHONY: test