Add process priority (as shown in /proc) to context
[lttng-modules.git] / Makefile
... / ...
CommitLineData
1#
2# Makefile for the LTT objects.
3#
4
5ifneq ($(KERNELRELEASE),)
6ifneq ($(CONFIG_TRACEPOINTS),)
7
8obj-m += ltt-ring-buffer-client-discard.o
9obj-m += ltt-ring-buffer-client-overwrite.o
10obj-m += ltt-ring-buffer-metadata-client.o
11
12obj-m += ltt-relay.o
13ltt-relay-objs := ltt-events.o ltt-debugfs-abi.o \
14 ltt-probes.o ltt-core.o ltt-context.o \
15 lttng-context-pid.o lttng-context-comm.o
16
17obj-m += probes/
18obj-m += lib/
19
20endif
21
22else
23 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
24 PWD := $(shell pwd)
25 CFLAGS = $(EXTCFLAGS)
26
27default:
28 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
29
30modules_install:
31 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
32 /sbin/depmod -a
33
34clean:
35 $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
36
37endif
This page took 0.022226 seconds and 4 git commands to generate.