Add waf, configure, Makefile

This commit is contained in:
Josh Holtrop 2018-04-04 22:07:59 -04:00
parent f00395f9a2
commit a7c80ad38c
5 changed files with 200 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

8
configure vendored Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
if [ ! -e gems/yawpa/lib ]; then
echo Warning: It appears that you have not checked out the submodules.
echo Please run \'git submodule update --init\' first.
exit 1
fi
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