12 lines
248 B
Makefile
12 lines
248 B
Makefile
# The default one (the one you are seeing right now)
|
|
@default:
|
|
just -l
|
|
|
|
# To lanch the tests via foundry-rs
|
|
@test:
|
|
forge test
|
|
|
|
# To generate the ABI in the deployment/ folder
|
|
@abi-gen:
|
|
solc --abi code/Kanel42_token.sol -o deployment --overwrite
|