Specifying a Build Mode | Specifying Build Options |
Examining Multiple Build Jobs | The .dmakerc File |
Targets | Dmake Jobs Graph Window |
The Sun WorkShopTM programming environment offers the dmake build command, which parses your makefiles, determines which targets can be built concurrently, and distributes the build of those targets over a number of hosts set by you. dmake runs in one of these build modes:
In distributed mode, you can concurrently distribute over several servers the process of building large projects consisting of many programs. dmake parses your makefiles, determines which targets can be built concurrently, and distributes the build for those targets over build servers designated by you.
In distributed mode, dmake distributes jobs to the following in the following order:
In contrast, the /usr/ccs/bin/make command builds one target at a time on a local host. It executes lists of shell commands associated with each target to create or update a file of the same name. See the make(1S) man page and dmake(1) man pages for more information.