From 271c1234e6814e1bf9dd7ed4c6ca71a02161a90d Mon Sep 17 00:00:00 2001 From: Daniel Eisele Date: Thu, 24 Aug 2017 00:06:22 +0200 Subject: [PATCH] Removed -Wextra --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 62ce6ed..294a9f4 100644 --- a/makefile +++ b/makefile @@ -3,7 +3,7 @@ VERSION = 1.0 CC = cc -CFLAGS = -Wall -Wextra -O3 -D_REENTRANT -DVERSION=\"$(VERSION)\" +CFLAGS = -Wall -O3 -D_REENTRANT -DVERSION=\"$(VERSION)\" #LDFLAGS = -lm -lpthread `gtk-config --cflags` `gtk-config --libs` -lgthread LDFLAGS = -lncurses @@ -11,7 +11,7 @@ OBJ = hangman.o prng.o all: $(OBJ) $(CC) $(CFLAGS) -o hangman $(OBJ) $(LDFLAGS) - + %.o: %.c $(CC) $(CFLAGS) -c $<