repos
/
ray
/ headblob
summary
|
shortlog
|
log
|
tree
|
annotate
|
headblob
|
filehistory
plain
/
/Makefile
1
all: mlray hsray cppray
2
3
mlray: ray.ml
4
ocamlopt -inline 1000 ray.ml -o mlray
5
6
hsray: ray.hs
7
ghc -package bytestring -package binary -O2 -funbox-strict-fields -optc-O3 -fexcess-precision -optc-ffast-math ray.hs -o hsray
8
9
cppray: ray.cpp
10
g++ -O3 -ffast-math ray.cpp -o cppray