Implement cpu_id context for filtering
[lttng-modules.git] / Makefile
1 #
2 # Makefile for the LTT objects.
3 #
4
5 ifneq ($(KERNELRELEASE),)
6 ifneq ($(CONFIG_TRACEPOINTS),)
7
8 KERNELDIR=${LTTNG_KERNELDIR}
9
10 lttng_check_linux_version = $(shell pwd)/include/linux/version.h
11 lttng_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 #
18 ifneq ($(wildcard $(lttng_check_linux_version)),)
19 ifneq ($(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)
21 endif
22 endif
23
24 include $(KBUILD_EXTMOD)/Makefile.ABI.workarounds
25
26 obj-m += lttng-ring-buffer-client-discard.o
27 obj-m += lttng-ring-buffer-client-overwrite.o
28 obj-m += lttng-ring-buffer-metadata-client.o
29 obj-m += lttng-ring-buffer-client-mmap-discard.o
30 obj-m += lttng-ring-buffer-client-mmap-overwrite.o
31 obj-m += lttng-ring-buffer-metadata-mmap-client.o
32
33 obj-m += lttng-tracer.o
34 lttng-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-context-cpu-id.o \
41 lttng-calibrate.o \
42 lttng-context-hostname.o wrapper/random.o \
43 probes/lttng.o wrapper/trace-clock.o \
44 wrapper/page_alloc.o \
45 lttng-tracker-pid.o \
46 lttng-filter.o lttng-filter-interpreter.o \
47 lttng-filter-specialize.o \
48 lttng-filter-validator.o \
49 probes/lttng-probe-user.o
50
51 obj-m += lttng-statedump.o
52 lttng-statedump-objs := lttng-statedump-impl.o wrapper/irqdesc.o \
53 wrapper/fdtable.o
54
55 ifneq ($(CONFIG_HAVE_SYSCALL_TRACEPOINTS),)
56 lttng-tracer-objs += lttng-syscalls.o
57 endif # CONFIG_HAVE_SYSCALL_TRACEPOINTS
58
59 ifneq ($(CONFIG_PERF_EVENTS),)
60 lttng-tracer-objs += $(shell \
61 if [ $(VERSION) -ge 3 \
62 -o \( $(VERSION) -eq 2 -a $(PATCHLEVEL) -ge 6 -a $(SUBLEVEL) -ge 33 \) ] ; then \
63 echo "lttng-context-perf-counters.o" ; fi;)
64 endif # CONFIG_PERF_EVENTS
65
66 lttng-tracer-objs += $(shell \
67 if [ $(VERSION) -ge 4 \
68 -o \( $(VERSION) -eq 3 -a $(PATCHLEVEL) -ge 15 -a $(SUBLEVEL) -ge 0 \) ] ; then \
69 echo "lttng-tracepoint.o" ; fi;)
70
71 obj-m += probes/
72 obj-m += lib/
73
74 endif # CONFIG_TRACEPOINTS
75
76 else # KERNELRELEASE
77 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
78 PWD := $(shell pwd)
79 CFLAGS = $(EXTCFLAGS)
80
81 default:
82 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
83
84 modules_install:
85 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
86
87 clean:
88 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
89
90 %.i: %.c
91 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) $@
92 endif # KERNELRELEASE
This page took 0.030676 seconds and 5 git commands to generate.