summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/makefile b/makefile
index ffd9c32..7b19833 100644
--- a/makefile
+++ b/makefile
@@ -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 $@