allow the user to pass a `makefile` through stdin, so it's possible to call `make-help` like this: ``` shell # pipe cat path/to/Makefile | make-help echo 'makefile contents' | make-help # redirect make-help < path/to/Makefile make-help <<< 'makefile contents' ```