Set DEBUG=0 by default.

This commit is contained in:
László Monda
2018-05-07 23:56:28 +02:00
parent 455c1a30cb
commit 970f622bff

View File

@@ -120,7 +120,7 @@ else
endif
# Check if the DEBUG environment variable is set.
DEBUG ?= 1
DEBUG ?= 0
ifeq ($(DEBUG),1)
CFLAGS += -O3 -g3 -DDEBUG
else