1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-28 17:03:58 +08:00

remove useless make target

License: MIT
Signed-off-by: Steven Allen <steven@stebalien.com>
This commit is contained in:
Steven Allen
2018-02-04 15:10:35 +01:00
parent 30b8fa06bb
commit 0e8fc8ffc8
2 changed files with 0 additions and 4 deletions

View File

@ -150,7 +150,6 @@ help:
@echo ' test_go_megacheck - Run the `megacheck` vetting tool' @echo ' test_go_megacheck - Run the `megacheck` vetting tool'
@echo ' test_sharness_short - Run short sharness tests' @echo ' test_sharness_short - Run short sharness tests'
@echo ' test_sharness_expensive - Run all sharness tests' @echo ' test_sharness_expensive - Run all sharness tests'
@echo ' test_sharness_race'
@echo ' coverage - Collects coverage info from unit tests and sharness' @echo ' coverage - Collects coverage info from unit tests and sharness'
@echo @echo
.PHONY: help .PHONY: help

View File

@ -60,9 +60,6 @@ test_sharness_expensive: export TEST_EXPENSIVE=1
test_sharness_expensive: test_sharness_short test_sharness_expensive: test_sharness_short
.PHONY: test_sharness_expensive .PHONY: test_sharness_expensive
test_sharness_race: GOFLAGS += -race
.PHONY: test_sharness_race
TEST += test_sharness_expensive TEST += test_sharness_expensive
TEST_SHORT += test_sharness_short TEST_SHORT += test_sharness_short