hi,

> >     Yes, it would look like this:
> >
> >     1. ./configure <appropiate stuff>
> >     2. make
> >     3. make clean
> >     4. goto 1
> >
> >     - Sascha
> 
> So we do not have the possibility to build all three without
> make clean in one go. I would very much appreciate that
> since it would make developers life much easier...

Use the force, luke.

  #!/bin/bash

  for mode in apache cli cgi; do
    ./configure --with-${mode}
    make
    make clean
  done

Maybe this script doesn't work, but you get the idea :)

-daniel

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to