2 # Makefile for the LTT objects.
5 ifneq ($(KERNELRELEASE
),)
6 ifneq ($(CONFIG_TRACEPOINTS
),)
8 KERNELDIR
= ${LTTNG_KERNELDIR}
9 MAKEFILEDIR
= $(shell dirname
$(lastword
$(MAKEFILE_LIST
)))
11 lttng_check_linux_version
= $(shell pwd
)/include/linux
/version.h
12 lttng_check_generated_linux_version
= $(shell pwd
)/include/generated
/uapi
/linux
/version.h
16 # Check for stale version.h, which can be a leftover from an old Linux
17 # kernel tree moved to a newer kernel version, only pruned by make
20 ifneq ($(wildcard $(lttng_check_linux_version
)),)
21 ifneq ($(wildcard $(lttng_check_generated_linux_version
)),)
22 $(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
)
26 include $(MAKEFILEDIR
)/Makefile.ABI.workarounds
28 obj-m
+= lttng-ring-buffer-client-discard.o
29 obj-m
+= lttng-ring-buffer-client-overwrite.o
30 obj-m
+= lttng-ring-buffer-metadata-client.o
31 obj-m
+= lttng-ring-buffer-client-mmap-discard.o
32 obj-m
+= lttng-ring-buffer-client-mmap-overwrite.o
33 obj-m
+= lttng-ring-buffer-metadata-mmap-client.o
35 obj-m
+= lttng-tracer.o
36 lttng-tracer-objs
:= lttng-events.o lttng-abi.o \
37 lttng-probes.o lttng-context.o \
38 lttng-context-pid.o lttng-context-procname.o \
39 lttng-context-prio.o lttng-context-nice.o \
40 lttng-context-vpid.o lttng-context-tid.o \
41 lttng-context-vtid.o lttng-context-ppid.o \
42 lttng-context-vppid.o lttng-context-cpu-id.o \
44 lttng-context-hostname.o wrapper
/random.o \
45 probes
/lttng.o wrapper
/trace-clock.o \
46 wrapper
/page_alloc.o \
48 lttng-filter.o lttng-filter-interpreter.o \
49 lttng-filter-specialize.o \
50 lttng-filter-validator.o \
51 probes
/lttng-probe-user.o
53 ifneq ($(CONFIG_HAVE_SYSCALL_TRACEPOINTS
),)
54 lttng-tracer-objs
+= lttng-syscalls.o
55 endif # CONFIG_HAVE_SYSCALL_TRACEPOINTS
57 ifneq ($(CONFIG_PERF_EVENTS
),)
58 lttng-tracer-objs
+= $(shell \
59 if
[ $(VERSION
) -ge
3 \
60 -o \
( $(VERSION
) -eq
2 -a
$(PATCHLEVEL
) -ge
6 -a
$(SUBLEVEL
) -ge
33 \
) ] ; then \
61 echo
"lttng-context-perf-counters.o" ; fi
;)
62 endif # CONFIG_PERF_EVENTS
64 lttng-tracer-objs
+= $(shell \
65 if
[ $(VERSION
) -ge
4 \
66 -o \
( $(VERSION
) -eq
3 -a
$(PATCHLEVEL
) -ge
15 -a
$(SUBLEVEL
) -ge
0 \
) ] ; then \
67 echo
"lttng-tracepoint.o" ; fi
;)
69 obj-m
+= lttng-statedump.o
70 lttng-statedump-objs
:= lttng-statedump-impl.o wrapper
/irqdesc.o \
76 endif # CONFIG_TRACEPOINTS
79 KERNELDIR ?
= /lib
/modules
/$(shell uname
-r
)/build
84 LTTNG_KERNELDIR
=$(KERNELDIR
) $(MAKE
) -C
$(KERNELDIR
) M
=$(PWD
) modules
87 LTTNG_KERNELDIR
=$(KERNELDIR
) $(MAKE
) -C
$(KERNELDIR
) M
=$(PWD
) modules_install
90 LTTNG_KERNELDIR
=$(KERNELDIR
) $(MAKE
) -C
$(KERNELDIR
) M
=$(PWD
) clean
93 LTTNG_KERNELDIR
=$(KERNELDIR
) $(MAKE
) -C
$(KERNELDIR
) M
=$(PWD
) $@