no more profiling

This commit is contained in:
tTh 2023-03-30 20:10:42 +02:00
parent 939b516625
commit 398a5d3957
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
CC = gcc
OPT = -Wall -g -pg -DDEBUG_LEVEL=0 -DMUST_ABORT=0
OPT = -Wall -g -DDEBUG_LEVEL=0 -DMUST_ABORT=0
libbubulles.a: bubulles.o edges.o
ar r $@ $?

View File

@ -1,7 +1,7 @@
BBFUNCS = ../libbubulles.a
OPT = -Wall -g -pg -DDEBUG_LEVEL=0 -DMUST_ABORT=0
OPT = -Wall -g -DDEBUG_LEVEL=0 -DMUST_ABORT=0
read_obj: read_obj.c Makefile importobj.o $(BBFUNCS)
gcc $(OPT) $< importobj.o $(BBFUNCS) -o $@