Duke's utils
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
330 B

#!/bin/sh
if ["$CC" -eq ""]; then
CC=cc
fi
ccache --version
if [ $? -eq 0 ]; then
CC="ccache $CC"
fi
rm -rf "$PWD/installed_parrot"
make realclean
perl Configure.pl \
--cc="$CC" \
--ccflags=-g \
$@ \
--prefix="$PWD/installed_parrot" && \
nice -n20 make -j $TEST_JOBS && \
make install