2013-10-04 11:11:32 +02:00
|
|
|
#
|
|
|
|
# This is a simple wrapper Makefile that calls the main Makefile.perf
|
|
|
|
# with a -j option to do parallel builds
|
|
|
|
#
|
|
|
|
# If you want to invoke the perf build in some non-standard way then
|
|
|
|
# you can use the 'make -f Makefile.perf' method to invoke it.
|
|
|
|
#
|
2013-10-03 14:32:10 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Clear out the built-in rules GNU make defines by default (such as .o targets),
|
|
|
|
# so that we pass through all targets to Makefile.perf:
|
|
|
|
#
|
|
|
|
.SUFFIXES:
|
|
|
|
|
2013-10-04 11:11:32 +02:00
|
|
|
#
|
|
|
|
# We don't want to pass along options like -j:
|
|
|
|
#
|
|
|
|
unexport MAKEFLAGS
|
|
|
|
|
2012-10-01 18:32:51 +02:00
|
|
|
#
|
2013-10-02 11:49:08 +02: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 02:51:22 +01:00
|
|
|
#
|
2013-10-02 11:49:08 +02:00
|
|
|
# (To override it, run 'make JOBS=1' and similar.)
|
2013-05-24 14:35:24 +02:00
|
|
|
#
|
2013-10-02 11:49:08 +02:00
|
|
|
ifeq ($(JOBS),)
|
|
|
|
JOBS := $(shell grep -c ^processor /proc/cpuinfo 2>/dev/null)
|
|
|
|
ifeq ($(JOBS),)
|
|
|
|
JOBS := 1
|
2013-04-15 04:06:58 +02:00
|
|
|
endif
|
2012-08-07 15:20:43 +02:00
|
|
|
endif
|
2010-08-21 02:38:20 +02:00
|
|
|
|
2013-10-04 12:08:05 +02:00
|
|
|
#
|
|
|
|
# Only pass canonical directory names as the output directory:
|
|
|
|
#
|
|
|
|
ifneq ($(O),)
|
2013-10-09 17:00:23 +02:00
|
|
|
FULL_O := $(shell readlink -f $(O) || echo $(O))
|
2013-10-04 12:08:05 +02:00
|
|
|
endif
|
|
|
|
|
2013-10-10 08:05:25 +02:00
|
|
|
#
|
|
|
|
# Only accept the 'DEBUG' variable from the command line:
|
|
|
|
#
|
|
|
|
ifeq ("$(origin DEBUG)", "command line")
|
|
|
|
ifeq ($(DEBUG),)
|
|
|
|
override DEBUG = 0
|
|
|
|
else
|
|
|
|
SET_DEBUG = "DEBUG=$(DEBUG)"
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
override DEBUG = 0
|
|
|
|
endif
|
|
|
|
|
2013-10-02 11:58:30 +02:00
|
|
|
define print_msg
|
2013-10-09 11:49:27 +02:00
|
|
|
@printf ' BUILD: Doing '\''make \033[33m-j'$(JOBS)'\033[m'\'' parallel build\n'
|
2013-10-02 11:58:30 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define make
|
2013-10-10 08:05:25 +02:00
|
|
|
@$(MAKE) -f Makefile.perf --no-print-directory -j$(JOBS) O=$(FULL_O) $(SET_DEBUG) $@
|
2013-10-02 11:58:30 +02:00
|
|
|
endef
|
2009-04-20 13:32:07 +02:00
|
|
|
|
2013-10-02 09:43:23 +02:00
|
|
|
#
|
2013-10-02 11:49:08 +02:00
|
|
|
# Needed if no target specified:
|
2013-10-02 09:43:23 +02:00
|
|
|
#
|
2013-10-02 11:49:08 +02:00
|
|
|
all:
|
2013-10-02 11:58:30 +02:00
|
|
|
$(print_msg)
|
|
|
|
$(make)
|
|
|
|
|
|
|
|
#
|
|
|
|
# The clean target is not really parallel, don't print the jobs info:
|
|
|
|
#
|
|
|
|
clean:
|
|
|
|
$(make)
|
2013-10-01 16:28:09 +02:00
|
|
|
|
2013-10-02 11:58:30 +02:00
|
|
|
#
|
|
|
|
# All other targets get passed through:
|
|
|
|
#
|
2013-10-02 11:49:08 +02:00
|
|
|
%:
|
2013-10-02 11:58:30 +02:00
|
|
|
$(print_msg)
|
|
|
|
$(make)
|