Add metadata channel, basic test passes
[lttng-modules.git] / probes / Makefile
... / ...
CommitLineData
1#
2# Makefile for the LTT probes.
3# Only build from the package top-level directory. Never use with make directly.
4
5ifneq ($(KERNELRELEASE),)
6ifneq ($(CONFIG_TRACEPOINTS),)
7
8ccflags-y += -I$(PWD)/probes
9obj-m += lttng-types.o
10
11obj-m += lttng-probe-lttng.o
12
13obj-m += lttng-probe-sched.o
14obj-m += lttng-probe-kvm.o
15obj-m += lttng-probe-irq.o
16obj-m += lttng-probe-block.o
17
18endif
19
20else
21 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
22 PWD := $(shell pwd)
23 CFLAGS = $(EXTCFLAGS)
24
25default:
26 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
27
28modules_install:
29 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
30 /sbin/depmod -a
31
32clean:
33 $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
34
35endif
This page took 0.022712 seconds and 4 git commands to generate.