zmk.AllClean(5)

include z.mk $(eval $(call ZMK.Expand,AllClean,instanceName)) The template once with a target makes depend on and makes

Section 5 zmk-doc bookworm source

Description

UNTITLED() LOCAL UNTITLED()

NAME

AllClean — template for files that can built and cleaned

SYNOPSIS

include z.mk

$(eval $(call ZMK.Expand,AllClean,instanceName))

DESCRIPTION

The AllClean template once expanded with a target instance name makes all depend on $(instanceName), and makes clean remove $(instanceName). It can be used to avoid duplicating the same two rules across many buildable entities. It is used internally by other templates.

Actual rules for building $(instanceName) need to be provided separately.

TARGETS

This module provides the following targets.

all

This phony target depends on $(instanceName).

clean

This phony target removes $(instanceName).

VARIABLES

This module does not provide any variables.

HISTORY

The AllClean template first appeared in zmk 0.3

AUTHORS

Zygmunt Krynicki <me@zygoon.pl> zmk 0.5.1 May 3, 2020 zmk.AllClean(5)