diff options
author | Valery Piashchynski <[email protected]> | 2021-05-13 12:38:29 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2021-05-13 12:38:29 +0300 |
commit | 705b69631dc91323c64a19594dcfeca06ea4fa5a (patch) | |
tree | 0537933bebead15737d66b51b85717f5a607f2e7 | |
parent | 4b0a9860c3874c7fa8a0cb9ee7f0ec2be72b03d5 (diff) | |
parent | 12fe0a4c04b5b8cb4edb3f6a9971f3c73e753168 (diff) |
#670 fix(makefile): remove old targets
#670 fix(makefile): remove old targets
-rw-r--r-- | CHANGELOG.md | 13 | ||||
-rwxr-xr-x | Makefile | 19 |
2 files changed, 13 insertions, 19 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0eef249f..90f84c00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ CHANGELOG ========= +v2.3.0 (01.06.2021) +------------------- + +## 👀 New: + +- ✏️ + +## 🩹 Fixes: + +- 🐛 Fix: remove `build` and other old targets from the Makefile. + +--- + v2.2.0 (11.05.2021) ------------------- @@ -4,25 +4,6 @@ SHELL = /bin/sh -.DEFAULT_GOAL := build - -# This will output the help for each task. thanks to https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html -help: ## Show this help - @printf "\033[33m%s:\033[0m\n" 'Available commands' - @awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z0-9_-]+:.*?## / {printf " \033[32m%-14s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST) - -build: ## Build RR binary file for local os/arch - CGO_ENABLED=0 go build -trimpath -ldflags "-s" -o ./rr ./cmd/main.go - -clean: ## Make some clean - rm ./rr - -install: build ## Build and install RR locally - cp rr /usr/local/bin/rr - -uninstall: ## Uninstall locally installed RR - rm -f /usr/local/bin/rr - test_coverage: docker-compose -f tests/docker-compose.yaml up -d --remove-orphans rm -rf coverage |