7 lines
153 B
Bash
7 lines
153 B
Bash
#!/bin/sh
|
|
|
|
aclocal -I ac \
|
|
&& autoheader \
|
|
&& automake --add-missing --foreign --copy \
|
|
&& autoconf \
|
|
&& ./configure --enable-maintainer-mode $@
|