summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2019-02-16 16:24:47 -0500
committerRangi <remy.oukaour+rangi42@gmail.com>2019-02-16 16:24:47 -0500
commit1e5c95d8d42d5cf4e13afd204a3d6e18e5c030bb (patch)
treeca7c38b740f608dc8a904b3356eaeabfbb0cb91b /tools/Makefile
parent2449a17addb1e720b2d2190060bb5acea8b2859a (diff)
Silence gcc warnings, even in Travis
-Wno-missing-field-initializers is needed because of false positives over {0} initialization
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile
index d29d5d748..768f8912e 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -1,7 +1,7 @@
.PHONY: all clean
CC := gcc
-CFLAGS := -O3 -std=c99 -Wall -Wextra
+CFLAGS := -O3 -std=c99 -Wall -Wextra -Wno-missing-field-initializers
tools := \
lzcomp \