awtk/3rd/agg/autogen.sh
2018-05-27 11:52:44 +08:00

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