How to build specific multiple targets parallelly using make?
问题 There are three source files. Each source files are corresponding targets. For example, the target of a.cpp is a, b.cpp is b, and c.cpp is c. src/a.cpp b.cpp c.cpp build/ I can build the targets parallelly using -j option. For example, cd build make -j3 target a, b, and c build parallelly. Is there any way to specify some of targets and parallel build ? For example make -j2 a b Unfortunately, it works sequentially. First, build a and then build b . I want to build only a and b parallelly. I