> Yes, we just use Make.common.  However, our users also do build libMesh quite
> often and are used to the METHOD optionsÅ  are those going to be maintained?

Yep, the functionality will definitely be there.  Right now it'll be easy to
support a different METHOD in each build directory, but I think it should
also be possible to support multiple METHODs in one directory.

What I do in FIN-S, for example, is

$ cd $FINS_ROOT/$METHOD
$ ../configure 
$ make 
$ ...

and then I have a ./opt, ./dbg, ./devel directory.

Of course, my bash functions make it better than that:

opt () 
{ 
    export METHOD=opt;
    export FINS_BUILD_DIR=$FINS_ROOT/$METHOD;
    export CHAR_BUILD_DIR=$CHAR_ROOT/$METHOD
}



I've got a branch started and will get a prototype put together pretty quick
to showcase the ideas...

-Ben




------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
Libmesh-devel mailing list
Libmesh-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/libmesh-devel

Reply via email to