Don't print debug output on built with debug symbols this will disturb the
debug session.
# normal compiler flags
CFLAGS += $(shell pkg-config --cflags $(LIBS))
-CFLAGS += -Wall -pipe -ansi -std=c99 -pedantic
+CFLAGS += -Wall -pipe -std=c99 -pedantic
CFLAGS += -Wno-overlength-strings
CFLAGS += ${CPPFLAGS}
LDFLAGS += ${LIBFLAGS}
# compiler flags for the debug target
-DFLAGS += $(CFLAGS) -DDEBUG -ggdb -g
+DFLAGS += $(CFLAGS) -ggdb -g
DLDFLAGS += ${LIBFLAGS}
OBJ = $(patsubst %.c, %.o, $(wildcard src/*.c))