| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | PERF := . | 
					
						
							|  |  |  | MK   := Makefile | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-03 15:32:33 +01:00
										 |  |  | include config/Makefile.arch | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # FIXME looks like x86 is the only arch running tests ;-) | 
					
						
							|  |  |  | # we need some IS_(32/64) flag to make this generic | 
					
						
							|  |  |  | ifeq ($(IS_X86_64),1) | 
					
						
							|  |  |  | lib = lib64 | 
					
						
							|  |  |  | else | 
					
						
							|  |  |  | lib = lib | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-22 14:43:30 +02:00
										 |  |  | has = $(shell which $1 2>/dev/null) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | # standard single make variable specified | 
					
						
							|  |  |  | make_clean_all      := clean all | 
					
						
							|  |  |  | make_python_perf_so := python/perf.so | 
					
						
							|  |  |  | make_debug          := DEBUG=1 | 
					
						
							|  |  |  | make_no_libperl     := NO_LIBPERL=1 | 
					
						
							|  |  |  | make_no_libpython   := NO_LIBPYTHON=1 | 
					
						
							|  |  |  | make_no_scripts     := NO_LIBPYTHON=1 NO_LIBPERL=1 | 
					
						
							|  |  |  | make_no_newt        := NO_NEWT=1 | 
					
						
							|  |  |  | make_no_slang       := NO_SLANG=1 | 
					
						
							|  |  |  | make_no_gtk2        := NO_GTK2=1 | 
					
						
							|  |  |  | make_no_ui          := NO_NEWT=1 NO_SLANG=1 NO_GTK2=1 | 
					
						
							|  |  |  | make_no_demangle    := NO_DEMANGLE=1 | 
					
						
							|  |  |  | make_no_libelf      := NO_LIBELF=1 | 
					
						
							|  |  |  | make_no_libunwind   := NO_LIBUNWIND=1 | 
					
						
							| 
									
										
										
										
											2014-02-19 16:52:59 +01:00
										 |  |  | make_no_libdw_dwarf_unwind := NO_LIBDW_DWARF_UNWIND=1 | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | make_no_backtrace   := NO_BACKTRACE=1 | 
					
						
							|  |  |  | make_no_libnuma     := NO_LIBNUMA=1 | 
					
						
							|  |  |  | make_no_libaudit    := NO_LIBAUDIT=1 | 
					
						
							|  |  |  | make_no_libbionic   := NO_LIBBIONIC=1 | 
					
						
							|  |  |  | make_tags           := tags | 
					
						
							|  |  |  | make_cscope         := cscope | 
					
						
							|  |  |  | make_help           := help | 
					
						
							|  |  |  | make_doc            := doc | 
					
						
							| 
									
										
										
										
											2014-02-19 11:21:39 +01:00
										 |  |  | make_perf_o           := perf.o | 
					
						
							|  |  |  | make_util_map_o       := util/map.o | 
					
						
							|  |  |  | make_util_pmu_bison_o := util/pmu-bison.o | 
					
						
							| 
									
										
										
										
											2013-07-22 14:43:33 +02:00
										 |  |  | make_install        := install | 
					
						
							|  |  |  | make_install_bin    := install-bin | 
					
						
							| 
									
										
										
										
											2013-07-22 14:43:34 +02:00
										 |  |  | make_install_doc    := install-doc | 
					
						
							|  |  |  | make_install_man    := install-man | 
					
						
							|  |  |  | make_install_html   := install-html | 
					
						
							|  |  |  | make_install_info   := install-info | 
					
						
							|  |  |  | make_install_pdf    := install-pdf | 
					
						
							| 
									
										
										
										
											2014-04-29 09:53:40 +02:00
										 |  |  | make_static         := LDFLAGS=-static | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # all the NO_* variable combined | 
					
						
							|  |  |  | make_minimal        := NO_LIBPERL=1 NO_LIBPYTHON=1 NO_NEWT=1 NO_GTK2=1 | 
					
						
							|  |  |  | make_minimal        += NO_DEMANGLE=1 NO_LIBELF=1 NO_LIBUNWIND=1 NO_BACKTRACE=1 | 
					
						
							|  |  |  | make_minimal        += NO_LIBNUMA=1 NO_LIBAUDIT=1 NO_LIBBIONIC=1 | 
					
						
							| 
									
										
										
										
											2014-02-19 16:52:59 +01:00
										 |  |  | make_minimal        += NO_LIBDW_DWARF_UNWIND=1 | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # $(run) contains all available tests | 
					
						
							|  |  |  | run := make_pure | 
					
						
							|  |  |  | run += make_clean_all | 
					
						
							|  |  |  | run += make_python_perf_so | 
					
						
							|  |  |  | run += make_debug | 
					
						
							|  |  |  | run += make_no_libperl | 
					
						
							|  |  |  | run += make_no_libpython | 
					
						
							|  |  |  | run += make_no_scripts | 
					
						
							|  |  |  | run += make_no_newt | 
					
						
							|  |  |  | run += make_no_slang | 
					
						
							|  |  |  | run += make_no_gtk2 | 
					
						
							|  |  |  | run += make_no_ui | 
					
						
							|  |  |  | run += make_no_demangle | 
					
						
							|  |  |  | run += make_no_libelf | 
					
						
							|  |  |  | run += make_no_libunwind | 
					
						
							| 
									
										
										
										
											2014-02-19 16:52:59 +01:00
										 |  |  | run += make_no_libdw_dwarf_unwind | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | run += make_no_backtrace | 
					
						
							|  |  |  | run += make_no_libnuma | 
					
						
							|  |  |  | run += make_no_libaudit | 
					
						
							|  |  |  | run += make_no_libbionic | 
					
						
							|  |  |  | run += make_help | 
					
						
							|  |  |  | run += make_doc | 
					
						
							|  |  |  | run += make_perf_o | 
					
						
							|  |  |  | run += make_util_map_o | 
					
						
							| 
									
										
										
										
											2014-02-19 11:21:39 +01:00
										 |  |  | run += make_util_pmu_bison_o | 
					
						
							| 
									
										
										
										
											2013-07-22 14:43:33 +02:00
										 |  |  | run += make_install | 
					
						
							|  |  |  | run += make_install_bin | 
					
						
							| 
									
										
										
										
											2013-07-22 14:43:34 +02:00
										 |  |  | # FIXME 'install-*' commented out till they're fixed | 
					
						
							|  |  |  | # run += make_install_doc | 
					
						
							|  |  |  | # run += make_install_man | 
					
						
							|  |  |  | # run += make_install_html | 
					
						
							|  |  |  | # run += make_install_info | 
					
						
							|  |  |  | # run += make_install_pdf | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | run += make_minimal | 
					
						
							| 
									
										
										
										
											2014-04-29 09:53:40 +02:00
										 |  |  | run += make_static | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-22 14:43:30 +02:00
										 |  |  | ifneq ($(call has,ctags),) | 
					
						
							|  |  |  | run += make_tags | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | ifneq ($(call has,cscope),) | 
					
						
							|  |  |  | run += make_cscope | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | # $(run_O) contains same portion of $(run) tests with '_O' attached | 
					
						
							|  |  |  | # to distinguish O=... tests | 
					
						
							|  |  |  | run_O := $(addsuffix _O,$(run)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # disable some tests for O=... | 
					
						
							|  |  |  | run_O := $(filter-out make_python_perf_so_O,$(run_O)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # define test for each compile as 'test_NAME' variable | 
					
						
							|  |  |  | # with the test itself as a value | 
					
						
							|  |  |  | test_make_tags   = test -f tags | 
					
						
							|  |  |  | test_make_cscope = test -f cscope.out | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test_make_tags_O   := $(test_make_tags) | 
					
						
							|  |  |  | test_make_cscope_O := $(test_make_cscope) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test_ok          := true | 
					
						
							|  |  |  | test_make_help   := $(test_ok) | 
					
						
							|  |  |  | test_make_doc    := $(test_ok) | 
					
						
							|  |  |  | test_make_help_O := $(test_ok) | 
					
						
							|  |  |  | test_make_doc_O  := $(test_ok) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test_make_python_perf_so := test -f $(PERF)/python/perf.so | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-19 11:21:39 +01:00
										 |  |  | test_make_perf_o           := test -f $(PERF)/perf.o | 
					
						
							|  |  |  | test_make_util_map_o       := test -f $(PERF)/util/map.o | 
					
						
							|  |  |  | test_make_util_pmu_bison_o := test -f $(PERF)/util/pmu-bison.o | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-19 14:41:59 +01:00
										 |  |  | define test_dest_files | 
					
						
							|  |  |  |   for file in $(1); do				\ | 
					
						
							|  |  |  |     if [ ! -x $$TMP_DEST/$$file ]; then		\ | 
					
						
							|  |  |  |       echo "  failed to find: $$file";		\ | 
					
						
							|  |  |  |     fi						\ | 
					
						
							|  |  |  |   done | 
					
						
							|  |  |  | endef | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | installed_files_bin := bin/perf | 
					
						
							|  |  |  | installed_files_bin += etc/bash_completion.d/perf | 
					
						
							|  |  |  | installed_files_bin += libexec/perf-core/perf-archive | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-03 15:32:33 +01:00
										 |  |  | installed_files_plugins := $(lib)/traceevent/plugins/plugin_cfg80211.so | 
					
						
							|  |  |  | installed_files_plugins += $(lib)/traceevent/plugins/plugin_scsi.so | 
					
						
							|  |  |  | installed_files_plugins += $(lib)/traceevent/plugins/plugin_xen.so | 
					
						
							|  |  |  | installed_files_plugins += $(lib)/traceevent/plugins/plugin_function.so | 
					
						
							|  |  |  | installed_files_plugins += $(lib)/traceevent/plugins/plugin_sched_switch.so | 
					
						
							|  |  |  | installed_files_plugins += $(lib)/traceevent/plugins/plugin_mac80211.so | 
					
						
							|  |  |  | installed_files_plugins += $(lib)/traceevent/plugins/plugin_kvm.so | 
					
						
							|  |  |  | installed_files_plugins += $(lib)/traceevent/plugins/plugin_kmem.so | 
					
						
							|  |  |  | installed_files_plugins += $(lib)/traceevent/plugins/plugin_hrtimer.so | 
					
						
							|  |  |  | installed_files_plugins += $(lib)/traceevent/plugins/plugin_jbd2.so | 
					
						
							| 
									
										
										
										
											2013-12-19 14:41:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | installed_files_all := $(installed_files_bin) | 
					
						
							|  |  |  | installed_files_all += $(installed_files_plugins) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test_make_install       := $(call test_dest_files,$(installed_files_all)) | 
					
						
							|  |  |  | test_make_install_O     := $(call test_dest_files,$(installed_files_all)) | 
					
						
							|  |  |  | test_make_install_bin   := $(call test_dest_files,$(installed_files_bin)) | 
					
						
							|  |  |  | test_make_install_bin_O := $(call test_dest_files,$(installed_files_bin)) | 
					
						
							| 
									
										
										
										
											2013-07-22 14:43:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-22 14:43:34 +02:00
										 |  |  | # FIXME nothing gets installed | 
					
						
							|  |  |  | test_make_install_man    := test -f $$TMP_DEST/share/man/man1/perf.1 | 
					
						
							|  |  |  | test_make_install_man_O  := $(test_make_install_man) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # FIXME nothing gets installed | 
					
						
							|  |  |  | test_make_install_doc    := $(test_ok) | 
					
						
							|  |  |  | test_make_install_doc_O  := $(test_ok) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # FIXME nothing gets installed | 
					
						
							|  |  |  | test_make_install_html   := $(test_ok) | 
					
						
							|  |  |  | test_make_install_html_O := $(test_ok) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # FIXME nothing gets installed | 
					
						
							|  |  |  | test_make_install_info   := $(test_ok) | 
					
						
							|  |  |  | test_make_install_info_O := $(test_ok) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # FIXME nothing gets installed | 
					
						
							|  |  |  | test_make_install_pdf    := $(test_ok) | 
					
						
							|  |  |  | test_make_install_pdf_O  := $(test_ok) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-19 11:21:38 +01:00
										 |  |  | test_make_python_perf_so_O    := test -f $$TMP_O/python/perf.so | 
					
						
							|  |  |  | test_make_perf_o_O            := test -f $$TMP_O/perf.o | 
					
						
							|  |  |  | test_make_util_map_o_O        := test -f $$TMP_O/util/map.o | 
					
						
							| 
									
										
										
										
											2014-02-19 11:21:39 +01:00
										 |  |  | test_make_util_pmu_bison_o_O := test -f $$TMP_O/util/pmu-bison.o | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | test_default = test -x $(PERF)/perf | 
					
						
							|  |  |  | test = $(if $(test_$1),$(test_$1),$(test_default)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-22 14:43:31 +02:00
										 |  |  | test_default_O = test -x $$TMP_O/perf | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | test_O = $(if $(test_$1),$(test_$1),$(test_default_O)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | all: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ifdef DEBUG | 
					
						
							|  |  |  | d := $(info run   $(run)) | 
					
						
							|  |  |  | d := $(info run_O $(run_O)) | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MAKEFLAGS := --no-print-directory | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | clean := @(cd $(PERF); make -s -f $(MK) clean >/dev/null) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | $(run): | 
					
						
							|  |  |  | 	$(call clean) | 
					
						
							| 
									
										
										
										
											2013-07-22 14:43:32 +02:00
										 |  |  | 	@TMP_DEST=$$(mktemp -d); \ | 
					
						
							|  |  |  | 	cmd="cd $(PERF) && make -f $(MK) DESTDIR=$$TMP_DEST $($@)"; \ | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | 	echo "- $@: $$cmd" && echo $$cmd > $@ && \ | 
					
						
							|  |  |  | 	( eval $$cmd ) >> $@ 2>&1; \ | 
					
						
							| 
									
										
										
										
											2013-12-19 14:41:59 +01:00
										 |  |  | 	echo "  test: $(call test,$@)" >> $@ 2>&1; \ | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | 	$(call test,$@) && \ | 
					
						
							| 
									
										
										
										
											2014-06-05 17:15:47 -03:00
										 |  |  | 	rm -rf $@ $$TMP_DEST || (cat $@ ; false) | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | $(run_O): | 
					
						
							|  |  |  | 	$(call clean) | 
					
						
							| 
									
										
										
										
											2013-07-22 14:43:31 +02:00
										 |  |  | 	@TMP_O=$$(mktemp -d); \ | 
					
						
							| 
									
										
										
										
											2013-07-22 14:43:32 +02:00
										 |  |  | 	TMP_DEST=$$(mktemp -d); \ | 
					
						
							|  |  |  | 	cmd="cd $(PERF) && make -f $(MK) O=$$TMP_O DESTDIR=$$TMP_DEST $($(patsubst %_O,%,$@))"; \ | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | 	echo "- $@: $$cmd" && echo $$cmd > $@ && \ | 
					
						
							|  |  |  | 	( eval $$cmd ) >> $@ 2>&1 && \ | 
					
						
							| 
									
										
										
										
											2013-12-19 14:41:59 +01:00
										 |  |  | 	echo "  test: $(call test_O,$@)" >> $@ 2>&1; \ | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | 	$(call test_O,$@) && \ | 
					
						
							| 
									
										
										
										
											2014-06-05 17:15:47 -03:00
										 |  |  | 	rm -rf $@ $$TMP_O $$TMP_DEST || (cat $@ ; false) | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-10 16:46:45 -03:00
										 |  |  | tarpkg: | 
					
						
							|  |  |  | 	@cmd="$(PERF)/tests/perf-targz-src-pkg $(PERF)"; \ | 
					
						
							|  |  |  | 	echo "- $@: $$cmd" && echo $$cmd > $@ && \ | 
					
						
							|  |  |  | 	( eval $$cmd ) >> $@ 2>&1 | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | all: $(run) $(run_O) tarpkg | 
					
						
							| 
									
										
										
										
											2013-03-29 16:11:02 +01:00
										 |  |  | 	@echo OK | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | out: $(run_O) | 
					
						
							|  |  |  | 	@echo OK | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-10 16:46:45 -03:00
										 |  |  | .PHONY: all $(run) $(run_O) tarpkg clean |