Hi,
On Fri, Apr 17, 2009 at 11:49 AM, sinan bulut sbulutw@gmail.com wrote:
So you are suggesting that i should put alps-apps files in the same folder as the alps files. I will give it a shot and let you know about the result soon.
No. You can split source/build/install directories. However, unfortunately the install directory of Libraries/Applications must be the same. For example:
$ ls $HOME/src alps-lib alps-app $ ls $HOME/build alps-lib alps-app $ ls $HOME/install alps $ cd $HOME/build/alps-lib $ $HOME/src/alps-lib/configure --prefix=$HOME/install/alps $ make $ make install $ cd $HOME/build/alps-app $ $HOME/src/alps-app/configure --prefix=$HOME/install/alps $ make $ make install
will do the job.