diff --git a/Makefile b/Makefile index 94c59ea..31b00eb 100644 --- a/Makefile +++ b/Makefile @@ -9,11 +9,15 @@ CARGO := cargo all: verify +build: SIGN_TARGET = target/debug/$(BIN) build: $(CARGO) build + @$(SIGN) +release: SIGN_TARGET = target/release/$(BIN) release: $(CARGO) build --release + @$(SIGN) test: $(CARGO) test --all