11 lines
114 B
Bash
11 lines
114 B
Bash
#!/bin/bash
|
|
# autogen.sh
|
|
set -e
|
|
|
|
mkdir -p m4
|
|
libtoolize -c -f
|
|
aclocal
|
|
autoconf -f
|
|
autoheader -f
|
|
automake -a -c -f
|