Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/littlefs-project/littlefs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index bf047f1..4592a40 100644
--- a/Makefile
+++ b/Makefile
@@ -14,15 +14,15 @@ TEST := $(patsubst tests/%.sh,%,$(wildcard tests/test_*))
SHELL = /bin/bash -o pipefail
ifdef DEBUG
-CFLAGS += -O0 -g3
+override CFLAGS += -O0 -g3
else
-CFLAGS += -Os
+override CFLAGS += -Os
endif
ifdef WORD
-CFLAGS += -m$(WORD)
+override CFLAGS += -m$(WORD)
endif
-CFLAGS += -I.
-CFLAGS += -std=c99 -Wall -pedantic
+override CFLAGS += -I.
+override CFLAGS += -std=c99 -Wall -pedantic
all: $(TARGET)