21 lines
919 B
Makefile
21 lines
919 B
Makefile
SOLC = /usr/bin/solc
|
|
|
|
all: token_index accounts_index
|
|
|
|
token_index:
|
|
$(SOLC) TokenUniqueSymbolIndexAddressDeclarator.sol --abi --evm-version byzantium | awk 'NR>3' > TokenUniqueSymbolIndexAddressDeclarator.json
|
|
$(SOLC) TokenUniqueSymbolIndexAddressDeclarator.sol --bin --evm-version byzantium | awk 'NR>3' > TokenUniqueSymbolIndexAddressDeclarator.bin
|
|
truncate -s -1 TokenUniqueSymbolIndexAddressDeclarator.bin
|
|
|
|
|
|
accounts_index:
|
|
$(SOLC) AccountsIndexAddressDeclarator.sol --abi --evm-version byzantium | awk 'NR>3' > AccountsIndexAddressDeclarator.json
|
|
$(SOLC) AccountsIndexAddressDeclarator.sol --bin --evm-version byzantium | awk 'NR>3' > AccountsIndexAddressDeclarator.bin
|
|
truncate -s -1 AccountsIndexAddressDeclarator.bin
|
|
|
|
install: all
|
|
cp -v TokenUniqueSymbolIndexAddressDeclarator.{json,bin} ../python/okota/data/
|
|
cp -v AccountsIndexAddressDeclarator.{json,bin} ../python/okota/data/
|
|
|
|
.PHONY: test install
|