Move headers under include/
[lttng-modules.git] / Makefile
CommitLineData
b7cdc182 1# SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
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 31
b5304713 32 ccflags-y += -I$(TOP_LTTNG_MODULES_DIR)/include
ca62d279
MD
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
231b5333 44 lttng-tracer-objs := lttng-events.o lttng-abi.o lttng-string-utils.o \
ca62d279
MD
45 lttng-probes.o lttng-context.o \
46 lttng-context-pid.o lttng-context-procname.o \
47 lttng-context-prio.o lttng-context-nice.o \
48 lttng-context-vpid.o lttng-context-tid.o \
49 lttng-context-vtid.o lttng-context-ppid.o \
50 lttng-context-vppid.o lttng-context-cpu-id.o \
dc923e75
MJ
51 lttng-context-uid.o \
52 lttng-context-euid.o \
53 lttng-context-suid.o \
54 lttng-context-gid.o \
55 lttng-context-egid.o \
56 lttng-context-sgid.o \
57 lttng-context-vuid.o \
58 lttng-context-veuid.o \
59 lttng-context-vsuid.o \
60 lttng-context-vgid.o \
61 lttng-context-vegid.o \
62 lttng-context-vsgid.o \
ca62d279 63 lttng-context-interruptible.o \
2fa2d39a
FG
64 lttng-context-need-reschedule.o \
65 lttng-context-callstack.o lttng-calibrate.o \
84bbd9ea 66 lttng-context-hostname.o \
b5304713 67 probes/lttng.o trace-clock.o \
d1f652f8 68 lttng-tracker-id.o \
ca62d279
MD
69 lttng-filter.o lttng-filter-interpreter.o \
70 lttng-filter-specialize.o \
71 lttng-filter-validator.o \
f771eda6 72 probes/lttng-probe-user.o \
e33fc900 73 lttng-tp-mempool.o
ca62d279
MD
74
75 ifneq ($(CONFIG_HAVE_SYSCALL_TRACEPOINTS),)
76 lttng-tracer-objs += lttng-syscalls.o
77 endif # CONFIG_HAVE_SYSCALL_TRACEPOINTS
78
79 ifneq ($(CONFIG_PERF_EVENTS),)
12ce29c7 80 lttng-tracer-objs += lttng-context-perf-counters.o
ca62d279
MD
81 endif # CONFIG_PERF_EVENTS
82
83 ifneq ($(CONFIG_PREEMPT_RT_FULL),)
84 lttng-tracer-objs += lttng-context-migratable.o
85 lttng-tracer-objs += lttng-context-preemptible.o
86 endif # CONFIG_PREEMPT_RT_FULL
87
88 ifneq ($(CONFIG_PREEMPT),)
89 lttng-tracer-objs += lttng-context-preemptible.o
90 endif
91
b071c263 92 lttng-tracer-objs += lttng-tracepoint.o
ca62d279 93
a6cf40a4
MJ
94 lttng-tracer-objs += lttng-context-cgroup-ns.o
95
96 ifneq ($(CONFIG_IPC_NS),)
97 lttng-tracer-objs += lttng-context-ipc-ns.o
98 endif
99
100 ifneq ($(wildcard $(mnt_ns_dep)),)
101 lttng-tracer-objs += lttng-context-mnt-ns.o
102 endif
103
104 ifneq ($(CONFIG_NET_NS),)
105 lttng-tracer-objs += lttng-context-net-ns.o
106 endif
107
108 ifneq ($(CONFIG_PID_NS),)
109 lttng-tracer-objs += lttng-context-pid-ns.o
110 endif
111
112 ifneq ($(CONFIG_USER_NS),)
113 lttng-tracer-objs += lttng-context-user-ns.o
114 endif
115
116 ifneq ($(CONFIG_UTS_NS),)
117 lttng-tracer-objs += lttng-context-uts-ns.o
118 endif
119
ca62d279 120 obj-$(CONFIG_LTTNG) += lttng-statedump.o
997eff5e 121 lttng-statedump-objs := lttng-statedump-impl.o
ca62d279
MD
122
123 obj-$(CONFIG_LTTNG) += probes/
124 obj-$(CONFIG_LTTNG) += lib/
db758d11 125 obj-$(CONFIG_LTTNG) += tests/
c340f071 126
a8907e9a 127else # KERNELRELEASE
b37d476e 128
a8907e9a
MJ
129# This part of the Makefile is used when the 'make' command is runned in the
130# base directory of the lttng-modules sources. It sets some environment and
131# calls the kernel build system to build the actual modules.
1c8284eb 132
a8907e9a
MJ
133KERNELDIR ?= /lib/modules/$(shell uname -r)/build
134PWD := $(shell pwd)
135CFLAGS = $(EXTCFLAGS)
1c8284eb 136
87d1b66f
MJ
137default: modules
138
139modules:
3a3b740f 140 $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m modules
1c8284eb
MD
141
142modules_install:
3a3b740f 143 $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m modules_install
1c8284eb
MD
144
145clean:
ebc53e02 146 $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
1c8284eb 147
23e6a44f 148%.i: %.c
3a3b740f 149 $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m $@
a8907e9a 150
b4809588 151endif # KERNELRELEASE
This page took 0.053518 seconds and 4 git commands to generate.