fix: change = to :=
This commit is contained in:
6
Makefile
6
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))))
|
||||
|
||||
Reference in New Issue
Block a user