Added size optimization
Signed-off-by: luca0N! <63941044+luca0N@users.noreply.github.com>
This commit is contained in:
parent
26e6b7848a
commit
1972eed113
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -17,10 +17,10 @@
|
|||
# Contact me by e-mail via <mailto:luca0n@protonmail.com>
|
||||
|
||||
ldl3: main.o about.h str.h colors.h
|
||||
gcc main.o about.h str.h colors.h -s -o ldl3
|
||||
gcc main.o about.h str.h colors.h -s -Os -o ldl3
|
||||
|
||||
main.o: main.c
|
||||
gcc -c main.c
|
||||
gcc -c -s -Os main.c
|
||||
|
||||
clean:
|
||||
rm *.o *.exe
|
Reference in a new issue