From 832dbbbe9a10d9366fd35d3ac711cc778f283aa0 Mon Sep 17 00:00:00 2001 From: ProsperousPotato Date: Wed, 21 Jan 2026 18:15:03 +0000 Subject: fix building with debug --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8157096..6c36651 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC = gcc -CFLAGS = -Wall -O3 -march=native -g $(shell pkg-config --cflags x11 xrandr xrender xft) +CFLAGS = -Wall -O3 -march=native $(shell pkg-config --cflags x11 xrandr xrender xft) LIBS = $(shell pkg-config --libs x11 xrandr xrender xft) SRC = parte.c OBJ = $(SRC:.c=.o) -- cgit v1.2.3