#!/bin/bash . ./functions.sh make|tee make.log grep -q "include-pass-hook executed" make.log||error "include-pass-hook didn't execute" grep -q "library-pass-hook executed" make.log||error "library-pass-hook didn't execute" grep -q "binary-pass-hook executed" make.log||error "binary-pass-hook didn't execute"