Implement clock plugin support
[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 MAKEFILEDIR = $(shell dirname $(lastword $(MAKEFILE_LIST)))
10
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
13
14
15 #
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
18 # distclean.
19 #
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)
23 endif
24 endif
25
26 include $(MAKEFILEDIR)/Makefile.ABI.workarounds
27
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
34 obj-m += lttng-clock.o
35
36 obj-m += lttng-tracer.o
37 lttng-tracer-objs := lttng-events.o lttng-abi.o \
38 lttng-probes.o lttng-context.o \
39 lttng-context-pid.o lttng-context-procname.o \
40 lttng-context-prio.o lttng-context-nice.o \
41 lttng-context-vpid.o lttng-context-tid.o \
42 lttng-context-vtid.o lttng-context-ppid.o \
43 lttng-context-vppid.o lttng-context-cpu-id.o \
44 lttng-calibrate.o \
45 lttng-context-hostname.o wrapper/random.o \
46 probes/lttng.o wrapper/trace-clock.o \
47 wrapper/page_alloc.o \
48 lttng-tracker-pid.o \
49 lttng-filter.o lttng-filter-interpreter.o \
50 lttng-filter-specialize.o \
51 lttng-filter-validator.o \
52 probes/lttng-probe-user.o
53
54 obj-m += lttng-statedump.o
55 lttng-statedump-objs := lttng-statedump-impl.o wrapper/irqdesc.o \
56 wrapper/fdtable.o
57
58 ifneq ($(CONFIG_HAVE_SYSCALL_TRACEPOINTS),)
59 lttng-tracer-objs += lttng-syscalls.o
60 endif # CONFIG_HAVE_SYSCALL_TRACEPOINTS
61
62 ifneq ($(CONFIG_PERF_EVENTS),)
63 lttng-tracer-objs += $(shell \
64 if [ $(VERSION) -ge 3 \
65 -o \( $(VERSION) -eq 2 -a $(PATCHLEVEL) -ge 6 -a $(SUBLEVEL) -ge 33 \) ] ; then \
66 echo "lttng-context-perf-counters.o" ; fi;)
67 endif # CONFIG_PERF_EVENTS
68
69 lttng-tracer-objs += $(shell \
70 if [ $(VERSION) -ge 4 \
71 -o \( $(VERSION) -eq 3 -a $(PATCHLEVEL) -ge 15 -a $(SUBLEVEL) -ge 0 \) ] ; then \
72 echo "lttng-tracepoint.o" ; fi;)
73
74 obj-m += probes/
75 obj-m += lib/
76
77 endif # CONFIG_TRACEPOINTS
78
79 else # KERNELRELEASE
80 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
81 PWD := $(shell pwd)
82 CFLAGS = $(EXTCFLAGS)
83
84 default:
85 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
86
87 modules_install:
88 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
89
90 clean:
91 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
92
93 %.i: %.c
94 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) $@
95 endif # KERNELRELEASE
This page took 0.0321 seconds and 5 git commands to generate.