diff --git a/Makefile b/Makefile index 5dce2b2..9d32b6c 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,11 @@ -CC := gcc - all: - @bin/waf build + @waf build clean: - @bin/waf clean + @waf clean distclean: - @bin/waf distclean + @waf distclean @rm tags ctags: @@ -16,7 +14,6 @@ ctags: coverity: @if [ -d cov-int ]; then rm -rf cov-int;fi @mkdir cov-int - @cov-build --dir=cov-int bin/waf configure clean build + @cov-build --dir=cov-int waf configure clean build @tar cvzf coverity_siahsd.tgz cov-int @rm -rf cov-int - diff --git a/bin/waf b/bin/waf deleted file mode 100755 index e1e34d4..0000000 Binary files a/bin/waf and /dev/null differ diff --git a/configure b/configure index f8c7735..d27fcb7 100755 --- a/configure +++ b/configure @@ -1,10 +1,5 @@ #!/bin/bash -if ! /usr/bin/env python -c "import sys;sys.exit(0)";then - echo "You need to install python for this to work" - echo "You might also want to grab the following debian packages:" - echo "libglib-dev libdbi-dev libtalloc-dev nettle-dev" - exit 1 -fi +# apt install libglib-dev libdbi-dev libtalloc-dev nettle-dev -bin/waf configure +waf configure