I'm trying out GitHub for the first time.  I have a new project that
is supposed to reference my Boost-SVN tree for both the Boost
headers and its build system.  I copied the project structure,
including Jamfiles, from John Maddock's Multiprecision trial library.
I don't think I did it right because calling "b2" doesn't do anything.
At first, I got directory errors because it couldn't find my Boost tree.
(The "../Trunk" alias doesn't work.  Is it because I'm an extra
directory away?)  Then I defined "BOOST" in my shell, so "b2" can
find the tree.  I just get "1 target found" notices without anything
happening.  I know nothing's being compiled because I called it for
tool-sets that aren't C++11-enabled and the build just ends without
error on my C++11 code.

My directories are like:

+ MyProjects
++ boost-trunk
++ Trunk (aliased to "boost-trunk")
++ Unionize (a Git clone of my project on GitHub)

Does anyone want to take a look and see how I have to fix my build
files?  The project is at "https://github.com/CTMacUser/Unionize".

Daryle W.