Makefile (351B)
1 all: solidity js python aux 2 3 .PHONY: js python solidity wala 4 5 js: 6 make -C js 7 8 python: 9 make -C python 10 cd python && ./prepare.sh 11 12 solidity: 13 make -C solidity install 14 15 wala: 16 git clone git://defalsify.org/wala.git 17 cd wala && cargo build --all-features 18 19 aux: wala 20 21 test: 22 make -C python test 23 24 doc: 25 makeinfo -o html_docs --html doc/texinfo/index.texi