A Makefile dependency tool
Brokkr installs itself in your project by either adding a Makefile or adding itself to an existing Makefile. This oneliner will install the latest version.
curl https://raw.githubusercontent.com/unacast/brokkr/master/scripts/install.sh | bash
Add references to the online Makefiles you would like to add to your project/Makefile. This could be Brokkr-specific makefiles, like the ones under plugins.
Example:
BROKKR_PLUGINS = help/help@master airflow/[email protected]
.DEFAULT_GOAL := help
It works by downloading the Makefile
dependencies you add to your local folder. Once downloaded they are included into your Makefile
so that every target is available.