2014-11-24 12:25:18 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2018-06-11 23:34:06 +03:00
|
|
|
echo "Generating configure files... may take a while."
|
2014-11-24 12:25:18 +02:00
|
|
|
|
2018-06-11 23:34:06 +03:00
|
|
|
autoreconf --install --force && \
|
|
|
|
echo "Preparing was successful if there was no error messages above." && \
|
|
|
|
echo "Now type:" && \
|
|
|
|
echo " ./configure && make" && \
|
|
|
|
echo "Run './configure --help' for more information"
|