From c950418e1e6d3edf4c24e3cf49094927f69c76be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20M=C3=BCller?= Date: Tue, 4 Apr 2023 16:34:32 +0200 Subject: [PATCH] Makefile: Add `all` target as default before including `Makfile.local` --- Makefile | 2 ++ Makefile.win | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Makefile b/Makefile index fe714d2ba393..61d4ddc4c610 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +all: + -include Makefile.local # for optional local options e.g. threads # Recipes for this Makefile diff --git a/Makefile.win b/Makefile.win index be012b422db8..481df6689e37 100644 --- a/Makefile.win +++ b/Makefile.win @@ -1,3 +1,5 @@ +all: + -include Makefile.win.local # for optional local options e.g. threads # Recipes for this Makefile