lashd: When creating a unique client name also check the project's lost_clients list...
[ladish.git] / autogen.sh
blobfac61aecfe20433acd09e7acd24f05e93769eac5
1 #!/bin/sh
3 echo -n "Generating build files... "
5 if ! test -d docs/lash-manual-html-split; then
6 mkdir docs/lash-manual-html-split;
7 ln -s ../lash-manual-html-one-page/Makefile.am docs/lash-manual-html-split;
8 fi
10 if ! test -e ltmain.sh; then
11 if test -e /usr/share/libtool/ltmain.sh; then
12 ln -s /usr/share/libtool/ltmain.sh .;
13 else
14 echo "could not link ltmain.sh to this directory; find it and copy/link it to here";
18 # Shuts up automake..
19 touch docs/lash-manual.texi
21 libtoolize --copy --force \
22 && aclocal -I m4 \
23 && autoheader \
24 && automake --gnu --add-missing \
25 && autoconf
27 #if test x$1 != x--no-conf; then
28 # if test -e conf; then
29 # sh conf;
30 # fi
31 #fi
33 echo "done"