probes: blktrace: Check if config options are set
[lttng-modules.git] / probes / Makefile
1 #
2 # Makefile for the LTT probes.
3 # Only build from the package top-level directory. Never use with make directly.
4
5 ifneq ($(KERNELRELEASE),)
6 ifneq ($(CONFIG_TRACEPOINTS),)
7
8 ccflags-y += -I$(PWD)/probes
9 obj-m += lttng-types.o
10
11 obj-m += lttng-probe-lttng.o
12
13 obj-m += lttng-probe-sched.o
14 obj-m += lttng-probe-kvm.o
15 obj-m += lttng-probe-irq.o
16 obj-m += lttng-probe-syscalls.o
17
18 ifneq ($(CONFIG_BLOCK),)
19 ifneq ($(CONFIG_EVENT_TRACING),) # need blk_cmd_buf_len
20 obj-m += lttng-probe-block.o
21 endif
22 endif
23
24 ifneq ($(CONFIG_KPROBES),)
25 obj-m += lttng-kprobes.o
26 endif
27
28 ifneq ($(CONFIG_DYNAMIC_FTRACE),)
29 obj-m += lttng-ftrace.o
30 endif
31
32 endif
33
34 else
35 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
36 PWD := $(shell pwd)
37 CFLAGS = $(EXTCFLAGS)
38
39 default:
40 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
41
42 modules_install:
43 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
44 /sbin/depmod -a
45
46 clean:
47 $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
48
49 endif
This page took 0.029834 seconds and 5 git commands to generate.