9 lines
166 B
Bash
9 lines
166 B
Bash
![]() |
#!/bin/sh
|
||
|
#
|
||
|
aclocal -I acinclude
|
||
|
automake --foreign --include-deps --add-missing --copy
|
||
|
autoconf
|
||
|
|
||
|
#./configure $*
|
||
|
echo "Now you are ready to run ./configure"
|