mirror of
https://github.com/chaintool-py/eth-erc20.git
synced 2024-11-21 17:26:47 +01:00
11 lines
313 B
Makefile
11 lines
313 B
Makefile
SOLC = /usr/bin/solc
|
|
|
|
all:
|
|
$(SOLC) --bin GiftableToken.sol --evm-version byzantium | awk 'NR>3' > GiftableToken.bin
|
|
truncate -s -1 GiftableToken.bin
|
|
$(SOLC) --abi GiftableToken.sol --evm-version byzantium | awk 'NR>3' > GiftableToken.json
|
|
|
|
install: all
|
|
cp -v *{json,bin} ../python/giftable_erc20_token/data/
|
|
|