From 8d19be58460c63aee51678049e3d004da3a90b9d Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Mon, 29 Jun 2015 23:45:24 -0400 Subject: [PATCH] Add -Os cc option --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8c016da..f6ab19a 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ t: *.c - gcc -Wall -o $@ -g *.c + gcc -Wall -Os -o $@ -g *.c clean: rm -f t