From 452a6740f2c7eb77793dfee064d30d037024b617 Mon Sep 17 00:00:00 2001 From: zero Date: Thu, 28 Mar 2024 10:37:50 +0100 Subject: [PATCH] Makefile: s/bench_zk-from-json/bench-zk-from-json/ and add bench* to PHONY --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3c0ef2548..2e72c2dc1 100644 --- a/Makefile +++ b/Makefile @@ -140,7 +140,7 @@ test: contracts $(PROOFS_BIN) RUSTFLAGS="$(RUSTFLAGS)" $(CARGO) test --target=$(RUST_TARGET) \ --release --all-features --workspace -bench_zk-from-json: contracts $(PROOFS_BIN) +bench-zk-from-json: contracts $(PROOFS_BIN) rm -f src/contract/test-harness/*.bin RUSTFLAGS="$(RUSTFLAGS)" $(CARGO) bench --target=$(RUST_TARGET) \ --bench zk_from_json --all-features --workspace \ @@ -176,4 +176,4 @@ clean: distclean: clean rm -rf target -.PHONY: all $(BINS) fmt check clippy fix rustdoc test coverage clean distclean +.PHONY: all $(BINS) fmt check clippy fix rustdoc test bench-zk-from-json bench coverage clean distclean