Re: compiling confusion (task cycles)

2010-01-23 Thread Trevor Daniels
Mark Polesky wrote Saturday, January 23, 2010 6:45 AM Carl Sorensen wrote: My cycle is to [edit source files] make (if needed) You lost me there. How will I know if `make' is needed? If you modify any source files that have to be compiled, essentially the c++ files and their includes

Re: compiling confusion (task cycles)

2010-01-23 Thread John Mandereau
Le vendredi 22 janvier 2010 à 22:45 -0800, Mark Polesky a écrit : I could be wrong, but it looks like `test-redo' accomplishes (automatically) what you're doing manually in your step run the individual regression files... The CG says that it will redo files differing from baseline. Just look

Re: compiling confusion (task cycles)

2010-01-23 Thread Carl Sorensen
On 1/22/10 11:45 PM, Mark Polesky markpole...@yahoo.com wrote: Carl Sorensen wrote: I've never used make test-redo or make test-clean. I'd like to have some clarification on what they're used for. I could be wrong, but it looks like `test-redo' accomplishes (automatically) what you're

Re: compiling confusion (task cycles)

2010-01-23 Thread Carl Sorensen
On 1/23/10 6:34 AM, Carl Sorensen c_soren...@byu.edu wrote: On 1/22/10 11:45 PM, Mark Polesky markpole...@yahoo.com wrote: Carl Sorensen wrote: I've never used make test-redo or make test-clean. I'd like to have some clarification on what they're used for. I could be wrong,

compiling confusion (task cycles)

2010-01-22 Thread Mark Polesky
One thing that would clear up a lot of confusion for me is a collection of concise cycles for different development tasks. Something like this, but correct my mistakes, because I'm confused: Documentation editor's edit/compile cycle: Initial: make make doc Cycle: [edit source

Re: compiling confusion (task cycles)

2010-01-22 Thread Graham Percival
On Fri, Jan 22, 2010 at 02:45:19PM -0800, Mark Polesky wrote: Documentation editor's edit/compile cycle: Initial: make make doc Yes, although many people would want to do something like make -j3 make doc -j3 CPU_COUNT=3 Cycle: [edit source files] make-- is

Re: compiling confusion (task cycles)

2010-01-22 Thread Carl Sorensen
Mark Polesky markpolesky at yahoo.com writes: One thing that would clear up a lot of confusion for me is a collection of concise cycles for different development tasks. Something like this, but correct my mistakes, because I'm confused: Documentation editor's edit/compile cycle:

Re: compiling confusion (task cycles)

2010-01-22 Thread Mark Polesky
Carl Sorensen wrote: I've never used make test-redo or make test-clean. I'd like to have some clarification on what they're used for. I could be wrong, but it looks like `test-redo' accomplishes (automatically) what you're doing manually in your step run the individual regression files... The