make (566c1d0a49da09dfdf23e836398e2607f44c7c5e) | make (0659e66981ab137c11a746899672c886e1973a7b) |
---|---|
1PERF := . 2MK := Makefile 3 | 1PERF := . 2MK := Makefile 3 |
4has = $(shell which $1 2>/dev/null) 5 |
|
4# standard single make variable specified 5make_clean_all := clean all 6make_python_perf_so := python/perf.so 7make_debug := DEBUG=1 8make_no_libperl := NO_LIBPERL=1 9make_no_libpython := NO_LIBPYTHON=1 10make_no_scripts := NO_LIBPYTHON=1 NO_LIBPERL=1 11make_no_newt := NO_NEWT=1 --- 33 unchanged lines hidden (view full) --- 45run += make_no_ui 46run += make_no_demangle 47run += make_no_libelf 48run += make_no_libunwind 49run += make_no_backtrace 50run += make_no_libnuma 51run += make_no_libaudit 52run += make_no_libbionic | 6# standard single make variable specified 7make_clean_all := clean all 8make_python_perf_so := python/perf.so 9make_debug := DEBUG=1 10make_no_libperl := NO_LIBPERL=1 11make_no_libpython := NO_LIBPYTHON=1 12make_no_scripts := NO_LIBPYTHON=1 NO_LIBPERL=1 13make_no_newt := NO_NEWT=1 --- 33 unchanged lines hidden (view full) --- 47run += make_no_ui 48run += make_no_demangle 49run += make_no_libelf 50run += make_no_libunwind 51run += make_no_backtrace 52run += make_no_libnuma 53run += make_no_libaudit 54run += make_no_libbionic |
53run += make_tags 54run += make_cscope | |
55run += make_help 56run += make_doc 57run += make_perf_o 58run += make_util_map_o 59run += make_minimal 60 | 55run += make_help 56run += make_doc 57run += make_perf_o 58run += make_util_map_o 59run += make_minimal 60 |
61ifneq ($(call has,ctags),) 62run += make_tags 63endif 64ifneq ($(call has,cscope),) 65run += make_cscope 66endif 67 |
|
61# $(run_O) contains same portion of $(run) tests with '_O' attached 62# to distinguish O=... tests 63run_O := $(addsuffix _O,$(run)) 64 65# disable some tests for O=... 66run_O := $(filter-out make_python_perf_so_O,$(run_O)) 67 68# define test for each compile as 'test_NAME' variable --- 70 unchanged lines hidden --- | 68# $(run_O) contains same portion of $(run) tests with '_O' attached 69# to distinguish O=... tests 70run_O := $(addsuffix _O,$(run)) 71 72# disable some tests for O=... 73run_O := $(filter-out make_python_perf_so_O,$(run_O)) 74 75# define test for each compile as 'test_NAME' variable --- 70 unchanged lines hidden --- |