mirror of
				https://github.com/chaintool-py/eth-erc20.git
				synced 2025-10-28 15:29:01 +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/
 | |
| 
 |