Fix: trigger build error if CONFIG_TRACEPOINTS is not set
[lttng-modules.git] / Makefile
CommitLineData
1c8284eb
MD
1#
2# Makefile for the LTT objects.
3#
4
5ifneq ($(KERNELRELEASE),)
c8ae85f3
MD
6
7ifeq ($(CONFIG_TRACEPOINTS),)
8$(error The option CONFIG_TRACEPOINTS needs to be enabled in your kernel configuration)
9endif # CONFIG_TRACEPOINTS
1c8284eb 10
e2331485
MD
11KERNELDIR = ${LTTNG_KERNELDIR}
12MAKEFILEDIR = $(shell dirname $(lastword $(MAKEFILE_LIST)))
72e6c528 13
c340f071
MD
14lttng_check_linux_version = $(shell pwd)/include/linux/version.h
15lttng_check_generated_linux_version = $(shell pwd)/include/generated/uapi/linux/version.h
16
e2331485 17
c340f071
MD
18#
19# Check for stale version.h, which can be a leftover from an old Linux
20# kernel tree moved to a newer kernel version, only pruned by make
21# distclean.
22#
23ifneq ($(wildcard $(lttng_check_linux_version)),)
24ifneq ($(wildcard $(lttng_check_generated_linux_version)),)
25$(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)
26endif
27endif
28
e2331485 29include $(MAKEFILEDIR)/Makefile.ABI.workarounds
72e6c528 30
a90917c3
MD
31obj-m += lttng-ring-buffer-client-discard.o
32obj-m += lttng-ring-buffer-client-overwrite.o
33obj-m += lttng-ring-buffer-metadata-client.o
34obj-m += lttng-ring-buffer-client-mmap-discard.o
35obj-m += lttng-ring-buffer-client-mmap-overwrite.o
36obj-m += lttng-ring-buffer-metadata-mmap-client.o
37
38obj-m += lttng-tracer.o
39lttng-tracer-objs := lttng-events.o lttng-abi.o \
40 lttng-probes.o lttng-context.o \
c26fddc2 41 lttng-context-pid.o lttng-context-procname.o \
b64bc438
MD
42 lttng-context-prio.o lttng-context-nice.o \
43 lttng-context-vpid.o lttng-context-tid.o \
44 lttng-context-vtid.o lttng-context-ppid.o \
b3699d90
MD
45 lttng-context-vppid.o lttng-context-cpu-id.o \
46 lttng-calibrate.o \
0c956676 47 lttng-context-hostname.o wrapper/random.o \
e0130fab 48 probes/lttng.o wrapper/trace-clock.o \
389d7070 49 wrapper/page_alloc.o \
07dfc1d0
MD
50 lttng-tracker-pid.o \
51 lttng-filter.o lttng-filter-interpreter.o \
52 lttng-filter-specialize.o \
f127e61e
MD
53 lttng-filter-validator.o \
54 probes/lttng-probe-user.o
11b5a3c2 55
57ede728
MD
56ifneq ($(CONFIG_HAVE_SYSCALL_TRACEPOINTS),)
57lttng-tracer-objs += lttng-syscalls.o
58endif # CONFIG_HAVE_SYSCALL_TRACEPOINTS
259b6cb3 59
c24a0d71 60ifneq ($(CONFIG_PERF_EVENTS),)
a90917c3 61lttng-tracer-objs += $(shell \
1386746e 62 if [ $(VERSION) -ge 3 \
5ca7b8a3 63 -o \( $(VERSION) -eq 2 -a $(PATCHLEVEL) -ge 6 -a $(SUBLEVEL) -ge 33 \) ] ; then \
1d443b34 64 echo "lttng-context-perf-counters.o" ; fi;)
b4809588 65endif # CONFIG_PERF_EVENTS
c24a0d71 66
20591cf7 67lttng-tracer-objs += $(shell \
725528de
MD
68 if [ $(VERSION) -ge 4 \
69 -o \( $(VERSION) -eq 3 -a $(PATCHLEVEL) -ge 15 -a $(SUBLEVEL) -ge 0 \) ] ; then \
20591cf7
MD
70 echo "lttng-tracepoint.o" ; fi;)
71
353f4684
MJ
72obj-m += lttng-statedump.o
73lttng-statedump-objs := lttng-statedump-impl.o wrapper/irqdesc.o \
74 wrapper/fdtable.o
75
6d61b34d 76obj-m += probes/
f3bc08c5 77obj-m += lib/
f3bc08c5 78
b4809588 79else # KERNELRELEASE
1c8284eb
MD
80 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
81 PWD := $(shell pwd)
2e6246b4 82 CFLAGS = $(EXTCFLAGS)
1c8284eb
MD
83
84default:
72e6c528 85 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
1c8284eb
MD
86
87modules_install:
72e6c528 88 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
1c8284eb
MD
89
90clean:
72e6c528 91 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
1c8284eb 92
23e6a44f 93%.i: %.c
72e6c528 94 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) $@
b4809588 95endif # KERNELRELEASE
This page took 0.033133 seconds and 4 git commands to generate.