From b9919b09e5449565e8331a4a05995a23f2ebd594 Mon Sep 17 00:00:00 2001 From: tonton th Date: Fri, 5 Jun 2020 10:50:33 +0200 Subject: [PATCH] more magic --- tools/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index 4c29a5a..9c87420 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,5 +1,7 @@ BBFUNCS = ../libbubulles.a -read_obj: read_obj.c Makefile ${BBFUNCS} - gcc -Wall -DDEBUG_LEVEL=1 $< ${BBFUNCS} -o $@ +OPT = -Wall -g -DDEBUG_LEVEL=1 -DMUST_ABORT + +read_obj: read_obj.c Makefile $(BBFUNCS) + gcc $(OPT) $< $(BBFUNCS) -o $@