From 91a67def993b0535c1c4d6fbe2154aa6955463dc Mon Sep 17 00:00:00 2001 From: proddy Date: Sat, 13 Dec 2025 11:19:45 +0100 Subject: [PATCH] minor fix --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 7bbdc2383..51e990b4c 100644 --- a/Makefile +++ b/Makefile @@ -138,6 +138,7 @@ DEPFLAGS += -MF $(BUILD)/$*.d -MT $@ LINK.o = $(LD) $(LDFLAGS) $(LDLIBS) $^ -o $@ COMPILE.c = $(CC) $(C_STANDARD) $(CFLAGS) $(DEPFLAGS) -c $< -o $@ COMPILE.cpp = $(CXX) $(CXX_STANDARD) $(CXXFLAGS) $(DEPFLAGS) -c $< -o $@ +COMPILE.s = $(CC) $(CFLAGS) $(DEPFLAGS) -c $< -o $@ #---------------------------------------------------------------------- # Special Built-in Target @@ -181,6 +182,7 @@ $(BUILD)/%.o: %.cpp $(BUILD)/%.o: %.s @mkdir -p $(@D) + @$(ECHO) Compiling $@ @$(COMPILE.s) cppcheck: $(SOURCES)