aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorProsperousPotato <ProsperousPotato@users.noreply.github.com>2026-01-21 18:15:03 +0000
committerProsperousPotato <ProsperousPotato@users.noreply.github.com>2026-01-21 18:15:03 +0000
commit832dbbbe9a10d9366fd35d3ac711cc778f283aa0 (patch)
tree335a5be45531362feb015fcf48c09e644ca6c3ef
parent17cbfc9a9b4276b1721dfe111d0afc00afa8c428 (diff)
fix building with debugmain
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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)