fix: block: add a disk_uevent helper (v5.12)
[lttng-modules.git] / Makefile
CommitLineData
9f36eaed 1# SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1)
1c8284eb
MD
2
3ifneq ($(KERNELRELEASE),)
1c8284eb 4
a8907e9a
MJ
5 # This part of the Makefile is used when called by the kernel build system
6 # and defines the modules to be built.
7
98eb7f81
MD
8 ifdef CONFIG_LOCALVERSION # Check if dot-config is included.
9 ifeq ($(CONFIG_TRACEPOINTS),)
10 $(error The option CONFIG_TRACEPOINTS needs to be enabled in your kernel configuration)
11 endif # CONFIG_TRACEPOINTS
12 endif # ifdef CONFIG_LOCALVERSION
a8907e9a 13
ca62d279 14 TOP_LTTNG_MODULES_DIR := $(shell dirname $(lastword $(MAKEFILE_LIST)))
39e088f3 15
ca62d279
MD
16 lttng_check_linux_version = $(shell pwd)/include/linux/version.h
17 lttng_check_generated_linux_version = $(shell pwd)/include/generated/uapi/linux/version.h
a8907e9a 18
ca62d279
MD
19 #
20 # Check for stale version.h, which can be a leftover from an old Linux
21 # kernel tree moved to a newer kernel version, only pruned by make
22 # distclean.
23 #
24 ifneq ($(wildcard $(lttng_check_linux_version)),)
25 ifneq ($(wildcard $(lttng_check_generated_linux_version)),)
26 $(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)
27 endif
28 endif
29
751494f9 30 include $(TOP_LTTNG_MODULES_DIR)/Kbuild.common
ca62d279
MD
31
32 ccflags-y += -I$(TOP_LTTNG_MODULES_DIR)
33
34 obj-$(CONFIG_LTTNG) += lttng-ring-buffer-client-discard.o
35 obj-$(CONFIG_LTTNG) += lttng-ring-buffer-client-overwrite.o
36 obj-$(CONFIG_LTTNG) += lttng-ring-buffer-metadata-client.o
37 obj-$(CONFIG_LTTNG) += lttng-ring-buffer-client-mmap-discard.o
38 obj-$(CONFIG_LTTNG) += lttng-ring-buffer-client-mmap-overwrite.o
39 obj-$(CONFIG_LTTNG) += lttng-ring-buffer-metadata-mmap-client.o
40 obj-$(CONFIG_LTTNG) += lttng-clock.o
41
42 obj-$(CONFIG_LTTNG) += lttng-tracer.o
43
cd95ad24
MD
44 obj-$(CONFIG_LTTNG) += lttng-wrapper.o
45
231b5333 46 lttng-tracer-objs := lttng-events.o lttng-abi.o lttng-string-utils.o \
ca62d279
MD
47 lttng-probes.o lttng-context.o \
48 lttng-context-pid.o lttng-context-procname.o \
49 lttng-context-prio.o lttng-context-nice.o \
50 lttng-context-vpid.o lttng-context-tid.o \
51 lttng-context-vtid.o lttng-context-ppid.o \
52 lttng-context-vppid.o lttng-context-cpu-id.o \
53 lttng-context-interruptible.o \
2fa2d39a
FG
54 lttng-context-need-reschedule.o \
55 lttng-context-callstack.o lttng-calibrate.o \
cd95ad24
MD
56 lttng-context-hostname.o \
57 probes/lttng.o \
ca62d279
MD
58 lttng-tracker-pid.o \
59 lttng-filter.o lttng-filter-interpreter.o \
60 lttng-filter-specialize.o \
61 lttng-filter-validator.o \
f771eda6 62 probes/lttng-probe-user.o \
cd95ad24
MD
63 lttng-tp-mempool.o \
64
65 lttng-wrapper-objs := wrapper/page_alloc.o \
66 wrapper/random.o \
67 wrapper/trace-clock.o \
e3273c97 68 wrapper/kallsyms.o \
cd95ad24
MD
69 wrapper/irqdesc.o \
70 wrapper/fdtable.o \
aeb71057 71 wrapper/genhd.o \
cd95ad24 72 lttng-wrapper-impl.o
ca62d279
MD
73
74 ifneq ($(CONFIG_HAVE_SYSCALL_TRACEPOINTS),)
75 lttng-tracer-objs += lttng-syscalls.o
76 endif # CONFIG_HAVE_SYSCALL_TRACEPOINTS
77
78 ifneq ($(CONFIG_PERF_EVENTS),)
79 lttng-tracer-objs += $(shell \
80 if [ $(VERSION) -ge 3 \
78b33418 81 -o \( $(VERSION) -eq 2 -a $(PATCHLEVEL) -eq 6 -a $(SUBLEVEL) -ge 33 \) ] ; then \
ca62d279
MD
82 echo "lttng-context-perf-counters.o" ; fi;)
83 endif # CONFIG_PERF_EVENTS
84
85 ifneq ($(CONFIG_PREEMPT_RT_FULL),)
86 lttng-tracer-objs += lttng-context-migratable.o
87 lttng-tracer-objs += lttng-context-preemptible.o
88 endif # CONFIG_PREEMPT_RT_FULL
89
90 ifneq ($(CONFIG_PREEMPT),)
91 lttng-tracer-objs += lttng-context-preemptible.o
92 endif
93
94 lttng-tracer-objs += $(shell \
95 if [ $(VERSION) -ge 4 \
78b33418 96 -o \( $(VERSION) -eq 3 -a $(PATCHLEVEL) -ge 15 \) ] ; then \
ca62d279
MD
97 echo "lttng-tracepoint.o" ; fi;)
98
99 obj-$(CONFIG_LTTNG) += lttng-statedump.o
cd95ad24 100 lttng-statedump-objs := lttng-statedump-impl.o
ca62d279
MD
101
102 obj-$(CONFIG_LTTNG) += probes/
103 obj-$(CONFIG_LTTNG) += lib/
db758d11 104 obj-$(CONFIG_LTTNG) += tests/
c340f071 105
a8907e9a 106else # KERNELRELEASE
b37d476e 107
a8907e9a
MJ
108# This part of the Makefile is used when the 'make' command is runned in the
109# base directory of the lttng-modules sources. It sets some environment and
110# calls the kernel build system to build the actual modules.
1c8284eb 111
a8907e9a
MJ
112KERNELDIR ?= /lib/modules/$(shell uname -r)/build
113PWD := $(shell pwd)
114CFLAGS = $(EXTCFLAGS)
1c8284eb 115
87d1b66f
MJ
116default: modules
117
118modules:
3a3b740f 119 $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m modules
1c8284eb
MD
120
121modules_install:
3a3b740f 122 $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m modules_install
1c8284eb
MD
123
124clean:
ebc53e02 125 $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
1c8284eb 126
23e6a44f 127%.i: %.c
3a3b740f 128 $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m $@
a8907e9a 129
b4809588 130endif # KERNELRELEASE
This page took 0.044286 seconds and 4 git commands to generate.