diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-19 12:05:35 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-19 12:05:35 +0200 |
commit | 32b5bc923add402eb33555157d329e1d379583c9 (patch) | |
tree | 56d123c64968ccddbacd064667010b19de7b73da /makefile | |
parent | 84e75a2757c6faa0710887f23b4bc2a0c5328548 (diff) | |
download | attocc-32b5bc923add402eb33555157d329e1d379583c9.tar attocc-32b5bc923add402eb33555157d329e1d379583c9.tar.bz2 attocc-32b5bc923add402eb33555157d329e1d379583c9.tar.zst |
replace some functions from libc
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 $@ |