Skip to content

Instantly share code, notes, and snippets.

@cc32d9
Created October 7, 2018 21:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cc32d9/21abddd66ee4020fe5d2c1ed660871fa to your computer and use it in GitHub Desktop.
Save cc32d9/21abddd66ee4020fe5d2c1ed660871fa to your computer and use it in GitHub Desktop.
Makefile for eosio CDT
CONTRACT=mycontract
all: $(CONTRACT).wasm $(CONTRACT).abi
%.wasm: %.cpp
eosio-cpp -o $@ $<
%.abi: %.cpp
eosio-abigen --output=$@ $<
clean:
rm -f $(CONTRACT).abi $(CONTRACT).wasm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment