more magic

This commit is contained in:
tonton th 2020-06-05 10:50:33 +02:00
parent a8e9418d18
commit b9919b09e5
1 changed files with 4 additions and 2 deletions

View File

@ -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 $@