
mk
List of commands for mk:
-
mk:tldr:28e41 mk: Call a specific target, executing 4 jobs at a time in parallel.$ NPROC=4 mk ${target}try on your machineexplain this command
-
mk:tldr:48419 mk: Force mking of a target, even if source files are unchanged.$ mk -w${target} ${target}try on your machineexplain this command
-
mk:tldr:92a11 mk: Assume all targets to be out of date. Thus, update `target` and all of its dependencies.$ mk -a ${target}try on your machineexplain this command
-
mk:tldr:ec7f1 mk: Keep going as far as possible on error.$ mk -ktry on your machineexplain this command