From 7d999b17dda07f3158aec9c808764b79c8d21db7 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Mon, 29 Feb 2016 11:10:40 +0200
Subject: [PATCH] Removed Python3 precompile target (stop cheating by trying to
 make Python look faster).

---
 Makefile | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/Makefile b/Makefile
index dff5c2d..400d567 100644
--- a/Makefile
+++ b/Makefile
@@ -1,20 +1,15 @@
-.PHONY: all test clean c python3 clojure
+.PHONY: all test clean c clojure
 ROUNDS = 100000
 
-all: python3 c clojure
+all: c clojure
 
 c: a.out
 
-python3: __pycache__
-
 clojure: target/uberjar
 
 target/uberjar:
 	cd prime.clj; lein uberjar
 
-__pycache__:
-	py3compile -V 3.0- prime.py
-
 a.out:
 	gcc --std=c99 -Wall -lm -O3 prime.c
 
-- 
GitLab