mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-02 03:58:33 +08:00
24 lines
342 B
Bash
24 lines
342 B
Bash
# autogen.sh
|
|
#
|
|
# invoke the auto* tools to create the configuration/build system
|
|
|
|
# build aclocal.m4
|
|
aclocal
|
|
|
|
# build config.h
|
|
autoheader
|
|
|
|
# build the configure script
|
|
autoconf
|
|
|
|
# set up libtool
|
|
libtoolize --force
|
|
|
|
# invoke automake
|
|
automake --foreign --add-missing --ignore-deps
|
|
|
|
# and finally invoke our new configure
|
|
./configure $*
|
|
|
|
# end
|