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