numam-dpdk/mk/internal
Ferruh Yigit 8fdb4a9b1e mk: parallelize make config
make config dependency resolving was always running serial,
parallelize it for better performance.

$ time make T=x86_64-native-linuxapp-gcc config
real    0m12.633s

$ time make -j8 T=x86_64-native-linuxapp-gcc config
real    0m1.826s

When config creation done under a single make target, using a for loop,
make has no control on the action, and it needs to run as implemented in
the rule. But if for loop converted into multiple targets, make can
detect independent targets and run them parallel based on -j parameter.

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
2017-01-30 19:13:35 +01:00
..
rte.build-post.mk remove trailing whitespaces 2014-06-11 00:29:34 +02:00
rte.build-pre.mk remove trailing whitespaces 2014-06-11 00:29:34 +02:00
rte.clean-post.mk remove trailing whitespaces 2014-06-11 00:29:34 +02:00
rte.clean-pre.mk remove trailing whitespaces 2014-06-11 00:29:34 +02:00
rte.compile-post.mk remove trailing whitespaces 2014-06-11 00:29:34 +02:00
rte.compile-pre.mk drivers: rename register macro prefix 2016-10-14 01:49:32 +02:00
rte.depdirs-post.mk mk: parallelize make config 2017-01-30 19:13:35 +01:00
rte.depdirs-pre.mk remove trailing whitespaces 2014-06-11 00:29:34 +02:00
rte.extvars.mk mk: fix error message 2016-03-03 11:36:32 +01:00
rte.install-post.mk scripts: move to buildtools 2017-01-04 21:17:32 +01:00
rte.install-pre.mk remove trailing whitespaces 2014-06-11 00:29:34 +02:00