X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=Makefile;h=37eb389b4771a12331e5a85e28b59ecb99c154ea;hb=e2d5dbc7d09c7aa4f7c391fcdd4dfc95ba1ed326;hp=01b0e7ee1b02d0f45e08b305cf45b77b98a9f7b5;hpb=becb1a77f72c28357fc6509c1ec25dc8d4804b2c;p=lttng-modules.git diff --git a/Makefile b/Makefile index 01b0e7ee..37eb389b 100644 --- a/Makefile +++ b/Makefile @@ -1,37 +1,34 @@ -# -# Makefile for the LTT objects. -# +# SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only) ifneq ($(KERNELRELEASE),) -ifneq ($(CONFIG_TRACEPOINTS),) -obj-m += ltt-ring-buffer-client-discard.o -obj-m += ltt-ring-buffer-client-overwrite.o -obj-m += ltt-ring-buffer-metadata-client.o +# This part of the Makefile is used when called by the kernel build system +# and defines the modules to be built. -obj-m += ltt-relay.o -ltt-relay-objs := ltt-events.o ltt-debugfs-abi.o \ - ltt-probes.o ltt-core.o ltt-context.o \ - lttng-context-pid.o +obj-$(CONFIG_LTTNG) += src/ -obj-m += probes/ -obj-m += lib/ +else # KERNELRELEASE -endif +# This part of the Makefile is used when the 'make' command is runned in the +# base directory of the lttng-modules sources. It sets some environment and +# calls the kernel build system to build the actual modules. -else - KERNELDIR ?= /lib/modules/$(shell uname -r)/build - PWD := $(shell pwd) - CFLAGS = $(EXTCFLAGS) +KERNELDIR ?= /lib/modules/$(shell uname -r)/build +PWD := $(shell pwd) +CFLAGS = $(EXTCFLAGS) -default: - $(MAKE) -C $(KERNELDIR) M=$(PWD) modules +default: modules + +modules: + $(MAKE) -C $(KERNELDIR) M=$(PWD)/src CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m modules modules_install: - $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install - /sbin/depmod -a + $(MAKE) -C $(KERNELDIR) M=$(PWD)/src CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m modules_install clean: - $(MAKE) -C $(KERNELDIR) M=$(PWD) clean + $(MAKE) -C $(KERNELDIR) M=$(PWD)/src clean + +%.i: %.c + $(MAKE) -C $(KERNELDIR) M=$(PWD)/src CONFIG_LTTNG=m CONFIG_LTTNG_CLOCK_PLUGIN_TEST=m $@ -endif +endif # KERNELRELEASE