Skip to content

Commit

Permalink
Merge pull request #1530 from LudwigOrtmann/examples-develhelp
Browse files Browse the repository at this point in the history
examples: use DEVELHELP per default
  • Loading branch information
LudwigKnuepfer committed Aug 1, 2014
2 parents 4e2640f + 106137f commit c63eaab
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 10 deletions.
4 changes: 2 additions & 2 deletions examples/ccn-lite-client/Makefile
Expand Up @@ -19,10 +19,10 @@ RIOTBASE ?= $(CURDIR)/../..
# with the target all-valgrind instead of all:
# make -B clean all-valgrind

# Uncomment this to enable code in RIOT that does safety checking
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
#CFLAGS += -DDEVELHELP
CFLAGS += -DDEVELHELP

# Change this to 0 show compiler invocation lines by default:
QUIET ?= 1
Expand Down
4 changes: 2 additions & 2 deletions examples/ccn-lite-relay/Makefile
Expand Up @@ -19,10 +19,10 @@ RIOTBASE ?= $(CURDIR)/../..
# with the target all-valgrind instead of all:
# make -B clean all-valgrind

# Uncomment this to enable code in RIOT that does safety checking
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
#CFLAGS += -DDEVELHELP
CFLAGS += -DDEVELHELP

# Change this to 0 show compiler invocation lines by default:
QUIET ?= 1
Expand Down
4 changes: 2 additions & 2 deletions examples/default/Makefile
Expand Up @@ -19,10 +19,10 @@ RIOTBASE ?= $(CURDIR)/../..
# with the target all-valgrind instead of all:
# make -B clean all-valgrind

# Uncomment this to enable code in RIOT that does safety checking
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
#CFLAGS += -DDEVELHELP
CFLAGS += -DDEVELHELP

# Change this to 0 show compiler invocation lines by default:
QUIET ?= 1
Expand Down
5 changes: 5 additions & 0 deletions examples/hello-world/Makefile
Expand Up @@ -7,6 +7,11 @@ BOARD ?= native
# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../..

# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP

# Change this to 0 show compiler invocation lines by default:
QUIET ?= 1

Expand Down
5 changes: 5 additions & 0 deletions examples/ipc_pingpong/Makefile
Expand Up @@ -7,6 +7,11 @@ BOARD ?= native
# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../..

# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP

# Change this to 0 show compiler invocation lines by default:
QUIET ?= 1

Expand Down
4 changes: 2 additions & 2 deletions examples/riot_and_cpp/Makefile
Expand Up @@ -19,10 +19,10 @@ RIOTBASE ?= $(CURDIR)/../..
# with the target all-valgrind instead of all:
# make -B clean all-valgrind

# Uncomment this to enable code in RIOT that does safety checking
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
#CFLAGS += -DDEVELHELP
CFLAGS += -DDEVELHELP

# Change this to 0 show compiler invocation lines by default:
QUIET ?= 1
Expand Down
4 changes: 2 additions & 2 deletions examples/rpl_udp/Makefile
Expand Up @@ -19,10 +19,10 @@ RIOTBASE ?= $(CURDIR)/../..
# with the target all-valgrind instead of all:
# make -B clean all-valgrind

# Uncomment this to enable code in RIOT that does safety checking
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
#CFLAGS += -DDEVELHELP
CFLAGS += -DDEVELHELP

# Change this to 0 show compiler invocation lines by default:
QUIET ?= 1
Expand Down

0 comments on commit c63eaab

Please sign in to comment.