Makefile 744 字节
Newer Older
1
#
2 3
# 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.
4
#
5
# (To override it, run 'make JOBS=1' and similar.)
6
#
7 8 9 10
ifeq ($(JOBS),)
  JOBS := $(shell grep -c ^processor /proc/cpuinfo 2>/dev/null)
  ifeq ($(JOBS),)
    JOBS := 1
11
  endif
12
endif
13

14
export JOBS
15

16 17 18 19 20 21 22
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
23

24
#
25
# Needed if no target specified:
26
#
27
all:
28 29 30 31 32 33 34 35
	$(print_msg)
	$(make)

#
# The clean target is not really parallel, don't print the jobs info:
#
clean:
	$(make)
36

37 38 39
#
# All other targets get passed through:
#
40
%:
41 42
	$(print_msg)
	$(make)