Skip to content

Commit

Permalink
Drop unused Makefile stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasmalkmus committed Sep 28, 2021
1 parent ebeac27 commit bbc76bd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ GOTOOLS := $(shell cat tools.go | grep "_ \"" | awk '{ print $$2 }' | tr -d '"')

# MISC
COVERPROFILE := coverage.out
DIST_DIR := dist

# TAGS
GO_TEST_TAGS := netgo
Expand All @@ -38,7 +37,7 @@ all: dep generate fmt lint test ## Run dep, generate, fmt, lint and test
.PHONY: clean
clean: ## Remove build and test artifacts
@echo ">> cleaning up artifacts"
@rm -rf $(DIST_DIR) $(COVERPROFILE) dep.stamp
@rm -rf $(COVERPROFILE) dep.stamp

.PHONY: coverage
coverage: $(COVERPROFILE) ## Calculate the code coverage score
Expand Down

0 comments on commit bbc76bd

Please sign in to comment.