2 # Makefile for the LTT objects.
5 ifneq ($(KERNELRELEASE
),)
7 # This part of the Makefile is used when called by the kernel build system
8 # and defines the modules to be built.
10 ifdef CONFIG_LOCALVERSION
# Check if dot-config is included.
11 ifeq ($(CONFIG_TRACEPOINTS
),)
12 $(error The option CONFIG_TRACEPOINTS needs to be enabled in your kernel configuration
)
13 endif # CONFIG_TRACEPOINTS
14 endif # ifdef CONFIG_LOCALVERSION
16 TOP_LTTNG_MODULES_DIR
:= $(shell dirname
$(lastword
$(MAKEFILE_LIST
)))
18 lttng_check_linux_version
= $(shell pwd
)/include/linux
/version.h
19 lttng_check_generated_linux_version
= $(shell pwd
)/include/generated
/uapi
/linux
/version.h
22 # Check for stale version.h, which can be a leftover from an old Linux
23 # kernel tree moved to a newer kernel version, only pruned by make
26 ifneq ($(wildcard $(lttng_check_linux_version
)),)
27 ifneq ($(wildcard $(lttng_check_generated_linux_version
)),)
28 $(error Duplicate version.h files found in
$(lttng_check_linux_version
) and
$(lttng_check_generated_linux_version
). Consider running make
distclean on your kernel
, or removing the stale
$(lttng_check_linux_version
) file
)
33 if
[ $(VERSION
) -ge
5 \
34 -o \
( $(VERSION
) -eq
4 -a
$(PATCHLEVEL
) -ge
10 \
) ] ; then \
36 $(warning You are entering uncharted territories adventurer
! Proceed with utmost caution
(also
, lttng-modules
2.8 does not support Linux
>= 4.10. You should upgrade to a newer lttng-modules version.
))
39 include $(TOP_LTTNG_MODULES_DIR
)/Makefile.ABI.workarounds
41 ccflags-y
+= -I
$(TOP_LTTNG_MODULES_DIR
)
43 obj-
$(CONFIG_LTTNG
) += lttng-ring-buffer-client-discard.o
44 obj-
$(CONFIG_LTTNG
) += lttng-ring-buffer-client-overwrite.o
45 obj-
$(CONFIG_LTTNG
) += lttng-ring-buffer-metadata-client.o
46 obj-
$(CONFIG_LTTNG
) += lttng-ring-buffer-client-mmap-discard.o
47 obj-
$(CONFIG_LTTNG
) += lttng-ring-buffer-client-mmap-overwrite.o
48 obj-
$(CONFIG_LTTNG
) += lttng-ring-buffer-metadata-mmap-client.o
49 obj-
$(CONFIG_LTTNG
) += lttng-clock.o
51 obj-
$(CONFIG_LTTNG
) += lttng-tracer.o
53 lttng-tracer-objs
:= lttng-events.o lttng-abi.o \
54 lttng-probes.o lttng-context.o \
55 lttng-context-pid.o lttng-context-procname.o \
56 lttng-context-prio.o lttng-context-nice.o \
57 lttng-context-vpid.o lttng-context-tid.o \
58 lttng-context-vtid.o lttng-context-ppid.o \
59 lttng-context-vppid.o lttng-context-cpu-id.o \
60 lttng-context-interruptible.o \
61 lttng-context-need-reschedule.o lttng-calibrate.o \
62 lttng-context-hostname.o wrapper
/random.o \
63 probes
/lttng.o wrapper
/trace-clock.o \
64 wrapper
/page_alloc.o \
66 lttng-filter.o lttng-filter-interpreter.o \
67 lttng-filter-specialize.o \
68 lttng-filter-validator.o \
69 probes
/lttng-probe-user.o
71 ifneq ($(CONFIG_HAVE_SYSCALL_TRACEPOINTS
),)
72 lttng-tracer-objs
+= lttng-syscalls.o
73 endif # CONFIG_HAVE_SYSCALL_TRACEPOINTS
75 ifneq ($(CONFIG_PERF_EVENTS
),)
76 lttng-tracer-objs
+= $(shell \
77 if
[ $(VERSION
) -ge
3 \
78 -o \
( $(VERSION
) -eq
2 -a
$(PATCHLEVEL
) -ge
6 -a
$(SUBLEVEL
) -ge
33 \
) ] ; then \
79 echo
"lttng-context-perf-counters.o" ; fi
;)
80 endif # CONFIG_PERF_EVENTS
82 ifneq ($(CONFIG_PREEMPT_RT_FULL
),)
83 lttng-tracer-objs
+= lttng-context-migratable.o
84 lttng-tracer-objs
+= lttng-context-preemptible.o
85 endif # CONFIG_PREEMPT_RT_FULL
87 ifneq ($(CONFIG_PREEMPT
),)
88 lttng-tracer-objs
+= lttng-context-preemptible.o
91 lttng-tracer-objs
+= $(shell \
92 if
[ $(VERSION
) -ge
4 \
93 -o \
( $(VERSION
) -eq
3 -a
$(PATCHLEVEL
) -ge
15 -a
$(SUBLEVEL
) -ge
0 \
) ] ; then \
94 echo
"lttng-tracepoint.o" ; fi
;)
96 obj-
$(CONFIG_LTTNG
) += lttng-statedump.o
97 lttng-statedump-objs
:= lttng-statedump-impl.o wrapper
/irqdesc.o \
100 obj-
$(CONFIG_LTTNG
) += probes
/
101 obj-
$(CONFIG_LTTNG
) += lib
/
102 obj-
$(CONFIG_LTTNG
) += tests
/
106 # This part of the Makefile is used when the 'make' command is runned in the
107 # base directory of the lttng-modules sources. It sets some environment and
108 # calls the kernel build system to build the actual modules.
110 KERNELDIR ?
= /lib
/modules
/$(shell uname
-r
)/build
112 CFLAGS
= $(EXTCFLAGS
)
117 $(MAKE
) -C
$(KERNELDIR
) M
=$(PWD
) CONFIG_LTTNG
=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST
=m modules
120 $(MAKE
) -C
$(KERNELDIR
) M
=$(PWD
) CONFIG_LTTNG
=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST
=m modules_install
123 $(MAKE
) -C
$(KERNELDIR
) M
=$(PWD
) clean
126 $(MAKE
) -C
$(KERNELDIR
) M
=$(PWD
) CONFIG_LTTNG
=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST
=m
$@
128 endif # KERNELRELEASE