Skip to content
Marko Korhonen edited this page May 20, 2021 · 12 revisions

Project specific make targets

You can create mk files to folder tools/make/project and they will be included automatically.

Changing target prerequisites

There are some specific command chains which can be altered or replaced.

E.g. make fresh is actually something like make this and-that and-also-this

Override variables

You can do override variables without touching core files by editing tools/make/override.mk. This file exists only in your project.

Example where we change variables about CLI service:

# Docker CLI container
CLI_SERVICE=myapp
CLI_USER=myuser
CLI_SHELL=bash
Clone this wiki locally