From a20687681381c3c38914bc420c6dec2faa4b0a68 Mon Sep 17 00:00:00 2001 From: Maurizio Porrato Date: Fri, 20 Oct 2023 09:19:17 +0100 Subject: [PATCH] Enable profiling --- .gitignore | 2 ++ Makefile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4a30830..8d69083 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,8 @@ *.o *.obj *.exe +gmon.out +perf.data dsk2img test-lzw .vscode/ diff --git a/Makefile b/Makefile index e690944..9ed3c11 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC = clang -CFLAGS ?= -Wall -Wextra -pedantic -std=c89 -Og -g +CFLAGS ?= -Wall -Wextra -pedantic -std=c89 -Og -g -pg STRIP = strip FORMAT = clang-format -i BIN = dsk2img