Added size optimization

Signed-off-by: luca0N! <63941044+luca0N@users.noreply.github.com>
This commit is contained in:
luca0N! 2020-05-04 08:29:52 -03:00
parent 26e6b7848a
commit 1972eed113
No known key found for this signature in database
GPG Key ID: 9F1B99B522287CAB
1 changed files with 2 additions and 2 deletions

View File

@ -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