blob: f168e69676d356ca8ecab78d08f4987b61bb2702 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
echo "Setting up for waf build"
rm -f configure Makefile
cp configure.waf configure
# this relies on the fact that make looks for 'makefile' before 'Makefile'
cp Makefile.waf makefile
echo "done ... now run ./configure or ./configure.developer"
|