Fix: Building the event list fails on fragmented memory
[lttng-modules.git] / Makefile
... / ...
CommitLineData
1#
2# Makefile for the LTT objects.
3#
4
5ifneq ($(KERNELRELEASE),)
6ifneq ($(CONFIG_TRACEPOINTS),)
7
8KERNELDIR=${LTTNG_KERNELDIR}
9
10lttng_check_linux_version = $(shell pwd)/include/linux/version.h
11lttng_check_generated_linux_version = $(shell pwd)/include/generated/uapi/linux/version.h
12
13#
14# Check for stale version.h, which can be a leftover from an old Linux
15# kernel tree moved to a newer kernel version, only pruned by make
16# distclean.
17#
18ifneq ($(wildcard $(lttng_check_linux_version)),)
19ifneq ($(wildcard $(lttng_check_generated_linux_version)),)
20$(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)
21endif
22endif
23
24include $(KBUILD_EXTMOD)/Makefile.ABI.workarounds
25
26obj-m += lttng-ring-buffer-client-discard.o
27obj-m += lttng-ring-buffer-client-overwrite.o
28obj-m += lttng-ring-buffer-metadata-client.o
29obj-m += lttng-ring-buffer-client-mmap-discard.o
30obj-m += lttng-ring-buffer-client-mmap-overwrite.o
31obj-m += lttng-ring-buffer-metadata-mmap-client.o
32
33obj-m += lttng-tracer.o
34lttng-tracer-objs := lttng-events.o lttng-abi.o \
35 lttng-probes.o lttng-context.o \
36 lttng-context-pid.o lttng-context-procname.o \
37 lttng-context-prio.o lttng-context-nice.o \
38 lttng-context-vpid.o lttng-context-tid.o \
39 lttng-context-vtid.o lttng-context-ppid.o \
40 lttng-context-vppid.o lttng-calibrate.o \
41 lttng-context-hostname.o wrapper/random.o \
42 probes/lttng.o wrapper/trace-clock.o \
43 wrapper/page_alloc.o
44
45obj-m += lttng-statedump.o
46lttng-statedump-objs := lttng-statedump-impl.o wrapper/irqdesc.o \
47 wrapper/fdtable.o
48
49ifneq ($(CONFIG_HAVE_SYSCALL_TRACEPOINTS),)
50lttng-tracer-objs += lttng-syscalls.o probes/lttng-probe-user.o
51endif # CONFIG_HAVE_SYSCALL_TRACEPOINTS
52
53ifneq ($(CONFIG_PERF_EVENTS),)
54lttng-tracer-objs += $(shell \
55 if [ $(VERSION) -ge 3 \
56 -o \( $(VERSION) -eq 2 -a $(PATCHLEVEL) -ge 6 -a $(SUBLEVEL) -ge 33 \) ] ; then \
57 echo "lttng-context-perf-counters.o" ; fi;)
58endif # CONFIG_PERF_EVENTS
59
60lttng-tracer-objs += $(shell \
61 if [ $(VERSION) -ge 4 \
62 -o \( $(VERSION) -eq 3 -a $(PATCHLEVEL) -ge 15 -a $(SUBLEVEL) -ge 0 \) ] ; then \
63 echo "lttng-tracepoint.o" ; fi;)
64
65obj-m += probes/
66obj-m += lib/
67
68endif # CONFIG_TRACEPOINTS
69
70else # KERNELRELEASE
71 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
72 PWD := $(shell pwd)
73 CFLAGS = $(EXTCFLAGS)
74
75default:
76 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
77
78modules_install:
79 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
80
81clean:
82 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
83
84%.i: %.c
85 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) $@
86endif # KERNELRELEASE
This page took 0.02436 seconds and 4 git commands to generate.