Version 2.6.4
[lttng-modules.git] / Makefile
CommitLineData
1c8284eb
MD
1#
2# Makefile for the LTT objects.
3#
4
5ifneq ($(KERNELRELEASE),)
11b5a3c2 6ifneq ($(CONFIG_TRACEPOINTS),)
1c8284eb 7
f5ad35ce
MD
8KERNELDIR = ${LTTNG_KERNELDIR}
9MAKEFILEDIR = $(shell dirname $(lastword $(MAKEFILE_LIST)))
58ee8fea 10
c340f071
MD
11lttng_check_linux_version = $(shell pwd)/include/linux/version.h
12lttng_check_generated_linux_version = $(shell pwd)/include/generated/uapi/linux/version.h
13
f5ad35ce 14
c340f071
MD
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
f5ad35ce 26include $(MAKEFILEDIR)/Makefile.ABI.workarounds
58ee8fea 27
a90917c3
MD
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 \
c26fddc2 38 lttng-context-pid.o lttng-context-procname.o \
b64bc438
MD
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 \
a82c63f1 42 lttng-context-vppid.o lttng-calibrate.o \
0c956676 43 lttng-context-hostname.o wrapper/random.o \
165eee70
MD
44 probes/lttng.o wrapper/trace-clock.o \
45 wrapper/page_alloc.o
11b5a3c2 46
c337ddc2 47obj-m += lttng-statedump.o
361c023a
MD
48lttng-statedump-objs := lttng-statedump-impl.o wrapper/irqdesc.o \
49 wrapper/fdtable.o
c337ddc2 50
63728b02 51ifneq ($(CONFIG_HAVE_SYSCALL_TRACEPOINTS),)
7b8ea3a5 52lttng-tracer-objs += lttng-syscalls.o probes/lttng-probe-user.o
b4809588 53endif # CONFIG_HAVE_SYSCALL_TRACEPOINTS
259b6cb3 54
c24a0d71 55ifneq ($(CONFIG_PERF_EVENTS),)
a90917c3 56lttng-tracer-objs += $(shell \
1386746e 57 if [ $(VERSION) -ge 3 \
5ca7b8a3 58 -o \( $(VERSION) -eq 2 -a $(PATCHLEVEL) -ge 6 -a $(SUBLEVEL) -ge 33 \) ] ; then \
1d443b34 59 echo "lttng-context-perf-counters.o" ; fi;)
b4809588 60endif # CONFIG_PERF_EVENTS
c24a0d71 61
20591cf7 62lttng-tracer-objs += $(shell \
821a8870
MD
63 if [ $(VERSION) -ge 4 \
64 -o \( $(VERSION) -eq 3 -a $(PATCHLEVEL) -ge 15 -a $(SUBLEVEL) -ge 0 \) ] ; then \
20591cf7
MD
65 echo "lttng-tracepoint.o" ; fi;)
66
6d61b34d 67obj-m += probes/
f3bc08c5 68obj-m += lib/
f3bc08c5 69
b4809588 70endif # CONFIG_TRACEPOINTS
1c8284eb 71
b4809588 72else # KERNELRELEASE
1c8284eb
MD
73 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
74 PWD := $(shell pwd)
2e6246b4 75 CFLAGS = $(EXTCFLAGS)
1c8284eb
MD
76
77default:
58ee8fea 78 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
1c8284eb
MD
79
80modules_install:
58ee8fea 81 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
1c8284eb
MD
82
83clean:
58ee8fea 84 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
1c8284eb 85
23e6a44f 86%.i: %.c
58ee8fea 87 LTTNG_KERNELDIR=$(KERNELDIR) $(MAKE) -C $(KERNELDIR) M=$(PWD) $@
b4809588 88endif # KERNELRELEASE
This page took 0.032649 seconds and 4 git commands to generate.