makefile notes

SEAN K.H. LIAO

makefile notes

make

make and Makefiles, these days often abused as a generic task runner with an arcane syntax.

zsh completion

zsh has built in support for extracting targets from Makefiles for autocompletion. Unfortunately, it can more or less only extract the statically defined targets. If you use patterns, wildcards, etc., you'll have to actually execute make to generate targets. Also, you'll likely want to skip the builtin make variables as autocomplete targets.

1zstyle ':completion:*:make:*:targets' call-command true # exec make to get targets
2zstyle ':completion:*:make:*' tag-order targets # ignore make variables

macros or variables

Variables are the wrong name. Think of them as macros that can be expanded later. Since you can't define variables inside targets, define them outside, expanding to whatever you need inside, you'll still have access to all the special vars. Also a list is just space separated strings.

# := expands immediately as the file is processed top down and never again
# like variables in any sane programming language
# outputs "some ", env is not defined, trailing spaces are kept
macro1 := some $(env)

# = recursively expands at the time the macro is used
# output depends on the value of $(env) when macro2 is executed
macro2 = some $(env)

# ?= sets only if LHS is undefined
macro2 ?= some $(env)

# name of the current executing target
$@

# list of dependencies of current target
$^

targets

basics

# simple target
foo:
        @echo hello world

# target with dependency
bar: foo
        # output "bar"
        @echo $@
        # output "foo"
        @echo $^

dynamic:

apps = a b c d

# generates 4 targets "a", "b", "c", "d"
$(apps):
        # output depends on running target
        $@

apps2 = a.x b.x c.x d.x e.x
$(apps2): %.x: %.y
        # output ex: a.x
        @echo $@
        # output ex: a
        @echo $*

functions

There are a few of them, but no advanced string manipulation.

# pattern substition, % matches non space,
# pattern to match, pattern to output, input
$(patsubst %_x,%_y,$(somevar))

# variable declaration, input, output
$(foreach x,$(somelist),hello $(x))

# useful for matching a lot of files
# or checking if a file exists
$(wildcard *.yaml)
$(wildcard some.yaml)

# execute a shell command and use the output
# powerful but this exposes you to the environment and differences in command line tools
# ex GNU vs BSD etc.
$(shell ...)

example

So I have a directory full of apps, each with helm values files for various environments, and I want to generate a target for each app+env

directory layout
workspace/
  vars/
     app1/
        values.yaml
        values.dev.yaml
        values.prod.yaml
        secrets.dev.yaml
        secrets.prod.yaml
    app2/
      values.dev.yaml
      secrets.yaml
    app3/
      ...
Makefile
 1# static list of envs
 2all_envs = dev prd
 3# dynamic list of apps
 4all_apps = $(patsubst vars/%,%,$(wildcard vars/*))
 5# create targets like: app.env
 6all_targets = $(foreach app,$(all_apps),$(foreach e,$(all_envs),$(a).$(e)))
 7
 8# macros
 9
10# extract env from target name
11env = $(subst .,,$(suffix $@))
12# extract app from target name
13app = $(patsubst %_$(env),%,$@)
14# base directory for app
15appdir = vars/$(app)
16# for the possible filenames, check if they exist
17possiblefiles = secrets.yaml secrets.$(env).yaml values.yaml values.$(env).yaml
18valuesfiles = $(foreach f,$(possiblefiles),$(wildcard $(appdir)/$(f)))
19# turn list of files into list of flags
20valuesflags = $(foreach f,$(valuesfiles),-f $(f) )
21# command
22helmtemplate = helm secrets template $(app)-$(env) . $(valuesflags)
23
24# targets
25
26.PHONY: $(all_targets)
27$(all_targets):
28        $(helmtemplate)