Makefile: delete unused PHONY

This commit is contained in:
xiaochangbai 2024-03-20 16:12:59 +08:00
parent 0ceac8d00e
commit 62c96c027e

View file

@ -2,7 +2,7 @@
# with Go source code. If you know what GOPATH is then you probably # with Go source code. If you know what GOPATH is then you probably
# don't need to bother with make. # don't need to bother with make.
.PHONY: geth android ios evm all test clean .PHONY: geth all test lint clean devtools help
GOBIN = ./build/bin GOBIN = ./build/bin
GO ?= latest GO ?= latest
@ -47,4 +47,3 @@ devtools:
help: Makefile help: Makefile
@echo " Choose a command run in go-ethereum:" @echo " Choose a command run in go-ethereum:"
@sed -n 's/^#?//p' $< | column -t -s ':' | sort | sed -e 's/^/ /' @sed -n 's/^#?//p' $< | column -t -s ':' | sort | sed -e 's/^/ /'
.PHONY: help