git @ Cat's Eye Technologies Exanoke / try-supporting-rpython build.sh
try-supporting-rpython

Tree @try-supporting-rpython (Download .tar.gz)

build.sh @try-supporting-rpythonraw · history · blame

1
2
3
4
5
6
7
8
9
#!/bin/sh

if [ `which rpython`X = X ]; then
    echo 'RPython not found.  Not building.  Use CPython instead.'
else
    python `which rpython` src/exanoke.py
    mkdir -p bin
    mv exanoke-c bin/
fi