From 50984b44b96011427045f6e294b6b09ba7b8ac1d Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Fri, 11 Dec 2015 16:26:22 -0500 Subject: [PATCH 1/1] Rename sub makefiles to Kbuild This follows kbuild's convention and makes it clear that the make command has to be run from the base directory. Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers --- .../syscalls/lttng-syscalls-extractor/{Makefile => Kbuild} | 0 lib/{Makefile => Kbuild} | 2 ++ probes/{Makefile => Kbuild} | 2 ++ 3 files changed, 4 insertions(+) rename instrumentation/syscalls/lttng-syscalls-extractor/{Makefile => Kbuild} (100%) rename lib/{Makefile => Kbuild} (96%) rename probes/{Makefile => Kbuild} (99%) diff --git a/instrumentation/syscalls/lttng-syscalls-extractor/Makefile b/instrumentation/syscalls/lttng-syscalls-extractor/Kbuild similarity index 100% rename from instrumentation/syscalls/lttng-syscalls-extractor/Makefile rename to instrumentation/syscalls/lttng-syscalls-extractor/Kbuild diff --git a/lib/Makefile b/lib/Kbuild similarity index 96% rename from lib/Makefile rename to lib/Kbuild index bb51706f..aee52a2f 100644 --- a/lib/Makefile +++ b/lib/Kbuild @@ -13,3 +13,5 @@ lttng-lib-ring-buffer-objs := \ ringbuffer/ring_buffer_mmap.o \ prio_heap/lttng_prio_heap.o \ ../wrapper/splice.o + +# vim:syntax=make diff --git a/probes/Makefile b/probes/Kbuild similarity index 99% rename from probes/Makefile rename to probes/Kbuild index 6091426b..13e7bd80 100644 --- a/probes/Makefile +++ b/probes/Kbuild @@ -263,3 +263,5 @@ ifneq ($(CONFIG_DYNAMIC_FTRACE),) endif # CONFIG_DYNAMIC_FTRACE obj-$(CONFIG_LTTNG) += lttng-test.o + +# vim:syntax=make -- 2.34.1