Add disabled compat syscalls detail (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 ifneq ($(CONFIG_HAVE_SYSCALL_TRACEPOINTS),)
25 ltt-relay-objs += lttng-syscalls.o
26 #ltt-relay-objs += lttng-compat-syscalls.o
27 endif
28
29 ifneq ($(CONFIG_PERF_EVENTS),)
30 ltt-relay-objs += $(shell \
31 if [ $(VERSION) -ge 3 \
32 -o \( $(VERSION) -eq 2 -a $(PATCHLEVEL) -ge 6 -a $(SUBLEVEL) -ge 33 \) ] ; then \
33 echo "lttng-context-perf-counters.o" ; fi;)
34 endif
35
36 obj-m += probes/
37 obj-m += lib/
38
39 endif
40
41 else
42 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
43 PWD := $(shell pwd)
44 CFLAGS = $(EXTCFLAGS)
45
46 default:
47 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
48
49 modules_install:
50 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
51 /sbin/depmod -a
52
53 clean:
54 $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
55
56 endif
This page took 0.030046 seconds and 5 git commands to generate.