eth-address-index/solidity/Makefile
2020-12-29 16:08:49 +01:00

10 lines
228 B
Makefile

all:
solc AddressDeclarator.sol --abi | awk 'NR>3' > AddressDeclarator.json
solc AddressDeclarator.sol --bin | awk 'NR>3' > AddressDeclarator.bin
truncate -s -1 AddressDeclarator.bin
test: all
python test.py
.PHONY: test