Commit 7d999b17 authored by nimrod's avatar nimrod
Browse files

Removed Python3 precompile target (stop cheating by trying to make Python look faster).

parent 916a6191
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
.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