From fefb7be44bf635b302e7629836955a6abfc9e217 Mon Sep 17 00:00:00 2001 From: Quinn Date: Sun, 26 Jan 2025 12:35:23 +0100 Subject: [PATCH] remove duplicate -Wall --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index eeb387d..94473cd 100644 --- a/makefile +++ b/makefile @@ -4,7 +4,7 @@ NAME := tetris_clone CC := clang STD := c17 LANG = c -CFLAGS := $(shell pkg-config --cflags sdl2) -Wall -Wall -Wextra -Wpedantic -Wno-pointer-arith +CFLAGS := $(shell pkg-config --cflags sdl2) -Wall -Wextra -Wpedantic -Wno-pointer-arith LDFLAGS := $(shell pkg-config --libs sdl2) -lm ifeq ($(DEBUG),1)