Makefile (443B)
1 SOLC = /usr/bin/solc 2 3 all: 4 $(SOLC) --bin ERC712Example.sol --evm-version byzantium | awk 'NR>3' > ERC712Example.bin 5 $(SOLC) --abi ERC712Example.sol --evm-version byzantium | awk 'NR>3' > ERC712Example.json 6 $(SOLC) --metadata ERC712Example.sol --evm-version byzantium | awk 'NR>3' > ERC712Example.metadata.json 7 truncate -s -1 ERC712Example.bin 8 9 install: all 10 cp -v *.json ../python/eth_erc712/data/ 11 cp -v *.bin ../python/eth_erc712/data/ 12