9 MAKEFLAGS
+= --no-print-directory
12 # Makefiles suck: This macro sets a default value of $(2) for the
13 # variable named by $(1), unless the variable has been set by
14 # environment or command line. This is necessary for CC and AR
15 # because make sets default values, so the simpler ?= approach
16 # won't work as expected.
18 $(if
$(or
$(findstring environment
,$(origin $(1))),\
19 $(findstring command line
,$(origin $(1)))),,\
23 # Allow setting CC and AR, or setting CROSS_COMPILE as a prefix.
24 $(call allow-override
,CC
,$(CROSS_COMPILE
)gcc
)
25 $(call allow-override
,AR
,$(CROSS_COMPILE
)ar)
26 $(call allow-override
,NM
,$(CROSS_COMPILE
)nm
)
31 # Use DESTDIR for installing into a different root directory.
32 # This is useful for building a package. The program will be
33 # installed in this directory as if it was the root directory.
34 # Then the build tool can move it later.
36 DESTDIR_SQ
= '$(subst ','\'',$(DESTDIR
))'
38 LP64 := $(shell echo __LP64__ | ${CC} ${CFLAGS} -E -x c - | tail -n 1)
40 libdir_relative = lib64
46 libdir = $(prefix)/$(libdir_relative)
47 man_dir = $(prefix)/share/man
48 man_dir_SQ = '$(subst ','\'',$(man_dir))'
50 export man_dir man_dir_SQ INSTALL
51 export DESTDIR DESTDIR_SQ
55 # Set plugin_dir to preffered global plugin location
56 # If we install under $HOME directory we go under
57 # $(HOME)/.traceevent/plugins
59 # We dont set PLUGIN_DIR in case we install under $HOME
60 # directory, because by default the code looks under:
61 # $(HOME)/.traceevent/plugins by default.
64 ifeq ($(prefix),$(HOME
))
65 override plugin_dir
= $(HOME
)/.traceevent
/plugins
68 override plugin_dir
= $(libdir)/traceevent
/plugins
72 ifeq ($(set_plugin_dir
),1)
73 PLUGIN_DIR
= -DPLUGIN_DIR
="$(plugin_dir)"
74 PLUGIN_DIR_SQ
= '$(subst ','\'',$(PLUGIN_DIR
))'
77 include ../../scripts/Makefile.include
79 # copy a bit from Linux kbuild
81 ifeq ("$(origin V)", "command line")
89 srctree := $(patsubst %/,%,$(dir $(shell pwd)))
90 srctree := $(patsubst %/,%,$(dir $(srctree)))
91 srctree := $(patsubst %/,%,$(dir $(srctree)))
92 #$(info Determined 'srctree
' to be $(srctree))
95 export prefix libdir src obj
98 libdir_SQ = $(subst ','\'',$(libdir))
99 libdir_relative_SQ
= $(subst ','\'',$(libdir_relative))
100 plugin_dir_SQ = $(subst ','\'',$(plugin_dir
))
102 LIB_FILE
= libtraceevent.a libtraceevent.so
108 VERSION
= $(EP_VERSION
)
109 PATCHLEVEL
= $(EP_PATCHLEVEL
)
110 EXTRAVERSION
= $(EP_EXTRAVERSION
)
115 EVENT_PARSE_VERSION
= $(EP_VERSION
).
$(EP_PATCHLEVEL
).
$(EP_EXTRAVERSION
)
117 INCLUDES
= -I.
-I
$(srctree
)/tools
/include $(CONFIG_INCLUDES
)
119 # Set compile option CFLAGS
121 CFLAGS
:= $(EXTRA_CFLAGS
)
126 # Append required CFLAGS
127 override CFLAGS
+= -fPIC
128 override CFLAGS
+= $(CONFIG_FLAGS
) $(INCLUDES
) $(PLUGIN_DIR_SQ
)
129 override CFLAGS
+= $(udis86-flags
) -D_GNU_SOURCE
137 # Disable command line variables (CFLAGS) overide from top
138 # level Makefile (perf), otherwise build Makefile will get
139 # the same command line setup.
142 export srctree OUTPUT CC LD CFLAGS V
143 build
:= -f
$(srctree
)/tools
/build
/Makefile.build
dir=. obj
145 PLUGINS
= plugin_jbd2.so
146 PLUGINS
+= plugin_hrtimer.so
147 PLUGINS
+= plugin_kmem.so
148 PLUGINS
+= plugin_kvm.so
149 PLUGINS
+= plugin_mac80211.so
150 PLUGINS
+= plugin_sched_switch.so
151 PLUGINS
+= plugin_function.so
152 PLUGINS
+= plugin_xen.so
153 PLUGINS
+= plugin_scsi.so
154 PLUGINS
+= plugin_cfg80211.so
156 PLUGINS
:= $(addprefix $(OUTPUT
),$(PLUGINS
))
157 PLUGINS_IN
:= $(PLUGINS
:.so
=-in.o
)
159 TE_IN
:= $(OUTPUT
)libtraceevent-in.o
160 LIB_FILE
:= $(addprefix $(OUTPUT
),$(LIB_FILE
))
161 DYNAMIC_LIST_FILE
:= $(OUTPUT
)libtraceevent-dynamic-list
163 CMD_TARGETS
= $(LIB_FILE
) $(PLUGINS
) $(DYNAMIC_LIST_FILE
)
165 TARGETS
= $(CMD_TARGETS
)
169 all_cmd
: $(CMD_TARGETS
)
172 $(Q
)$(MAKE
) $(build
)=libtraceevent
174 $(OUTPUT
)libtraceevent.so
: $(TE_IN
)
175 $(QUIET_LINK
)$(CC
) --shared
$^
-o
$@
177 $(OUTPUT
)libtraceevent.a
: $(TE_IN
)
178 $(QUIET_LINK
)$(RM
) $@
; $(AR
) rcs
$@
$^
180 $(OUTPUT
)libtraceevent-dynamic-list
: $(PLUGINS
)
181 $(QUIET_GEN
)$(call do_generate_dynamic_list_file
, $(PLUGINS
), $@
)
185 __plugin_obj
= $(notdir $@
)
186 plugin_obj
= $(__plugin_obj
:-in.o
=)
189 $(Q
)$(MAKE
) $(build
)=$(plugin_obj
)
191 $(OUTPUT
)%.so
: $(OUTPUT
)%-in.o
192 $(QUIET_LINK
)$(CC
) $(CFLAGS
) -shared
-nostartfiles
-o
$@
$^
194 define make_version.h
195 (echo
'/* This file is automatically generated. Do not modify. */'; \
196 echo \
#define VERSION_CODE $(shell \
197 expr
$(VERSION
) \
* 256 + $(PATCHLEVEL
)); \
198 echo
'#define EXTRAVERSION ' $(EXTRAVERSION
); \
199 echo
'#define VERSION_STRING "'$(VERSION
).
$(PATCHLEVEL
).
$(EXTRAVERSION
)'"'; \
200 echo
'#define FILE_VERSION '$(FILE_VERSION
); \
204 define update_version.h
205 ($(call make_version.h
, $@.tmp
); \
206 if
[ -r
$@
] && cmp
-s
$@
$@.tmp
; then \
215 $(Q
)$(N
)$(call update_version.h
)
217 VERSION_FILES
= ep_version.h
221 if
[ -r
$@
] && cmp
-s
$@
$@.tmp
; then \
231 find .
-name
'*.[ch]' | xargs ctags
--extra
=+f
--c-kinds
=+px \
232 --regex-c
++='/_PE\(([^,)]*).*/PEVENT_ERRNO__\1/'
236 find .
-name
'*.[ch]' | xargs etags \
237 --regex
='/_PE(\([^,)]*\).*/PEVENT_ERRNO__\1/'
240 if
[ ! -d
'$(DESTDIR_SQ)$2' ]; then \
241 $(INSTALL
) -d
-m
755 '$(DESTDIR_SQ)$2'; \
243 $(INSTALL
) $1 '$(DESTDIR_SQ)$2'
246 define do_install_plugins
247 for plugin in
$1; do \
248 $(call do_install
,$$plugin,$(plugin_dir_SQ
)); \
252 define do_generate_dynamic_list_file
254 $(NM
) -u
-D
$1 | awk
'NF>1 {print "\t"$$2";"}' |
sort -u
; \
259 install_lib
: all_cmd install_plugins
260 $(call QUIET_INSTALL
, $(LIB_FILE
)) \
261 $(call do_install
,$(LIB_FILE
),$(libdir_SQ
))
263 install_plugins
: $(PLUGINS
)
264 $(call QUIET_INSTALL
, trace_plugins
) \
265 $(call do_install_plugins
, $(PLUGINS
))
270 $(call QUIET_CLEAN
, libtraceevent
) \
271 $(RM
) *.o
*~
$(TARGETS
) *.a
*.so
$(VERSION_FILES
) .
*.d .
*.cmd \
272 $(RM
) TRACEEVENT-CFLAGS
tags TAGS
274 PHONY
+= force plugins
277 # Declare the contents of the .PHONY variable as phony. We keep that
278 # information in a variable so we can use it in if_changed and friends.