eth-address-index/solidity/Makefile

10 lines
228 B
Makefile
Raw Normal View History

2020-12-21 23:00:45 +01:00
all:
2020-12-29 16:08:49 +01:00
solc AddressDeclarator.sol --abi | awk 'NR>3' > AddressDeclarator.json
solc AddressDeclarator.sol --bin | awk 'NR>3' > AddressDeclarator.bin
truncate -s -1 AddressDeclarator.bin
2020-12-21 23:00:45 +01:00
test: all
python test.py
.PHONY: test