remake: (this version for trunk)
#!/bin/sh
args=$*
if [ "${args:0:3}" = "all" ]; then
# make all parrot_utils perl6.exe languages installable test codetest
args="all parrot_utils perl6.exe languages installable ${args:3}"
fi
if test -f Makefile; then
if $(grep reconfig Makefile >/dev/null); then
make reconfig $args
else
make clean realclean && perl Configure.pl && make $args
fi
else
perl Configure.pl && make $args
fi
remake for cygwin070patches, where it is easier
#!/bin/sh
if test -f Makefile; then
make reconfig $*
else
perl Configure.pl && make $*
fi