m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/makefile.md
blob: a7a3ab8692d7a254b6774f99be9142192aaddb0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Writing Makefiles

## Pattern rules

In prerequesite, use exactly one `%`. Can then be used in requirements. E.g.

    %.o: %.c
        # compile .c file to .o

Details: <https://www.gnu.org/software/make/manual/html_node/Pattern-Rules.html>

## Automatic variables

* `$@`: current target
* `$<`: first prerequisite
* `$^`: all prerequisites, separated by spaces
* `$(@F)`: file-within-directory part of target path

More: <https://www.gnu.org/software/make/manual/html_node/Automatic-Variables.html>

## Text functions

* `$(var:suffix=replacement)`, syntax sugar for
  `$(patsubst %suffix, $replacement, $(var))`

More: <https://www.gnu.org/software/make/manual/html_node/Text-Functions.html>

## Quiet commands

By default, `make` prints the command being run. Prepend `@` to silence this.