delve/Makefile
Sylvain Rabot 8db632e55b
*: Fix typo in Makefile (#1869)
Signed-off-by: Sylvain Rabot <s.rabot@lectra.com>
2020-02-18 10:02:04 -08: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