Remove included bin/waf
This commit is contained in:
parent
0b952f69a6
commit
02a670fc49
3 changed files with 6 additions and 14 deletions
11
Makefile
11
Makefile
|
@ -1,13 +1,11 @@
|
||||||
CC := gcc
|
|
||||||
|
|
||||||
all:
|
all:
|
||||||
@bin/waf build
|
@waf build
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@bin/waf clean
|
@waf clean
|
||||||
|
|
||||||
distclean:
|
distclean:
|
||||||
@bin/waf distclean
|
@waf distclean
|
||||||
@rm tags
|
@rm tags
|
||||||
|
|
||||||
ctags:
|
ctags:
|
||||||
|
@ -16,7 +14,6 @@ ctags:
|
||||||
coverity:
|
coverity:
|
||||||
@if [ -d cov-int ]; then rm -rf cov-int;fi
|
@if [ -d cov-int ]; then rm -rf cov-int;fi
|
||||||
@mkdir cov-int
|
@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
|
@tar cvzf coverity_siahsd.tgz cov-int
|
||||||
@rm -rf cov-int
|
@rm -rf cov-int
|
||||||
|
|
||||||
|
|
BIN
bin/waf
vendored
BIN
bin/waf
vendored
Binary file not shown.
9
configure
vendored
9
configure
vendored
|
@ -1,10 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if ! /usr/bin/env python -c "import sys;sys.exit(0)";then
|
# apt install libglib-dev libdbi-dev libtalloc-dev nettle-dev
|
||||||
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
|
|
||||||
|
|
||||||
bin/waf configure
|
waf configure
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue