WAFCMD=python waf all: build checkwaf: @[ -f waf ] || make getwaf getwaf: curl https://waf.io/waf-1.8.14 > waf @chmod +x waf expandwaf: @[ -d wafilb ] || rm -fr waflib @$(WAFCMD) --help > /dev/null @mv .waf*/waflib . && rm -fr .waf* @sed '/^#==>$$/,$$d' waf > waf2 && mv waf2 waf @chmod +x waf configure: checkwaf $(WAFCMD) configure build: configure $(WAFCMD) build build_python: cd python && ./setup.py build test_python: cd python && ./setup.py install && ./tests/run_all_tests clean_python: cd python && ./setup.py clean build_python3: cd python && python3 ./setup.py build clean_python3: cd python && python3 ./setup.py clean clean: $(WAFCMD) clean distcheck: checkwaf $(WAFCMD) distcheck help: $(WAFCMD) --help