]> git.datanom.net - contactbook.git/blob - autogen.sh
initial commit
[contactbook.git] / autogen.sh
1 #!/bin/sh
2
3 if [ ! -e m4 ]; then
4 mkdir m4
5 fi
6
7 if [ ! -e auxdir ]; then
8 mkdir auxdir
9 fi
10
11 aclocal -I m4 \
12 && libtoolize --force --copy \
13 && autoheader \
14 && automake --add-missing --gnu --copy \
15 && autoconf \
16 && ./configure --enable-maintainer-mode $@
This page took 0.057816 seconds and 6 git commands to generate.