Move event notifier and counter structures to private header
[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)
18CFLAGS = $(EXTCFLAGS)
1c8284eb 19
87d1b66f
MJ
20default: modules
21
22modules:
600da0c9 23 $(MAKE) -C $(KERNELDIR) M=$(PWD)/src CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m modules
1c8284eb
MD
24
25modules_install:
600da0c9 26 $(MAKE) -C $(KERNELDIR) M=$(PWD)/src CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m modules_install
1c8284eb
MD
27
28clean:
600da0c9 29 $(MAKE) -C $(KERNELDIR) M=$(PWD)/src clean
1c8284eb 30
4c239bd0
FD
31# The following targets are used for development and debugging. They are not
32# part of the build system.
23e6a44f 33%.i: %.c
c93e1527 34 $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m $@
a8907e9a 35
4c239bd0
FD
36%.o: %.c
37 $(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m $@
38
b4809588 39endif # KERNELRELEASE
This page took 0.042659 seconds and 4 git commands to generate.