This is a collection of Make
files that support the development of Golang-based AWS Lambda functions. It was put together to be used in conjunction with Modern Make
(mmake
).
You'll need mmake
. On MacOS, if using homebrew, run the following to install it (please refer to the documentation for other ways of installation):
$ brew tap tj/mmake https://github.com/tj/mmake.git
$ brew install tj/mmake/mmake
Then, on your Makefile
, use the include
directive to include this collection as remote includes (feature provided by mmake
):
include github.com/InDebted/make/index
Running mmake help
will fetch the remote includes and print you all the documented targets. If you need to fetch an updated copy of the remote includes, run mmake update
.