fix: change = to :=

This commit is contained in:
2026-01-25 12:37:13 +01:00
parent 1448916be3
commit eda3495acf

View File

@@ -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))))