Ticket #979: build_parrot.sh

File build_parrot.sh, 67 bytes (added by dukeleto, 12 years ago)

Script to build parrot and exit with exit code of make

Line 
1#!/bin/sh
2
3make realclean
4perl Configure.pl
5make || exit $?
6exit 0