Enable profiling

This commit is contained in:
Maurizio Porrato 2023-10-20 09:19:17 +01:00
parent e970d0a0fe
commit a206876813
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View File

@ -3,6 +3,8 @@
*.o *.o
*.obj *.obj
*.exe *.exe
gmon.out
perf.data
dsk2img dsk2img
test-lzw test-lzw
.vscode/ .vscode/

View File

@ -1,5 +1,5 @@
CC = clang CC = clang
CFLAGS ?= -Wall -Wextra -pedantic -std=c89 -Og -g CFLAGS ?= -Wall -Wextra -pedantic -std=c89 -Og -g -pg
STRIP = strip STRIP = strip
FORMAT = clang-format -i FORMAT = clang-format -i
BIN = dsk2img BIN = dsk2img