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