From: Martin Quinson Date: Sun, 11 Mar 2018 10:41:10 +0000 (+0100) Subject: tuto makefile: typo X-Git-Tag: v3.19~94 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/5fc755a6d157fdccfaa6fb951ecd2884abc8cd77?ds=sidebyside tuto makefile: typo --- diff --git a/doc/tuto-msg/Makefile b/doc/tuto-msg/Makefile index 5e483e8953..cae27abb1c 100644 --- a/doc/tuto-msg/Makefile +++ b/doc/tuto-msg/Makefile @@ -12,11 +12,11 @@ CC ?= gcc # Your compiler (on Mac, use clang instead) all: masterworker -WARNING = -Wshadow -Wcast-align -Waggregate-return -Wmissing-prototypes \ +WARNINGS = -Wshadow -Wcast-align -Waggregate-return -Wmissing-prototypes \ -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes \ -Wmissing-declarations -Wmissing-noreturn -Wredundant-decls \ -Wnested-externs -Wpointer-arith -Wwrite-strings -WARNING += -Werror # Comment that line to not be in paranoid mode +WARNINGS += -Werror # Comment that line to not be in paranoid mode # CFLAGS = -std=gnu99 -g -O0 $(WARNINGS) $(EXTRA_CFLAGS) # Use this line to make debugging easier CFLAGS = -std=gnu99 -g -O2 $(WARNINGS) $(EXTRA_CFLAGS) # Use this line to get better performance