  rlt2562 The Wizard of Speed and Time Premium join:2002-12-23 Haughton, LA | reply to pablo2525 Re: The Rig
I'm just barely a very low-level geek. make -j8? I only understand the 'make' command. -- A thousand miles can lead so many ways, just to know who's driving what a help it would be.... |
|
 pablo2525
join:2003-06-23
·TekSavvy Solutions..
| Hiya!
Sorry to be so cryptic. `make' is used to create a `target' from a user-defined set of rules. `make' is typically used to compile a program. However, you can also think of taking .html and compiling it into .txt (say, using lynx). And you could use `make' for this task.
The `-j' option to `make' instructs it to create multiple parallel `jobs' Suppose you had 30 `c' programs which make up a library, you could compile up to `-j 8' (eight) simultaneously. When one is done, `make' handles adding another to its run queue.
See `man make' for oodles more information.  -- pablo openSUSE 11.0;KDE ISP: TekSavvy DSL; backhauled via a 6KM wireless link |
|