add wrapper configure script and Makefile

This commit is contained in:
Josh Holtrop 2016-04-06 11:22:56 -04:00
parent 71b8263e65
commit 1350bd4a62
2 changed files with 13 additions and 0 deletions

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
.PHONY: build
build:
./waf build
.PHONY: clean
clean:
./waf clean
.PHONY: distclean
distclean:
./waf distclean

2
configure vendored Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
exec ./waf configure "$@"