fix: mm: move kvmalloc-related functions to slab.h (v5.16)
[lttng-modules.git] / Makefile
CommitLineData
b7cdc182 1# SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
1c8284eb
MD
2
3ifneq ($(KERNELRELEASE),)
1c8284eb 4
600da0c9
MJ
5# This part of the Makefile is used when called by the kernel build system
6# and defines the modules to be built.
7
8obj-$(CONFIG_LTTNG) += src/
c340f071 9
a8907e9a 10else # KERNELRELEASE
b37d476e 11
a8907e9a
MJ
12# This part of the Makefile is used when the 'make' command is runned in the
13# base directory of the lttng-modules sources. It sets some environment and
14# calls the kernel build system to build the actual modules.
1c8284eb 15
a8907e9a
MJ
16KERNELDIR ?= /lib/modules/$(shell uname -r)/build
17PWD := $(shell pwd)
1c8284eb 18
c1551e57
MJ
19# Experimental bitwise enum defaults to disabled.
20CONFIG_LTTNG_EXPERIMENTAL_BITWISE_ENUM ?= n
21
22# Emulate Kconfig behavior of setting defines for config options.
23LKCPPFLAGS = $(KCPPFLAGS)
24ifeq ($(CONFIG_LTTNG_EXPERIMENTAL_BITWISE_ENUM),y)
25LKCPPFLAGS += -DCONFIG_LTTNG_EXPERIMENTAL_BITWISE_ENUM=y
26endif
27
87d1b66f
MJ
28default: modules
29
30modules:
c1551e57
MJ
31 $(MAKE) -C $(KERNELDIR) M=$(PWD)/src \
32 CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m \
33 KCPPFLAGS='$(LKCPPFLAGS)' \
34 modules
1c8284eb
MD
35
36modules_install:
c1551e57
MJ
37 $(MAKE) -C $(KERNELDIR) M=$(PWD)/src \
38 CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m \
39 KCPPFLAGS='$(LKCPPFLAGS)' \
40 modules_install
1c8284eb
MD
41
42clean:
600da0c9 43 $(MAKE) -C $(KERNELDIR) M=$(PWD)/src clean
1c8284eb 44
4c239bd0
FD
45# The following targets are used for development and debugging. They are not
46# part of the build system.
23e6a44f 47%.i: %.c
c1551e57
MJ
48 $(MAKE) -C $(KERNELDIR) M=$(PWD) \
49 CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m \
50 KCPPFLAGS='$(LKCPPFLAGS)' \
51 $@
a8907e9a 52
4c239bd0 53%.o: %.c
c1551e57
MJ
54 $(MAKE) -C $(KERNELDIR) M=$(PWD) \
55 CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m \
56 KCPPFLAGS='$(LKCPPFLAGS)' \
57 $@
4c239bd0 58
b4809588 59endif # KERNELRELEASE
This page took 0.046705 seconds and 4 git commands to generate.