From 3134a7caea1410bd7ab5357d1c275c9d23ef32ff Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Wed, 10 Feb 2016 13:53:56 +0200
Subject: [PATCH] Optimize C version build.

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index a216e69..1454638 100644
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,7 @@ __pycache__:
 	py3compile -V 3.0- prime.py
 
 a.out:
-	gcc --std=c99 -Wall -lm prime.c
+	gcc --std=c99 -Wall -lm -O3 prime.c
 
 clean:
 	- rm -fr a.out __pycache__
-- 
GitLab