9.3 Starting a Parallel Build

To start a parallel build:

Invoke clearmake by using the -J command-line option or set the CCASE_CONC environment variable.

For example, to start a build that builds up to five targets concurrently, use one of the following methods:

% clearmake -J 5 my_target

(command-line options)

% setenv CCASE_CONC 5
% clearmake my_target

(environment variable)