mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
14 lines
201 B
Bash
Executable file
14 lines
201 B
Bash
Executable file
#!/bin/sh
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
cd "$srcdir"
|
|
|
|
libtoolize --force --automake
|
|
aclocal -I m4
|
|
autoconf -f
|
|
autoheader
|
|
automake --foreign --include-deps --add-missing
|
|
|
|
exit $?
|