11 lines
133 B
Bash
11 lines
133 B
Bash
|
#!/bin/csh
|
||
|
|
||
|
echo "Generating ./configure script"
|
||
|
./autogen.sh
|
||
|
|
||
|
echo "Configuring"
|
||
|
./configure
|
||
|
|
||
|
echo "Make"
|
||
|
make | tee config.errors
|