Add metadata channel, basic test passes
[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-block.o
17
18 endif
19
20 else
21 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
22 PWD := $(shell pwd)
23 CFLAGS = $(EXTCFLAGS)
24
25 default:
26 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
27
28 modules_install:
29 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
30 /sbin/depmod -a
31
32 clean:
33 $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
34
35 endif
This page took 0.029862 seconds and 5 git commands to generate.