Implement wrapper around get_pfnblock_flags_mask
[lttng-modules.git] / Makefile
CommitLineData
1c8284eb
MD
1#
2# Makefile for the LTT objects.
3#
4
5ifneq ($(KERNELRELEASE),)
11b5a3c2 6ifneq ($(CONFIG_TRACEPOINTS),)
1c8284eb 7
c340f071
MD
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
a90917c3
MD
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 \
c26fddc2 32 lttng-context-pid.o lttng-context-procname.o \
b64bc438
MD
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 \
a82c63f1 36 lttng-context-vppid.o lttng-calibrate.o \
0c956676 37 lttng-context-hostname.o wrapper/random.o \
e0130fab 38 probes/lttng.o wrapper/trace-clock.o \
389d7070 39 wrapper/page_alloc.o \
07dfc1d0
MD
40 lttng-tracker-pid.o \
41 lttng-filter.o lttng-filter-interpreter.o \
42 lttng-filter-specialize.o \
f127e61e
MD
43 lttng-filter-validator.o \
44 probes/lttng-probe-user.o
11b5a3c2 45
c337ddc2 46obj-m += lttng-statedump.o
361c023a
MD
47lttng-statedump-objs := lttng-statedump-impl.o wrapper/irqdesc.o \
48 wrapper/fdtable.o
c337ddc2 49
57ede728
MD
50ifneq ($(CONFIG_HAVE_SYSCALL_TRACEPOINTS),)
51lttng-tracer-objs += lttng-syscalls.o
52endif # CONFIG_HAVE_SYSCALL_TRACEPOINTS
259b6cb3 53
c24a0d71 54ifneq ($(CONFIG_PERF_EVENTS),)
a90917c3 55lttng-tracer-objs += $(shell \
1386746e 56 if [ $(VERSION) -ge 3 \
5ca7b8a3 57 -o \( $(VERSION) -eq 2 -a $(PATCHLEVEL) -ge 6 -a $(SUBLEVEL) -ge 33 \) ] ; then \
1d443b34 58 echo "lttng-context-perf-counters.o" ; fi;)
b4809588 59endif # CONFIG_PERF_EVENTS
c24a0d71 60
20591cf7 61lttng-tracer-objs += $(shell \
725528de
MD
62 if [ $(VERSION) -ge 4 \
63 -o \( $(VERSION) -eq 3 -a $(PATCHLEVEL) -ge 15 -a $(SUBLEVEL) -ge 0 \) ] ; then \
20591cf7
MD
64 echo "lttng-tracepoint.o" ; fi;)
65
6d61b34d 66obj-m += probes/
f3bc08c5 67obj-m += lib/
f3bc08c5 68
b4809588 69endif # CONFIG_TRACEPOINTS
1c8284eb 70
b4809588 71else # KERNELRELEASE
1c8284eb
MD
72 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
73 PWD := $(shell pwd)
2e6246b4 74 CFLAGS = $(EXTCFLAGS)
1c8284eb
MD
75
76default:
77 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
78
79modules_install:
80 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
1c8284eb
MD
81
82clean:
83 $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
84
23e6a44f
FG
85%.i: %.c
86 $(MAKE) -C $(KERNELDIR) M=$(PWD) $@
b4809588 87endif # KERNELRELEASE
This page took 0.03132 seconds and 4 git commands to generate.