mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
10 lines
241 B
Bash
Executable File
10 lines
241 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Setting up for waf build"
|
|
ln -sf configure.waf configure
|
|
|
|
# this relies on the fact that make looks for 'makefile' before 'Makefile'
|
|
ln -sf Makefile.waf makefile
|
|
|
|
echo "done ... now run ./configure or ./configure.developer"
|