eth-address-index/solidity/Makefile
2020-12-21 23:00:45 +01:00

10 lines
208 B
Makefile

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