mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
9 lines
294 B
Bash
Executable file
9 lines
294 B
Bash
Executable file
#!/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"
|