fix: change = to :=
This commit is contained in:
6
Makefile
6
Makefile
@@ -7,9 +7,9 @@ INSTALL ?= install
|
|||||||
GZIP ?= gzip
|
GZIP ?= gzip
|
||||||
TAR ?= tar
|
TAR ?= tar
|
||||||
|
|
||||||
SRC = $(wildcard src/*.c)
|
SRC := $(wildcard src/*.c)
|
||||||
OBJ = $(addsuffix .o,$(SRC))
|
OBJ := $(addsuffix .o,$(SRC))
|
||||||
DEP = $(addsuffix .d,$(SRC))
|
DEP := $(addsuffix .d,$(SRC))
|
||||||
|
|
||||||
# Set Q to @ to silence commands being printed, unless --no-silent has been set
|
# Set Q to @ to silence commands being printed, unless --no-silent has been set
|
||||||
ifeq (0, $(words $(findstring --no-silent,$(MAKEFLAGS))))
|
ifeq (0, $(words $(findstring --no-silent,$(MAKEFLAGS))))
|
||||||
|
|||||||
Reference in New Issue
Block a user