On Apr 22, 2013, at 4:46 PM, Gianluca Longoni <[email protected]> wrote:

> So, the new release 0.9.1 of libmesh uses automake. My code is based on the 
> old Makefile; does anybody have a quick and easy set of instructions to 
> migrate to the new automake style?

Your old code should be largely compatible with an installed libMesh from the 
new build system:

# in the libmesh source tree:
$ ./configure --prefix=/where/to/put/libmesh
$ make -j8 && make install
$ make -j8
$ (optional) make -j8 check

# in your code source tree:
$ export LIBMESH_DIR=/where/to/put/libmesh
$ make -j8

(note here I have assumed you have 8 processors, hence the -j8)

-Ben


------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
_______________________________________________
Libmesh-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/libmesh-users

Reply via email to