--- a/Makefile +++ b/Makefile @@ -1,3 +1,4 @@ +.PHONY: _bench _bench: cargo run --release --features runtime-benchmarks -- \ benchmark --pallet pallet-$(PALLET) \ @@ -5,7 +6,9 @@ --template .maintain/frame-weight-template.hbs --steps=50 --repeat=20 \ --output=./pallets/$(PALLET)/src/weights.rs +.PHONY: bench-evm-migration bench-evm-migration: make _bench PALLET=evm-migration -bench: bench-evm-migration \ No newline at end of file +.PHONY: bench +bench: bench-evm-migration