GNU make manual 翻译( 一百一十二)

继续翻译

`.NOTPARALLEL'

     If `.NOTPARALLEL' is mentioned as a target, then this invocation

     of `make' will be run serially, even if the `-j' option is given.

     Any recursively invoked `make' command will still run recipes in

     parallel (unless its makefile also contains this target).  Any

     prerequisites on this target are ignored.

.NOTPARALLEL

如果 .NOTPARALLEL 被声明为一个目的,那么这个时候对 make 的执行会是顺序的,哪怕是使用了 -j 选项。嵌套调用 make 部分仍然是并行的(除非那个makefile中也由此目的)。任何.NOTPARALLEL 的前提条件都被忽略。

后文待续

你可能感兴趣的:(Make)