diff options
author | Richard van der Hoff <richard@matrix.org> | 2016-05-18 18:03:28 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2016-05-23 18:08:22 +0100 |
commit | e21d5cb2229c8c868fad896c08e7c25c103b824a (patch) | |
tree | 276b6e10159876c3874a8d7ee5ef64f60411b036 /Makefile | |
parent | ea130cae0db3d68a49ae2059b2568eb8504e84b6 (diff) |
Fix warnings and set -Werror
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -24,9 +24,9 @@ JS_PRE := $(wildcard javascript/*pre.js) JS_POST := $(wildcard javascript/*post.js) CPPFLAGS += -Iinclude -Ilib -CFLAGS += -Wall -std=c89 -fPIC -CXXFLAGS += -Wall -std=c++11 -fPIC -LDFLAGS += -Wall +CFLAGS += -Wall -Werror -std=c89 -fPIC +CXXFLAGS += -Wall -Werror -std=c++11 -fPIC +LDFLAGS += -Wall -Werror EMCCFLAGS = --closure 1 --memory-init-file 0 -s NO_FILESYSTEM=1 -s INVOKE_RUN=0 # NO_BROWSER is kept for compatibility with emscripten 1.35.24, but is no |