#!/bin/sh

# emake -- execute 'make' command and save errors to 'errlist'

make $* 2> errlist
cat errlist

