git @ Cat's Eye Technologies ZOWIE / master build.sh
master

Tree @master (Download .tar.gz)

build.sh @masterraw · 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 or Skulpt instead.'
else
    python `which rpython` src/zowie.py
    mkdir -p bin
    mv zowie-c bin/
fi