eth-address-index/solidity/Makefile

15 lines
395 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
2020-12-29 17:33:00 +01:00
old:
solc TokenEndorser.sol --abi | awk 'NR>3' > TokenEndorser.json
solc TokenEndorser.sol --bin | awk 'NR>3' > TokenEndorser.bin
truncate -s -1 TokenEndorser.bin
2020-12-21 23:00:45 +01:00
test: all
python test.py
.PHONY: test