Index: [thread] [date] [subject] [author]
  From: becka@rz.uni-duesseldorf.de
  To  : ggi-develop@eskimo.com
  Date: Sun, 14 Mar 1999 23:08:05 +0100 (MET)

Re: degas observations

Hi !

> > It'd also be nice to have a toplevel makefile in the lib/ directory that
> > builds the "absolutely necessary" libraries.
> Well CVS is for development, and if anyone feels that would help
> development he's free to add the functionality, but then make sure
> it works.

*grin* catched that sidekick :-). 

Hmm - I have a "buildall script" here which I use for complete recompiles.

It basically looks like this:

#!/bin/bash
echo "Building LibGII"
rm -rf libgii.out
cd libgii
./autogen.sh
cd ..
mkdir libgii.out
cd    libgii.out
../libgii/configure
make
echo "About to install LibGII - please make me root."
su -c "make install"
cd ..
[... repeat with other lib ...]

We could add that to the distribution if you like. Though someone with
better scripting abilities should beautify it a little before commiting :-).

CU, Andy

-- 
= Andreas Beck                    |  Email :  <andreas.beck@ggi-project.org> =

Index: [thread] [date] [subject] [author]