#!/bin/sh echo make version make --version echo echo echo The following make fails on part1 as expected echo make targ make targ echo make targ exit status $? echo echo echo The following make fails on parts 1 and 2 as expected echo make -k targ make targ -k echo make targ -k exit status $? echo echo echo The following make "succeeds", claiming to make all parts echo make -silent targ make targ -silent echo make targ -silent exit status $? echo echo echo The following make "succeeds", claiming to make all parts, but echo printing the exit codes on commands that actually failed echo make -i targ make targ -i echo make targ -i exit status $?