mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@61952 954022d7-b5bf-4e40-9824-e11837661b57
24 lines
365 B
Bash
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
|