Skip to content
Snippets Groups Projects
Commit a7bc9afc authored by Sebastian Meiling's avatar Sebastian Meiling
Browse files

make: allow for DEVELHELP env variable

parent 9858e9e8
No related branches found
No related tags found
No related merge requests found
......@@ -111,6 +111,14 @@ endif
QQ=
# Set this to 1 to enable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
DEVELHELP ?= 0
ifeq ($(DEVELHELP),1)
CFLAGS += -DDEVELHELP
endif
# Fail on warnings. Can be overridden by `make WERROR=0`.
WERROR ?= 1
export WERROR
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment