mirror of
git://holbrook.no/eth-address-index
synced 2024-11-16 14:36:46 +01:00
10 lines
208 B
Makefile
10 lines
208 B
Makefile
|
all:
|
||
|
solc TokenEndorser.sol --abi | awk 'NR>3' > TokenEndorser.json
|
||
|
solc TokenEndorser.sol --bin | awk 'NR>3' > TokenEndorser.bin
|
||
|
truncate -s -1 TokenEndorser.bin
|
||
|
|
||
|
test: all
|
||
|
python test.py
|
||
|
|
||
|
.PHONY: test
|