Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / tools / tracing / latency / Makefile.config
blob0fe6b50f029bf7094eaa57cca1b0dee08eecf2e8
1 # SPDX-License-Identifier: GPL-2.0-only
3 STOP_ERROR :=
5 define lib_setup
6   $(eval LIB_INCLUDES += $(shell sh -c "$(PKG_CONFIG) --cflags lib$(1)"))
7   $(eval LDFLAGS += $(shell sh -c "$(PKG_CONFIG) --libs-only-L lib$(1)"))
8   $(eval EXTLIBS += $(shell sh -c "$(PKG_CONFIG) --libs-only-l lib$(1)"))
9 endef
11 $(call feature_check,libtraceevent)
12 ifeq ($(feature-libtraceevent), 1)
13   $(call detected,CONFIG_LIBTRACEEVENT)
14   $(call lib_setup,traceevent)
15 else
16   STOP_ERROR := 1
17   $(info libtraceevent is missing. Please install libtraceevent-dev/libtraceevent-devel)
18 endif
20 $(call feature_check,libtracefs)
21 ifeq ($(feature-libtracefs), 1)
22   $(call detected,CONFIG_LIBTRACEFS)
23   $(call lib_setup,tracefs)
24 else
25   STOP_ERROR := 1
26   $(info libtracefs is missing. Please install libtracefs-dev/libtracefs-devel)
27 endif
29 ifeq ($(STOP_ERROR),1)
30   $(error Please, check the errors above.)
31 endif