mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
12 lines
289 B
Bash
12 lines
289 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
p=`dirname $0`
|
||
|
|
||
|
echo "Setting up for waf build"
|
||
|
|
||
|
echo "done. Now run $p/configure or $p/configure.developer 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
|