From 1972eed113779a042bfe4135ee539b63dca8caeb Mon Sep 17 00:00:00 2001 From: luca0N! <63941044+luca0N@users.noreply.github.com> Date: Mon, 4 May 2020 08:29:52 -0300 Subject: [PATCH] Added size optimization Signed-off-by: luca0N! <63941044+luca0N@users.noreply.github.com> --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index eaab0e9..7d3f2d3 100644 --- a/Makefile +++ b/Makefile @@ -17,10 +17,10 @@ # Contact me by e-mail via 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 \ No newline at end of file