8 lines
163 B
Bash
Executable file
8 lines
163 B
Bash
Executable file
#!/bin/sh
|
|
|
|
aclocal -I ./m4 \
|
|
&& libtoolize --force --copy \
|
|
&& autoheader \
|
|
&& automake --add-missing --foreign --copy \
|
|
&& autoconf \
|
|
&& ./configure $@
|