remove duplicate -Wall

This commit is contained in:
2025-01-26 12:35:23 +01:00
parent 0978b98f8d
commit fefb7be44b

View File

@@ -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)