This is a basic Linux question, and not TC specific.
The answer depends on where the '&' is in the command line.
For example:
make install > install.log 2>&1 &
The first '&' is part of an output redirect catenation command.
The second '&' detaches the command from the terminal so it can run in the background.