9 lines
159 B
Text
9 lines
159 B
Text
|
#! /bin/bash
|
||
|
|
||
|
aclocal -I . && \
|
||
|
autoheader && \
|
||
|
libtoolize --automake --copy && \
|
||
|
automake --add-missing --copy && \
|
||
|
autoconf
|
||
|
echo "Ready to run ./configure"
|