bc84395f87
* autogen.sh run libtoolize --force in autogen to create missing libtool scripts
8 lines
179 B
Bash
8 lines
179 B
Bash
#!/bin/sh
|
|
|
|
aclocal -I ac \
|
|
&& libtoolize --force \
|
|
&& autoheader \
|
|
&& automake --add-missing --foreign --copy \
|
|
&& autoconf \
|
|
&& ./configure --enable-maintainer-mode $@
|