2013-10-04 13:11:32 +04: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 16:32:10 +04: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 13:11:32 +04:00
|
|
|
#
|
|
|
|
# We don't want to pass along options like -j:
|
|
|
|
#
|
|
|
|
unexport MAKEFLAGS
|
|
|
|
|
2012-10-01 20:32:51 +04:00
|
|
|
#
|
2013-10-02 13:49:08 +04: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 05:51:22 +04:00
|
|
|
#
|
2013-10-02 13:49:08 +04:00
|
|
|
# (To override it, run 'make JOBS=1' and similar.)
|
2013-05-24 16:35:24 +04:00
|
|
|
#
|
2013-10-02 13:49:08 +04:00
|
|
|
ifeq ($(JOBS),)
|
|
|
|
JOBS := $(shell grep -c ^processor /proc/cpuinfo 2>/dev/null)
|
|
|
|
ifeq ($(JOBS),)
|
|
|
|
JOBS := 1
|
2013-04-15 06:06:58 +04:00
|
|
|
endif
|
2012-08-07 17:20:43 +04:00
|
|
|
endif
|
2010-08-21 04:38:20 +04:00
|
|
|
|
2013-10-04 14:08:05 +04:00
|
|
|
#
|
|
|
|
# Only pass canonical directory names as the output directory:
|
|
|
|
#
|
|
|
|
ifneq ($(O),)
|
2013-10-09 19:00:23 +04:00
|
|
|
FULL_O := $(shell readlink -f $(O) || echo $(O))
|
2013-10-04 14:08:05 +04:00
|
|
|
endif
|
|
|
|
|
2013-10-10 10:05:25 +04: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 13:58:30 +04:00
|
|
|
define print_msg
|
2013-10-09 13:49:27 +04:00
|
|
|
@printf ' BUILD: Doing '\''make \033[33m-j'$(JOBS)'\033[m'\'' parallel build\n'
|
2013-10-02 13:58:30 +04:00
|
|
|
endef
|
|
|
|
|
|
|
|
define make
|
2013-10-10 10:05:25 +04:00
|
|
|
@$(MAKE) -f Makefile.perf --no-print-directory -j$(JOBS) O=$(FULL_O) $(SET_DEBUG) $@
|
2013-10-02 13:58:30 +04:00
|
|
|
endef
|
2009-04-20 15:32:07 +04:00
|
|
|
|
2013-10-02 11:43:23 +04:00
|
|
|
#
|
2013-10-02 13:49:08 +04:00
|
|
|
# Needed if no target specified:
|
2013-11-26 16:54:12 +04:00
|
|
|
# (Except for tags and TAGS targets. The reason is that the
|
|
|
|
# Makefile does not treat tags/TAGS as targets but as files
|
|
|
|
# and thus won't rebuilt them once they are in place.)
|
2013-10-02 11:43:23 +04:00
|
|
|
#
|
2013-11-26 16:54:12 +04:00
|
|
|
all tags TAGS:
|
2013-10-02 13:58:30 +04:00
|
|
|
$(print_msg)
|
|
|
|
$(make)
|
|
|
|
|
|
|
|
#
|
|
|
|
# The clean target is not really parallel, don't print the jobs info:
|
|
|
|
#
|
|
|
|
clean:
|
|
|
|
$(make)
|
2013-10-01 18:28:09 +04:00
|
|
|
|
2014-01-16 05:52:53 +04:00
|
|
|
#
|
|
|
|
# The build-test target is not really parallel, don't print the jobs info:
|
|
|
|
#
|
|
|
|
build-test:
|
|
|
|
@$(MAKE) -f tests/make --no-print-directory
|
|
|
|
|
2013-10-02 13:58:30 +04:00
|
|
|
#
|
|
|
|
# All other targets get passed through:
|
|
|
|
#
|
2013-10-02 13:49:08 +04:00
|
|
|
%:
|
2013-10-02 13:58:30 +04:00
|
|
|
$(print_msg)
|
|
|
|
$(make)
|
2013-11-26 16:54:12 +04:00
|
|
|
|
|
|
|
.PHONY: tags TAGS
|