Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
kingster committed Sep 5, 2022
1 parent 99ea17f commit 19ed5ac
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ test:
@echo " CGO_LDFLAGS = $(CGO_LDFLAGS)"
@echo " BUILD_TAGS = $(BUILD_TAGS)"
@echo " ADD_LDFLAGS = $(ALDFLAGS)"
@echo " GO = $(GO)"
@$(GO) test -v --count=1 -tags="$(BUILD_TAGS)" $(ALDFLAGS) $(PACKAGES)

.PHONY: bench
Expand All @@ -82,7 +81,6 @@ build:
@echo " BUILD_TAGS = $(BUILD_TAGS)"
@echo " VERSION = $(VERSION)"
@echo " ADD_LDFLAGS = $(ALDFLAGS)"
@echo " GO = $(GO)"
@for target_pkg in $(TARGET_PACKAGES); do echo $$target_pkg; $(GO) build -tags="$(BUILD_TAGS)" $(ALDFLAGS) -o ./bin/`basename $$target_pkg`$(BIN_EXT) $$target_pkg || exit 1; done

.PHONY: install
Expand All @@ -96,7 +94,6 @@ install:
@echo " BUILD_TAGS = $(BUILD_TAGS)"
@echo " VERSION = $(VERSION)"
@echo " ADD_LDFLAGS = $(ALDFLAGS)"
@echo " GO = $(GO)"
@for target_pkg in $(TARGET_PACKAGES); do echo $$target_pkg; $(GO) install -tags="$(BUILD_TAGS)" $(ALDFLAGS) $$target_pkg || exit 1; done

.PHONY: dist
Expand Down

0 comments on commit 19ed5ac

Please sign in to comment.