summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-09-19 12:05:35 +0200
committermetamuffin <metamuffin@disroot.org>2024-09-19 12:05:35 +0200
commit32b5bc923add402eb33555157d329e1d379583c9 (patch)
tree56d123c64968ccddbacd064667010b19de7b73da /makefile
parent84e75a2757c6faa0710887f23b4bc2a0c5328548 (diff)
downloadattocc-32b5bc923add402eb33555157d329e1d379583c9.tar
attocc-32b5bc923add402eb33555157d329e1d379583c9.tar.bz2
attocc-32b5bc923add402eb33555157d329e1d379583c9.tar.zst
replace some functions from libc
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 7b19833..17351fd 100644
--- a/makefile
+++ b/makefile
@@ -5,11 +5,11 @@ clean:
rm $(ALL)
attocc: attocc.c
- cc -O3 -o $@ $<
+ cc -DDEBUG -O3 -o $@ $<
attocc-debug: attocc.c
cc -DDEBUG -Wall -Wextra -Wpedantic -o $@ $<
attocc-small: attocc.c
- cc -Wl,--gc-sections -flto -ffunction-sections -fdata-sections -fPIC -s -Os -o $@ $<
+ cc -DDEBUG -Wl,--gc-sections -flto -ffunction-sections -fdata-sections -fPIC -s -Os -o $@ $<
strip -x $@