You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
294 B
Bash
10 lines
294 B
Bash
2 years ago
|
#!/bin/sh
|
||
|
|
||
|
echo "Generating configure files... may take a while."
|
||
|
|
||
|
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"
|