blob: 3005239885575c563673f19533279939998066e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
p=`dirname $0`
echo "Setting up for waf build"
echo "done. Now run $p/configure then make."
if [ $p != "." ]; then
echo "Notice: The build invoke path is not the main directory! Use make with the parameter"
echo "-C $p. Example: make -C $p all"
fi
|