Add waf, configure, Makefile, empty wscript

This commit is contained in:
Josh Holtrop 2018-04-06 10:58:29 -04:00
commit 8d8c08cd85
5 changed files with 195 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
/.lock-waf*
/.waf*
/build/

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
.PHONY: build
build:
./waf build
.PHONY: clean
clean:
./waf clean
.PHONY: install
install:
./waf install
.PHONY: uninstall
uninstall:
./waf uninstall

3
configure vendored Executable file
View File

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

169
waf vendored Executable file

File diff suppressed because one or more lines are too long

5
wscript Normal file
View File

@ -0,0 +1,5 @@
def configure(conf):
pass
def build(bld):
pass