Skip to content

Commit

Permalink
Makefile: Update .PHONY target names
Browse files Browse the repository at this point in the history
Co-authored-by: Andreas <41449730+nonergodic@users.noreply.github.com>
  • Loading branch information
nvsriram and nonergodic authored Aug 21, 2024
1 parent f492c7b commit e47d474
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ test-evm:


# Verify that the contracts do not include PUSH0 opcodes
.PHONY: test-push0
test-push0:
cd evm && forge build --extra-output evm.bytecode.opcodes
@if grep -qr --include \*.json PUSH0 ./evm/out; then echo "Contract uses PUSH0 instruction" 1>&2; exit 1; else echo "PUSH0 Verification Succeeded"; fi
Expand All @@ -60,7 +61,7 @@ test-anchor:
test-solana: build-solana test-solana-unit build-anchor test-anchor


.PHONY: lint
.PHONY: lint-solana
lint-solana:
cargo fmt --check --all --manifest-path solana/Cargo.toml
cargo check --workspace --tests --manifest-path solana/Cargo.toml
Expand Down

0 comments on commit e47d474

Please sign in to comment.