mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
23 lines
441 B
Bash
23 lines
441 B
Bash
#!/bin/sh
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
THEDIR="`pwd`"
|
|
cd "$srcdir"
|
|
DIE=0
|
|
|
|
libtoolize --force --automake
|
|
aclocal -I admin
|
|
autoconf
|
|
autoheader
|
|
automake --foreign --include-deps --add-missing
|
|
|
|
#if test -z "$*"; then
|
|
# echo "I am going to run ./configure with no arguments - if you wish "
|
|
# echo "to pass any to it, please specify them on the $0 command line."
|
|
#fi
|
|
#
|
|
#cd "$THEDIR"
|
|
#
|
|
#$srcdir/configure "$@"
|