detailed syscall tracing (work in progress)
[lttng-modules.git] / Makefile
1 #
2 # Makefile for the LTT objects.
3 #
4
5 ifneq ($(KERNELRELEASE),)
6 ifneq ($(CONFIG_TRACEPOINTS),)
7
8 obj-m += ltt-ring-buffer-client-discard.o
9 obj-m += ltt-ring-buffer-client-overwrite.o
10 obj-m += ltt-ring-buffer-metadata-client.o
11 obj-m += ltt-ring-buffer-client-mmap-discard.o
12 obj-m += ltt-ring-buffer-client-mmap-overwrite.o
13 obj-m += ltt-ring-buffer-metadata-mmap-client.o
14
15 obj-m += ltt-relay.o
16 ltt-relay-objs := ltt-events.o ltt-debugfs-abi.o \
17 ltt-probes.o ltt-context.o \
18 lttng-context-pid.o lttng-context-comm.o \
19 lttng-context-prio.o lttng-context-nice.o \
20 lttng-context-vpid.o lttng-context-tid.o \
21 lttng-context-vtid.o lttng-context-ppid.o \
22 lttng-context-vppid.o lttng-calibrate.o
23
24 #add for testing lttng-syscalls.o
25
26 ifneq ($(CONFIG_PERF_EVENTS),)
27 ltt-relay-objs += $(shell \
28 if [ $(VERSION) -ge 3 \
29 -o \( $(VERSION) -eq 2 -a $(PATCHLEVEL) -ge 6 -a $(SUBLEVEL) -ge 33 \) ] ; then \
30 echo "lttng-context-perf-counters.o" ; fi;)
31 endif
32
33 obj-m += probes/
34 obj-m += lib/
35
36 endif
37
38 else
39 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
40 PWD := $(shell pwd)
41 CFLAGS = $(EXTCFLAGS)
42
43 default:
44 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
45
46 modules_install:
47 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
48 /sbin/depmod -a
49
50 clean:
51 $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
52
53 endif
This page took 0.030172 seconds and 5 git commands to generate.