Staging
v0.5.1
rsync://a.cvs.sourceforge.net/cvsroot/titano/titano
Revision 3b5196822f172495db4e8814f038032ad57d049a authored by amid on 23 July 2000, 03:45:54 UTC, committed by amid on 23 July 2000, 03:45:54 UTC
1 parent 7047f39
Raw File
Tip revision: 3b5196822f172495db4e8814f038032ad57d049a authored by amid on 23 July 2000, 03:45:54 UTC
uses new wizards
Tip revision: 3b51968
autogen.sh
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.

PKG_NAME="the package."

(test -f $srcdir/configure.in) || {
    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
    echo " top-level directory"
    exit 1
}

. $srcdir/macros/autogen.sh
back to top