no more profiling

This commit is contained in:
tTh 2023-03-30 20:10:42 +02:00
父節點 939b516625
當前提交 398a5d3957
共有 2 個文件被更改,包括 2 次插入2 次删除

查看文件

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

查看文件

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