diff options
author | metamuffin <metamuffin@disroot.org> | 2024-06-15 13:36:09 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-15 13:36:09 +0200 |
commit | ab8ec0f137b17be65369e05383f3471f901bb7c3 (patch) | |
tree | d38da84ad6e576b84cecc4ee3f1655d1537fc583 /makefile | |
parent | e6483e3bec7630ad5c27dbbe04681e61b0791fe4 (diff) | |
download | attocc-ab8ec0f137b17be65369e05383f3471f901bb7c3.tar attocc-ab8ec0f137b17be65369e05383f3471f901bb7c3.tar.bz2 attocc-ab8ec0f137b17be65369e05383f3471f901bb7c3.tar.zst |
bug with idents
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -5,11 +5,11 @@ clean: rm $(ALL) attocc: attocc.c - gcc -O3 -o $@ $< + cc -O3 -o $@ $< attocc-debug: attocc.c - gcc -DDEBUG -Wall -Wextra -Wpedantic -o $@ $< + cc -DDEBUG -Wall -Wextra -Wpedantic -o $@ $< attocc-small: attocc.c - gcc -Wl,--gc-sections -flto -ffunction-sections -fdata-sections -fPIC -s -Os -o $@ $< + cc -Wl,--gc-sections -flto -ffunction-sections -fdata-sections -fPIC -s -Os -o $@ $< strip -x $@ |