Initial import (again)
[srvx.git] / autogen.sh
1 #! /bin/sh
2
3 aclocal
4 autoheader -Wall
5 automake -a --gnu Makefile rx/Makefile src/Makefile
6 autoconf -Wall
7 if [ -d ./src/srvx ] ; then
8   echo "WARNING: It looks like you still have the obsolete src/srvx directory."
9   echo "Since we try to compile the binary into that place, this will break the"
10   echo "compile.  This is probably because you did not \"cvs update\" properly"
11   echo "(i.e. with the -P flag).  Since you almost always want to do \"cvs update -P\","
12   echo "we suggest you add a line similar to \"update -P\" to your ~/.cvsrc file."
13   echo "For example:"
14   echo "  echo update -P >> ~/.cvsrc"
15   echo "At the very least, \"rm -r src/srvx\" before you try to compile."
16 fi