1PERF := . 2MK := Makefile 3 4has = $(shell which $1 2>/dev/null) 5 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 14make_no_slang := NO_SLANG=1 15make_no_gtk2 := NO_GTK2=1 16make_no_ui := NO_NEWT=1 NO_SLANG=1 NO_GTK2=1 17make_no_demangle := NO_DEMANGLE=1 18make_no_libelf := NO_LIBELF=1 19make_no_libunwind := NO_LIBUNWIND=1 20make_no_backtrace := NO_BACKTRACE=1 21make_no_libnuma := NO_LIBNUMA=1 22make_no_libaudit := NO_LIBAUDIT=1 23make_no_libbionic := NO_LIBBIONIC=1 24make_tags := tags 25make_cscope := cscope 26make_help := help 27make_doc := doc 28make_perf_o := perf.o 29make_util_map_o := util/map.o 30make_install := install 31make_install_bin := install-bin 32make_install_doc := install-doc 33make_install_man := install-man 34make_install_html := install-html 35make_install_info := install-info 36make_install_pdf := install-pdf 37 38# all the NO_* variable combined 39make_minimal := NO_LIBPERL=1 NO_LIBPYTHON=1 NO_NEWT=1 NO_GTK2=1 40make_minimal += NO_DEMANGLE=1 NO_LIBELF=1 NO_LIBUNWIND=1 NO_BACKTRACE=1 41make_minimal += NO_LIBNUMA=1 NO_LIBAUDIT=1 NO_LIBBIONIC=1 42 43# $(run) contains all available tests 44run := make_pure 45run += make_clean_all 46run += make_python_perf_so 47run += make_debug 48run += make_no_libperl 49run += make_no_libpython 50run += make_no_scripts 51run += make_no_newt 52run += make_no_slang 53run += make_no_gtk2 54run += make_no_ui 55run += make_no_demangle 56run += make_no_libelf 57run += make_no_libunwind 58run += make_no_backtrace 59run += make_no_libnuma 60run += make_no_libaudit 61run += make_no_libbionic 62run += make_help 63run += make_doc 64run += make_perf_o 65run += make_util_map_o 66run += make_install 67run += make_install_bin 68# FIXME 'install-*' commented out till they're fixed 69# run += make_install_doc 70# run += make_install_man 71# run += make_install_html 72# run += make_install_info 73# run += make_install_pdf 74run += make_minimal 75 76ifneq ($(call has,ctags),) 77run += make_tags 78endif 79ifneq ($(call has,cscope),) 80run += make_cscope 81endif 82 83# $(run_O) contains same portion of $(run) tests with '_O' attached 84# to distinguish O=... tests 85run_O := $(addsuffix _O,$(run)) 86 87# disable some tests for O=... 88run_O := $(filter-out make_python_perf_so_O,$(run_O)) 89 90# define test for each compile as 'test_NAME' variable 91# with the test itself as a value 92test_make_tags = test -f tags 93test_make_cscope = test -f cscope.out 94 95test_make_tags_O := $(test_make_tags) 96test_make_cscope_O := $(test_make_cscope) 97 98test_ok := true 99test_make_help := $(test_ok) 100test_make_doc := $(test_ok) 101test_make_help_O := $(test_ok) 102test_make_doc_O := $(test_ok) 103 104test_make_python_perf_so := test -f $(PERF)/python/perf.so 105 106test_make_perf_o := test -f $(PERF)/perf.o 107test_make_util_map_o := test -f $(PERF)/util/map.o 108 109test_make_install := test -x $$TMP_DEST/bin/perf 110test_make_install_O := $(test_make_install) 111test_make_install_bin := $(test_make_install) 112test_make_install_bin_O := $(test_make_install) 113 114# FIXME nothing gets installed 115test_make_install_man := test -f $$TMP_DEST/share/man/man1/perf.1 116test_make_install_man_O := $(test_make_install_man) 117 118# FIXME nothing gets installed 119test_make_install_doc := $(test_ok) 120test_make_install_doc_O := $(test_ok) 121 122# FIXME nothing gets installed 123test_make_install_html := $(test_ok) 124test_make_install_html_O := $(test_ok) 125 126# FIXME nothing gets installed 127test_make_install_info := $(test_ok) 128test_make_install_info_O := $(test_ok) 129 130# FIXME nothing gets installed 131test_make_install_pdf := $(test_ok) 132test_make_install_pdf_O := $(test_ok) 133 134# Kbuild tests only 135#test_make_python_perf_so_O := test -f $$TMP/tools/perf/python/perf.so 136#test_make_perf_o_O := test -f $$TMP/tools/perf/perf.o 137#test_make_util_map_o_O := test -f $$TMP/tools/perf/util/map.o 138 139test_make_perf_o_O := true 140test_make_util_map_o_O := true 141 142test_default = test -x $(PERF)/perf 143test = $(if $(test_$1),$(test_$1),$(test_default)) 144 145test_default_O = test -x $$TMP_O/perf 146test_O = $(if $(test_$1),$(test_$1),$(test_default_O)) 147 148all: 149 150ifdef DEBUG 151d := $(info run $(run)) 152d := $(info run_O $(run_O)) 153endif 154 155MAKEFLAGS := --no-print-directory 156 157clean := @(cd $(PERF); make -s -f $(MK) clean >/dev/null) 158 159$(run): 160 $(call clean) 161 @TMP_DEST=$$(mktemp -d); \ 162 cmd="cd $(PERF) && make -f $(MK) DESTDIR=$$TMP_DEST $($@)"; \ 163 echo "- $@: $$cmd" && echo $$cmd > $@ && \ 164 ( eval $$cmd ) >> $@ 2>&1; \ 165 echo " test: $(call test,$@)"; \ 166 $(call test,$@) && \ 167 rm -f $@ \ 168 rm -rf $$TMP_DEST 169 170$(run_O): 171 $(call clean) 172 @TMP_O=$$(mktemp -d); \ 173 TMP_DEST=$$(mktemp -d); \ 174 cmd="cd $(PERF) && make -f $(MK) O=$$TMP_O DESTDIR=$$TMP_DEST $($(patsubst %_O,%,$@))"; \ 175 echo "- $@: $$cmd" && echo $$cmd > $@ && \ 176 ( eval $$cmd ) >> $@ 2>&1 && \ 177 echo " test: $(call test_O,$@)"; \ 178 $(call test_O,$@) && \ 179 rm -f $@ && \ 180 rm -rf $$TMP_O \ 181 rm -rf $$TMP_DEST 182 183all: $(run) $(run_O) 184 @echo OK 185 186out: $(run_O) 187 @echo OK 188 189.PHONY: all $(run) $(run_O) clean 190