Skip to content

Commit

Permalink
feat: add makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
omarsy committed Jun 16, 2024
1 parent 3b2e1a4 commit dfbfb98
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -416,4 +416,18 @@ generate.internal-contracts-clients: node_modules
|| exit 1 ;\
npx tsx packages/scripts/makeTypescriptIndex $${outdir} || exit 1 ; \
done


all-gno: clean-gno clone-gno bin-gno test-gno

clone-gno:
cd gnobuild && git clone https://github.com/gnolang/gno.git

bin-gno:
cd gnobuild/gno/gnovm && make build

test-gno:
./gnobuild/gno/gnovm/build/gno lint ./gno/...

clean-gno:
rm -rf gnobuild
mkdir gnobuild

0 comments on commit dfbfb98

Please sign in to comment.