From 2e2d3e38dd74e00b1044bcc7080de5eb8887b828 Mon Sep 17 00:00:00 2001 From: Louis-Guillaume Gagnon Date: Thu, 12 Dec 2013 15:07:18 -0500 Subject: [PATCH] Makefile: add 2 warning-inhibiting flags -Wno-unused-function and -Wno-unused-but-set-variable --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 0780f66..6087bca 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ TARGET = sh CC = gcc CFLAGS = -O2 -Wall -Wextra -Werror -std=c99 -pedantic -pedantic-errors +CFLAGS += -Wno-unused-function -Wno-unused-but-set-variable OBJS = $(patsubst %.c,%.o,$(wildcard *.c)) -- 2.11.4.GIT