#!/bin/bash # just a helper script to make builds faster if test `uname -s` = "AIX"; then gmake -j5 && gmake -j5 install && gmake -j5 check else make -j5 && make -j5 install && make -j5 check fi