8 lines
85 B
Bash
8 lines
85 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
aclocal && \
|
||
|
|
autoheader && \
|
||
|
|
autoconf && \
|
||
|
|
libtoolize && \
|
||
|
|
automake -a -c
|