From 59e81eeb7f01254b39bc7cbf2c282b6a451a896a Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Thu, 22 Nov 2012 20:46:38 +0000 Subject: [PATCH] Remove some disabled warnings from the makefile --- Makefile | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 727f68c..13a182a 100644 --- a/Makefile +++ b/Makefile @@ -6,15 +6,13 @@ CC ?= clang CFLAGS += -Wall -I. -fomit-frame-pointer -fno-stack-protector -fno-common #turn on tons of warnings if clang is present ifeq ($(CC), clang) - CFLAGS += \ + CFLAGS += \ -Weverything \ -Wno-missing-prototypes \ - -Wno-unused-parameter \ - -Wno-sign-conversion \ - -Wno-conversion \ - -Wno-disabled-macro-expansion \ -Wno-padded \ - -Wno-format-nonliteral + -Wno-format-nonliteral \ + -Wno-disabled-macro-expansion \ + -Wno-conversion endif ifeq ($(track), no) -- 2.39.2