mirror of
git://holbrook.no/erc20-demurrage-token
synced 2026-05-23 19:59:23 +02:00
Initial commit
This commit is contained in:
14
solidity/Makefile
Normal file
14
solidity/Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
SOLC = /usr/bin/solc
|
||||
|
||||
all:
|
||||
$(SOLC) RedistributedDemurrageToken.sol --abi --evm-version byzantium | awk 'NR>3' > RedistributedDemurrageToken.json
|
||||
$(SOLC) RedistributedDemurrageToken.sol --bin --evm-version byzantium | awk 'NR>3' > RedistributedDemurrageToken.bin
|
||||
truncate -s -1 RedistributedDemurrageToken.bin
|
||||
|
||||
test: all
|
||||
python ../python/tests/test_basic.py
|
||||
|
||||
install: all
|
||||
cp -v RedistributedDemurrageToken.{json,bin} ../python/eth_address_declarator/data/
|
||||
|
||||
.PHONY: test install
|
||||
Reference in New Issue
Block a user