11 lines
157 B
Bash
11 lines
157 B
Bash
|
#!/bin/sh
|
||
|
set -x
|
||
|
|
||
|
touch INSTALL NEWS AUTHORS
|
||
|
|
||
|
autoheader \
|
||
|
&& aclocal \
|
||
|
&& libtoolize --ltdl --copy --force \
|
||
|
&& automake --add-missing --copy \
|
||
|
&& autoconf
|