Version 2.7.0-rc1
[lttng-modules.git] / Makefile
CommitLineData
1c8284eb
MD
1#
2# Makefile for the LTT objects.
3#
4
5ifneq ($(KERNELRELEASE),)
11b5a3c2 6ifneq ($(CONFIG_TRACEPOINTS),)
1c8284eb 7
72e6c528
MD
8KERNELDIR=${LTTNG_KERNELDIR}
9
c340f071
MD
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
72e6c528
MD
24include $(KBUILD_EXTMOD)/Makefile.ABI.workarounds
25
a90917c3
MD
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 \
c26fddc2 36 lttng-context-pid.o lttng-context-procname.o \
b64bc438
MD
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 \
b3699d90
MD
40 lttng-context-vppid.o lttng-context-cpu-id.o \
41 lttng-calibrate.o \
0c956676 42 lttng-context-hostname.o wrapper/random.o \
e0130fab 43 probes/lttng.o wrapper/trace-clock.o \
389d7070 44 wrapper/page_alloc.o \
07dfc1d0
MD
45 lttng-tracker-pid.o \
46 lttng-filter.o lttng-filter-interpreter.o \
47 lttng-filter-specialize.o \
f127e61e
MD
48 lttng-filter-validator.o \
49 probes/lttng-probe-user.o
11b5a3c2 50
c337ddc2 51obj-m += lttng-statedump.o
361c023a
MD
52lttng-statedump-objs := lttng-statedump-impl.o wrapper/irqdesc.o \
53 wrapper/fdtable.o
c337ddc2 54
57ede728
MD
55ifneq ($(CONFIG_HAVE_SYSCALL_TRACEPOINTS),)
56lttng-tracer-objs += lttng-syscalls.o
57endif # CONFIG_HAVE_SYSCALL_TRACEPOINTS
259b6cb3 58
c24a0d71 59ifneq ($(CONFIG_PERF_EVENTS),)
a90917c3 60lttng-tracer-objs += $(shell \
1386746e 61 if [ $(VERSION) -ge 3 \
5ca7b8a3 62 -o \( $(VERSION) -eq 2 -a $(PATCHLEVEL) -ge 6 -a $(SUBLEVEL) -ge 33 \) ] ; then \
1d443b34 63 echo "lttng-context-perf-counters.o" ; fi;)
b4809588 64endif # CONFIG_PERF_EVENTS
c24a0d71 65
20591cf7 66lttng-tracer-objs += $(shell \
725528de
MD
67 if [ $(VERSION) -ge 4 \
68 -o \( $(VERSION) -eq 3 -a $(PATCHLEVEL) -ge 15 -a $(SUBLEVEL) -ge 0 \) ] ; then \
20591cf7
MD
69 echo "lttng-tracepoint.o" ; fi;)
70
6d61b34d 71obj-m += probes/
f3bc08c5 72obj-m += lib/
f3bc08c5 73
b4809588 74endif # CONFIG_TRACEPOINTS
1c8284eb 75
b4809588 76else # KERNELRELEASE
1c8284eb
MD
77 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
78 PWD := $(shell pwd)
2e6246b4 79 CFLAGS = $(EXTCFLAGS)
1c8284eb
MD
80
81default:
72e6c528 82 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
1c8284eb
MD
83
84modules_install:
72e6c528 85 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
1c8284eb
MD
86
87clean:
72e6c528 88 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
1c8284eb 89
23e6a44f 90%.i: %.c
72e6c528 91 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) $@
b4809588 92endif # KERNELRELEASE
This page took 0.032887 seconds and 4 git commands to generate.