delve/Makefile
chainhelen 58a7c84e01 scripts: Add 'make uninstall' command
This change adds the `make uninstall` command which will uninstall delve.
2019-09-13 11:17:28 +02:00

28 lines
499 B
Makefile

.DEFAULT_GOAL=test
check-cert:
@go run scripts/make.go check-cert
build:
@go run scripts/make.go build
install:
@go run scripts/make.go install
uninstall:
@go run scripts/make.go uninstall
test:
@go run scripts/make.go test
test-proc-run:
@go run scripts/make.go test -s proc -r $(RUN)
test-integration-run:
@go run scripts/make.go test -s service/test -r ($RUN)
vendor:
@go run scripts/make.go vendor
.PHONY: vendor test-integration-run test-proc-run test check-cert install build