source: trunk/src/3rdparty/libmng/autogen.sh@ 8

Last change on this file since 8 was 2, checked in by dmik, 20 years ago

Imported xplatform parts of the official release 3.3.1 from Trolltech

File size: 675 bytes
Line 
1# autogen.sh
2#
3# invoke the auto* tools to create the configureation system
4
5# move out configure.in
6if ! test -f configure.in; then
7 echo "copying out configure.in"
8 ln -s makefiles/configure.in
9fi
10
11# move out the macros and run aclocal
12if ! test -f acinclude.m4; then
13 echo "copying configure macros"
14 ln -s makefiles/acinclude.m4 .
15fi
16aclocal
17
18# build the configure script
19autoconf
20
21# set up libtool
22libtoolize --force
23
24# copy up our Makefile template and invoke automake
25if ! test -f Makefile.am; then
26 echo "copying automake template"
27 ln -s makefiles/Makefile.am .
28fi
29automake --foreign --add-missing
30
31# and finally invoke our new configure
32./configure $*
33
34# end
Note: See TracBrowser for help on using the repository browser.