Add units to debugfs abi header
[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
17obj-m += lttng-probe-syscalls.o
18
19obj-m += lttng-kprobes.o
20
21ifneq ($(CONFIG_DYNAMIC_FTRACE),)
22obj-m += lttng-ftrace.o
23endif
24
25endif
26
27else
28 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
29 PWD := $(shell pwd)
30 CFLAGS = $(EXTCFLAGS)
31
32default:
33 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
34
35modules_install:
36 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
37 /sbin/depmod -a
38
39clean:
40 $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
41
42endif
This page took 0.022083 seconds and 4 git commands to generate.