mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 23:13:16 +02:00
16 lines
276 B
Bash
Executable File
16 lines
276 B
Bash
Executable File
#!/bin/sh
|
|
|
|
package="libstb-hal"
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
cd "$srcdir"
|
|
echo "Generating configuration files for $package, please wait ..."
|
|
|
|
aclocal --force
|
|
libtoolize --force
|
|
autoconf --force
|
|
autoheader --force
|
|
automake --add-missing --force-missing
|