From b5514bedffbc7a71e1117375c4aee15d63dd5a62 Mon Sep 17 00:00:00 2001 From: Chris Osborn Date: Mon, 22 Sep 2025 10:03:05 -0700 Subject: [PATCH] Restore `all:` to being the default target. --- makefiles/build.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makefiles/build.mk b/makefiles/build.mk index 4e7247d..8224ed4 100644 --- a/makefiles/build.mk +++ b/makefiles/build.mk @@ -129,14 +129,14 @@ CHANGELOG = Changelog.md # global PLATFORM custom settings -include ./makefiles/custom-$(CURRENT_PLATFORM).mk -# allow for application specific config --include ./application.mk - .SUFFIXES: .PHONY: all clean release $(PROGRAM_TGT) $(ALL_TASKS) all: $(ALL_TASKS) $(PROGRAM_TGT) +# allow for application specific config +-include ./application.mk + -include $(DEPENDS) $(OBJDIR):