From 61abc20ed7ca8b8cbef25eb02eca253918476b1b Mon Sep 17 00:00:00 2001 From: Quinn Date: Sun, 26 Jan 2025 12:35:19 +0100 Subject: [PATCH] remove duplicate -Wall --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index ad30921..3f2eb6f 100644 --- a/makefile +++ b/makefile @@ -4,7 +4,7 @@ NAME := sdl_template 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)