From 3ba178677800de55393f8ec80752ffe72660931a Mon Sep 17 00:00:00 2001 From: KatolaZ Date: Fri, 9 Aug 2019 05:58:08 +0100 Subject: Use target-specific vars for debug target --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index eec14c1..b2299c8 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,9 @@ INC = config.h gramscii.h arg.h OBJ = ${SRC:.c=.o} DISTFILES = ${SRC} ${INC} Makefile config.mk README.md Changelog +DEBUG = -O0 -Wall -pedantic -g -DDEBUG + + all: options gramscii options: @@ -23,8 +26,8 @@ gramscii: ${OBJ} ${OBJ}: ${INC} -debug: clean - ${MAKE} ${MAKEFILE} CFLAGS="-O0 -Wall -pedantic -g -DDEBUG=1" +debug: CFLAGS = ${DEBUG} +debug: clean all clean: @echo cleaning -- cgit v1.2.3