From 98f3415e0d85bf25ba9d1db83508bfa0938263da Mon Sep 17 00:00:00 2001 From: Jose Martins Date: Fri, 29 Sep 2023 00:34:17 +0100 Subject: [PATCH] feat(ci.mk): allow inclusion before 'all' target This modification allows the inclusion of *ci.mk* before the definition of the first Makefile target, which is assumes is `all`, the typical Makefile convention. Signed-off-by: Jose Martins --- ci.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci.mk b/ci.mk index 20daf8f..70218b6 100644 --- a/ci.mk +++ b/ci.mk @@ -14,6 +14,8 @@ CLANG_VERSION?=14 CLANG-FORMAT?=clang-format-$(CLANG_VERSION) CLANG-TIDY?=clang-tidy-$(CLANG_VERSION) +all: + .SECONDEXPANSION: #############################################################################