Add waf, configure, Makefile
This commit is contained in:
parent
f00395f9a2
commit
a7c80ad38c
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
/.lock-waf*
|
||||
/.waf*
|
||||
/build/
|
15
Makefile
Normal file
15
Makefile
Normal 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
8
configure
vendored
Executable 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
169
waf
vendored
Executable file
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user