2012-10-01 16:32:51 +00:00
|
|
|
#
|
2013-10-02 09:49:08 +00:00
|
|
|
# Do a parallel build with multiple jobs, based on the number of CPUs online
|
|
|
|
# in this system: 'make -j8' on a 8-CPU system, etc.
|
2013-01-28 01:51:22 +00:00
|
|
|
#
|
2013-10-02 09:49:08 +00:00
|
|
|
# (To override it, run 'make JOBS=1' and similar.)
|
2013-05-24 12:35:24 +00:00
|
|
|
#
|
2013-10-02 09:49:08 +00:00
|
|
|
ifeq ($(JOBS),)
|
|
|
|
JOBS := $(shell grep -c ^processor /proc/cpuinfo 2>/dev/null)
|
|
|
|
ifeq ($(JOBS),)
|
|
|
|
JOBS := 1
|
2013-04-15 02:06:58 +00:00
|
|
|
endif
|
2012-08-07 13:20:43 +00:00
|
|
|
endif
|
2010-08-21 00:38:20 +00:00
|
|
|
|
2013-10-02 09:49:08 +00:00
|
|
|
export JOBS
|
2010-08-10 18:37:34 +00:00
|
|
|
|
2013-10-02 09:58:30 +00:00
|
|
|
define print_msg
|
|
|
|
@printf ' BUILD: Doing '\''make \033[33m-j'$(JOBS)'\033[m'\'' parallel build\n'
|
|
|
|
endef
|
|
|
|
|
|
|
|
define make
|
|
|
|
@$(MAKE) -f Makefile.perf --no-print-directory -j$(JOBS) $@
|
|
|
|
endef
|
2009-04-20 11:32:07 +00:00
|
|
|
|
2013-10-02 07:43:23 +00:00
|
|
|
#
|
2013-10-02 09:49:08 +00:00
|
|
|
# Needed if no target specified:
|
2013-10-02 07:43:23 +00:00
|
|
|
#
|
2013-10-02 09:49:08 +00:00
|
|
|
all:
|
2013-10-02 09:58:30 +00:00
|
|
|
$(print_msg)
|
|
|
|
$(make)
|
|
|
|
|
|
|
|
#
|
|
|
|
# The clean target is not really parallel, don't print the jobs info:
|
|
|
|
#
|
|
|
|
clean:
|
|
|
|
$(make)
|
2013-10-01 14:28:09 +00:00
|
|
|
|
2013-10-02 09:58:30 +00:00
|
|
|
#
|
|
|
|
# All other targets get passed through:
|
|
|
|
#
|
2013-10-02 09:49:08 +00:00
|
|
|
%:
|
2013-10-02 09:58:30 +00:00
|
|
|
$(print_msg)
|
|
|
|
$(make)
|