Rinq Makefiles
This repository contains common Makefile configurations used by Rinq projects.
The contents is not intended to be used by third-parties and may change at any time without notice.
Setup
- Include
artifacts/make/<lang>.mk
in the top of your project'sMakefile
. - Add a target that fetches the
Makefile
from GitHub.
The example below fetches the Makefile for the Go language.
SHELL := /bin/bash
-include artifacts/make/go.mk
artifacts/make/%.mk:
bash <(curl -s https://rinq.github.io/make/install) $*