callstack context: use delimiter when stack is incomplete
[lttng-modules.git] / Makefile
CommitLineData
1c8284eb
MD
1#
2# Makefile for the LTT objects.
3#
4
5ifneq ($(KERNELRELEASE),)
1c8284eb 6
a8907e9a
MJ
7 # This part of the Makefile is used when called by the kernel build system
8 # and defines the modules to be built.
9
98eb7f81
MD
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
a8907e9a 15
ca62d279 16 TOP_LTTNG_MODULES_DIR := $(shell dirname $(lastword $(MAKEFILE_LIST)))
39e088f3 17
ca62d279
MD
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
a8907e9a 20
ca62d279
MD
21 #
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
24 # distclean.
25 #
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)
29 endif
30 endif
31
751494f9 32 include $(TOP_LTTNG_MODULES_DIR)/Kbuild.common
ca62d279
MD
33
34 ccflags-y += -I$(TOP_LTTNG_MODULES_DIR)
35
36 obj-$(CONFIG_LTTNG) += lttng-ring-buffer-client-discard.o
37 obj-$(CONFIG_LTTNG) += lttng-ring-buffer-client-overwrite.o
38 obj-$(CONFIG_LTTNG) += lttng-ring-buffer-metadata-client.o
39 obj-$(CONFIG_LTTNG) += lttng-ring-buffer-client-mmap-discard.o
40 obj-$(CONFIG_LTTNG) += lttng-ring-buffer-client-mmap-overwrite.o
41 obj-$(CONFIG_LTTNG) += lttng-ring-buffer-metadata-mmap-client.o
42 obj-$(CONFIG_LTTNG) += lttng-clock.o
43
44 obj-$(CONFIG_LTTNG) += lttng-tracer.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 \
ca62d279
MD
56 lttng-context-hostname.o wrapper/random.o \
57 probes/lttng.o wrapper/trace-clock.o \
58 wrapper/page_alloc.o \
59 lttng-tracker-pid.o \
60 lttng-filter.o lttng-filter-interpreter.o \
61 lttng-filter-specialize.o \
62 lttng-filter-validator.o \
f771eda6
JD
63 probes/lttng-probe-user.o \
64 lttng-tp-mempool.o
ca62d279
MD
65
66 ifneq ($(CONFIG_HAVE_SYSCALL_TRACEPOINTS),)
67 lttng-tracer-objs += lttng-syscalls.o
68 endif # CONFIG_HAVE_SYSCALL_TRACEPOINTS
69
70 ifneq ($(CONFIG_PERF_EVENTS),)
71 lttng-tracer-objs += $(shell \
72 if [ $(VERSION) -ge 3 \
78b33418 73 -o \( $(VERSION) -eq 2 -a $(PATCHLEVEL) -eq 6 -a $(SUBLEVEL) -ge 33 \) ] ; then \
ca62d279
MD
74 echo "lttng-context-perf-counters.o" ; fi;)
75 endif # CONFIG_PERF_EVENTS
76
77 ifneq ($(CONFIG_PREEMPT_RT_FULL),)
78 lttng-tracer-objs += lttng-context-migratable.o
79 lttng-tracer-objs += lttng-context-preemptible.o
80 endif # CONFIG_PREEMPT_RT_FULL
81
82 ifneq ($(CONFIG_PREEMPT),)
83 lttng-tracer-objs += lttng-context-preemptible.o
84 endif
85
86 lttng-tracer-objs += $(shell \
87 if [ $(VERSION) -ge 4 \
78b33418 88 -o \( $(VERSION) -eq 3 -a $(PATCHLEVEL) -ge 15 \) ] ; then \
ca62d279
MD
89 echo "lttng-tracepoint.o" ; fi;)
90
91 obj-$(CONFIG_LTTNG) += lttng-statedump.o
92 lttng-statedump-objs := lttng-statedump-impl.o wrapper/irqdesc.o \
93 wrapper/fdtable.o
94
95 obj-$(CONFIG_LTTNG) += probes/
96 obj-$(CONFIG_LTTNG) += lib/
db758d11 97 obj-$(CONFIG_LTTNG) += tests/
c340f071 98
a8907e9a 99else # KERNELRELEASE
b37d476e 100
a8907e9a
MJ
101# This part of the Makefile is used when the 'make' command is runned in the
102# base directory of the lttng-modules sources. It sets some environment and
103# calls the kernel build system to build the actual modules.
1c8284eb 104
a8907e9a
MJ
105KERNELDIR ?= /lib/modules/$(shell uname -r)/build
106PWD := $(shell pwd)
107CFLAGS = $(EXTCFLAGS)
1c8284eb 108
87d1b66f
MJ
109default: modules
110
111modules:
3a3b740f 112 $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m modules
1c8284eb
MD
113
114modules_install:
3a3b740f 115 $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m modules_install
1c8284eb
MD
116
117clean:
ebc53e02 118 $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
1c8284eb 119
23e6a44f 120%.i: %.c
3a3b740f 121 $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m $@
a8907e9a 122
b4809588 123endif # KERNELRELEASE
This page took 0.036492 seconds and 4 git commands to generate.