diff options
author | KatolaZ <katolaz@freaknet.org> | 2019-08-09 05:58:08 +0100 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2019-08-09 05:58:08 +0100 |
commit | 3ba178677800de55393f8ec80752ffe72660931a (patch) | |
tree | 3214a3c1839b8289d40d5cb6cf5eff21166f6508 | |
parent | c5e820787de73a668d848dd16649e685eb36c3dd (diff) |
Use target-specific vars for debug target
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 |