Makefile 603 字节
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
$(info $(shell printf '# [ perf build: Doing '\''make \033[33m-j'$(JOBS)'\033[m'\'' parallel build. ]\n'))
17

18
#
19
# Needed if no target specified:
20
#
21 22
all:
	@$(MAKE) -f Makefile.perf --no-print-directory -j$(JOBS) $@
23

24 25
%:
	@$(MAKE) -f Makefile.perf --no-print-directory -j$(JOBS) $@