From eda3495acfe98a83a9bbd534b39a7db4c2cf8437 Mon Sep 17 00:00:00 2001 From: Quinn Date: Sun, 25 Jan 2026 12:37:13 +0100 Subject: [PATCH] fix: change `=` to `:=` --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 494a7d8..90ace5f 100644 --- a/Makefile +++ b/Makefile @@ -7,9 +7,9 @@ INSTALL ?= install GZIP ?= gzip TAR ?= tar -SRC = $(wildcard src/*.c) -OBJ = $(addsuffix .o,$(SRC)) -DEP = $(addsuffix .d,$(SRC)) +SRC := $(wildcard src/*.c) +OBJ := $(addsuffix .o,$(SRC)) +DEP := $(addsuffix .d,$(SRC)) # Set Q to @ to silence commands being printed, unless --no-silent has been set ifeq (0, $(words $(findstring --no-silent,$(MAKEFLAGS))))