commented out debug option in makefile

This commit is contained in:
Slade Getz 2023-05-25 17:46:17 -06:00
parent 7054383b43
commit 0490cc5fee
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ NAME = ly
CC = gcc
FLAGS = -std=c99 -pedantic -g
FLAGS+= -Wall -Wextra -Werror=vla -Wno-unused-parameter
FLAGS+= -DDEBUG
#FLAGS+= -DDEBUG
FLAGS+= -DGIT_VERSION_STRING=\"$(shell git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g')\"
LINK = -lpam -lxcb
VALGRIND = --show-leak-kinds=all --track-origins=yes --leak-check=full --suppressions=../res/valgrind.supp