From: <se...@in...> - 2004-07-16 02:28:02
|
Steps required to make install from tar file. $ ./configure $ make $ su - # make install If we want to add verifications. $ ./configure $ make $ make check $ su - # make install On my linux platform, Fedora Core 2 the attach compress file 'Makefile.am.gz' allow to verify that present reconfiguration step is not necessary. steps perform are: $ cvs -z3 co -rrel_2_8 opencxx $ cd opencxx $ ./bootstrap $ cd .. $ mkdir build $ cd build $ ../opencxx/configure -C \ --prefix=/usr \ --srcdir=../opencxx \ --disable-gc $ make $ make test $ su - # make install This, demonstrate the mechanism that I will like to have for my system. Comments ? |