Makefile: do not run depmod manually
[lttng-modules.git] / Makefile
CommitLineData
1c8284eb
MD
1#
2# Makefile for the LTT objects.
3#
4
5ifneq ($(KERNELRELEASE),)
11b5a3c2 6ifneq ($(CONFIG_TRACEPOINTS),)
1c8284eb 7
11b5a3c2
MD
8obj-m += ltt-ring-buffer-client-discard.o
9obj-m += ltt-ring-buffer-client-overwrite.o
881833e3 10obj-m += ltt-ring-buffer-metadata-client.o
2db1399a
JD
11obj-m += ltt-ring-buffer-client-mmap-discard.o
12obj-m += ltt-ring-buffer-client-mmap-overwrite.o
13obj-m += ltt-ring-buffer-metadata-mmap-client.o
1c8284eb
MD
14
15obj-m += ltt-relay.o
881833e3 16ltt-relay-objs := ltt-events.o ltt-debugfs-abi.o \
0f9c9909 17 ltt-probes.o ltt-context.o \
c26fddc2 18 lttng-context-pid.o lttng-context-procname.o \
b64bc438
MD
19 lttng-context-prio.o lttng-context-nice.o \
20 lttng-context-vpid.o lttng-context-tid.o \
21 lttng-context-vtid.o lttng-context-ppid.o \
57105fc2 22 lttng-context-vppid.o lttng-calibrate.o
11b5a3c2 23
63728b02
MD
24ifneq ($(CONFIG_HAVE_SYSCALL_TRACEPOINTS),)
25ltt-relay-objs += lttng-syscalls.o
26endif
259b6cb3 27
c24a0d71 28ifneq ($(CONFIG_PERF_EVENTS),)
1d443b34 29ltt-relay-objs += $(shell \
1386746e
MD
30 if [ $(VERSION) -ge 3 \
31 -o \( $(VERSION) -eq 2 -a $(PATCHLEVEL) -ge 6 -a $(SUBLEVEL) -ge 33 \) ] ; then \
1d443b34 32 echo "lttng-context-perf-counters.o" ; fi;)
c24a0d71
MD
33endif
34
6d61b34d 35obj-m += probes/
f3bc08c5 36obj-m += lib/
f3bc08c5 37
1c8284eb
MD
38endif
39
40else
41 KERNELDIR ?= /lib/modules/$(shell uname -r)/build
42 PWD := $(shell pwd)
2e6246b4 43 CFLAGS = $(EXTCFLAGS)
1c8284eb
MD
44
45default:
46 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
47
48modules_install:
49 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
1c8284eb
MD
50
51clean:
52 $(MAKE) -C $(KERNELDIR) M=$(PWD) clean
53
54endif
This page took 0.025597 seconds and 4 git commands to generate.