[Bf-committers] New project, let's move on!

Kent Mein bf-committers@blender.org
Sat, 14 Dec 2002 09:48:13 -0600


In reply to John K. Walton (walton@mrnutty.com):

Yeps they should both work.  The current Makefiles in the
directory are the old makefiles.  You should only have to
edit blender/source/nan_definitions.mk
Then cd blender/intern; make
cd ../source; make
(You will probably need to do stuff in blender/source/ode to get it to compile.)

Just to make sure its all here: 
To use autoconf
cd blender; ./bootstrap
mkdir ../blenderbuild (or whatever dir you want to create for your build)
cd ../blenderbuild
../blender/configure --prefix=/usr/local/blender  (and what ever other
options you need here)
make

(If you don't have ode installed you'll want to cd blender/source/ode
make;make install and then add --with-ode=/usr/local  to your configure
options substitute /usr/local with wherever you have it installed)

Kent