From 398a5d39574eb8216130b89c879668437e3ec2f6 Mon Sep 17 00:00:00 2001 From: tTh Date: Thu, 30 Mar 2023 20:10:42 +0200 Subject: [PATCH] no more profiling --- Makefile | 2 +- tools/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d0c0d02..4bda79e 100644 --- a/Makefile +++ b/Makefile @@ -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 $@ $? diff --git a/tools/Makefile b/tools/Makefile index 57cdf3c..3d4a4b6 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -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 $@