From 0651fa75c889aaaaf2baa5258e8bfac8d289d98c Mon Sep 17 00:00:00 2001 From: unset Date: Sun, 26 Jan 2025 12:35:28 +0100 Subject: [PATCH] remove duplicate -Wall --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 4667702..a78dbd7 100644 --- a/makefile +++ b/makefile @@ -4,7 +4,7 @@ NAME := breakout_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)