You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dracli/makefile

16 lines
214 B

.PHONY: clean debug dev test
clean:
@rm -rf ./dracli
dev: clean dracli
debug:
dlv debug --headless --api-version=2 -l 127.0.0.1:2456 -- query pwState
dracli:
@go build -o dracli
test:
@go test -v -cover