mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-05 05:27:58 +08:00
11 lines
402 B
Bash
Executable File
11 lines
402 B
Bash
Executable File
#!/bin/sh
|
|
|
|
mkdir -p m4
|
|
|
|
echo "Running aclocal..." ; aclocal -I m4 || exit 1
|
|
echo "Running autoheader..." ; autoheader || exit 1
|
|
echo "Running autoconf..." ; autoconf || exit 1
|
|
echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --copy --automake) || exit 1
|
|
echo "Running automake..." ; automake --add-missing --copy || exit 1
|
|
echo "Running autoreconf..." ; autoreconf || exit 1
|