Files
core/DesktopEditor/agg-2.4/autogen.sh
Elen.Subbotina 8bd1170dbf .....
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@61952 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-20 23:55:13 +03:00

24 lines
365 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