summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-10-09 10:13:59 +0200
committermetamuffin <metamuffin@disroot.org>2024-10-09 10:13:59 +0200
commit7e89b781e7f1e8d7cedc20601642bec525200176 (patch)
treed5263e7cfe48b47e313ec6e99f1eaf3a10960778 /makefile
parent1109973fc1aae971439331c76eb46cbaf976690b (diff)
downloadattocc-7e89b781e7f1e8d7cedc20601642bec525200176.tar
attocc-7e89b781e7f1e8d7cedc20601642bec525200176.tar.bz2
attocc-7e89b781e7f1e8d7cedc20601642bec525200176.tar.zst
fix strncmp
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index cd8b45b..0364204 100644
--- a/makefile
+++ b/makefile
@@ -11,7 +11,7 @@ attocc: attocc.c
cc -DDEBUG -O3 -o $@ $<
attocc-debug: attocc.c
- cc -DDEBUG -Wall -Wextra -Wpedantic -o $@ $<
+ cc -DDEBUG -Wall -Wextra -Wpedantic -Og -g -o $@ $<
attocc-small: attocc.c
cc -DDEBUG -Wl,--gc-sections -flto -ffunction-sections -fdata-sections -fPIC -s -Os -o $@ $<