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