Add generic_check function and add new default check target to build.sh.

The check target is excluded from the all target since it can often take a
very long time to run.
This commit is contained in:
Tom G. Christensen
2008-04-05 09:54:30 +00:00
parent 1603b4dd44
commit bb2413eda9
3 changed files with 19 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ all()
for METHOD in $METHODS
do
case $METHOD in
all*|*clean) ;;
all*|*clean|check) ;;
*) $METHOD
;;
esac