Skip to content

Commit

Permalink
Merge pull request #6 from coderefinery/blindij/rules
Browse files Browse the repository at this point in the history
Blindij/rules
  • Loading branch information
blindij authored Oct 7, 2024
2 parents 37859ea + b7c9833 commit a342f8d
Showing 1 changed file with 169 additions and 40 deletions.
209 changes: 169 additions & 40 deletions doc/rules.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,154 @@
# Rules
# Variables, Functions, Rules and a exampel with vpath
In following we will go through `make` variables, functions and rules. We will also visit an upated
example of the `hello world` program.

## Variables
A variable is a name defined in a makefile to represent a string of text, called the variable's
value. These values are substitued by explicit request into targets, prerequisites, recipes, and
other parts of the makefile. By convention are variables that are internal to the makefile lowercased.
Variables that might be set from the command line are uppercased.

### Variable References
A variable name must be surrounded by $() or ${} to be recognized by make. Variables are case-sensitive,
hence $(CC) and $(cc) refer to two different variables.
```makefile
objects = program.o foo.o utils.o
program : $(objects)
cc -o program $(objects)

$(objects) : defs.h
```
One type of variable that do not require parentheses is the single character variable.

### Simple Variable
A *simply expanded* variable is defined using ':=' assignment operator. Any make variable references
in the righthand side are expanded and the resulting text saved as the value of the variable upon
reading the line from the `makefile`. The variable is not updated again however many times it is
referenced.
```makefile
MAKE_DEPEND := $(CC) -M
```

### Recursive Variable
The variable `$(object)` in the example above is a *recursively expanded* variable. Variables of this
sort are defined by using '='. For a *recursive variable* the righthandside is read without being
expanded. The expansion of the variable happens when it is used. The variable is re-evaluated upon
every time it is used. Consequently, the content of a *recursive variable* may change during
the course of a `makefile`.

### Conditional Variable
```makefile
# Put all generated files in the directory $(PROJECT_DIR)/bin.
OUTPUT_DIR ?= $(PROJECT_DIR)/bin
```
The '?=' operator is called the *conditional variable assignment operator*. Here the the assignment is
performed only if the variable does not yet have a value.

### Append variable
The append assignment operator is '+='. This operator appends text to a variable. This operator is
particularly useful for collecting values into a variable incrementally.
```makefile
CPPFLAGS += -DUSE_NEW_MALLOC=1
```

### Target variable
You can define a variable for a specific target, such that the variable is valid only for the target:
```makefile
gui.o: CPPFLAGS += -DUSE_NEW_MALLOC=1
gui.o: gui.h
```
While the *gui.o* target is being processed, the valu of CPPFLAGS will contain -DUSE_NEW_MALLOC=1 in
addition to its original contents. When the *gui.o* target is finished, CPPFLAGS will be set back to
its original value. The general syntax for target-specific variables is:
```makefile
target...: variable = value
target...: variable := value
target...: variable += value
target...: variable ?= value
```

### Automatic variables
There are seven automatic variables. Automatic variables are set by `make` after a rules is matched.
They provide access to elements from the target and prerequisite lists. It this way you don't have
to explictily specify any filenames.

| Variable | Function |
| -------- | -------- |
| $@ | The filename representing the target |
| $% | The filename element of an archive member specification |
| $< | The filename of the first prerequisite |
| $? | The names of all prerequisites that are newer than the target, separated by spaces |
| $^ | The filenames all the prerequisites, separated by spaces |
| $+ | Similar to $^ except that $+ include duplicates |
| $* | The stem of the target filename. |

These seven variables have variants that get just the file's directory name or just the file name within
the directory. The variant variables names are formed by appending 'D' or 'F'. These variant variables are
more than one character long and so must be enclosed in parentheses, i.e. $(@D), $(@F).
See [GNU Make Automatic variables](https://www.gnu.org/software/make/manual/html_node/Automatic-Variables.html)


## Macro
```makefile
BIN := /usr/bin
PRINTF := $(BIN)/printf
DF := $(BIN)/df
AWK :- $(BIN)/awk

define free-space
$(PRINTF) "Free disk space "
$(DF) . | $(AWK) 'NR == 2 { print $$4 }'
endef
```
With `define - endef` command we can define a multiline variable, a variable that contains a script.
In the above example we have two-line script. With `define` the variable can contain embedded newlines.
Conseqeuently, we call it a macro to disguish from a single line variable.


## Functions
There is a range of functions define in `make`. Functions for transforming text is described in the
[GNU Make documentation](https://www.gnu.org/software/make/manual/make.html#Functions). Functions are called
just like variables, but often have arguments in addtion:
```makefile
$(function-name arguments)
```
You can also define your own functions. Own-defined functions are invoked ved the `call` command. Here is
an example from Managing Projects with GNU Make, defining a function to terminate a process:
```makefile
AWK := awk
KILL := kill
KILL_FLAGS := -f
PS := ps
PS_FLAGS := -W
PS_FIELDS := "9 47 100"

# $(call kill-program, awk-pattern)
define kill-program
@ $(PS) $(PS_FLAGS) | \
$(AWK 'BEGIN { FIELDWIDTHS = $(PS_FIELDS) } \
/$1/ { \
print "Killing " $$3; \
system( "$(KILL) $(KILL_FLAGS) " $$1 ) \
}'
endef
```
The function is called with the `call` command. Here we kill a vim process before compile a C-file:
```makefile
%.o: %c
$(call kill-program, vim)
$(CC) $(CFLAGS) -c $< -o $@


## Rules
The rule governing the building of the hello world program was so called _explicit_ rule. There are other
types of rules as well, and we will be going through these now:
- explicit rules
- pattern rules
- static pattern rules
- suffix rules
- implicit rules

## Explict rules
### Explict rules

### wildcards
#### wildcards
`make` supports wildcards, also known as globbing.`make`'s wildcards are identical to the Bourne shell's.
Instead of listing all the files in a program explicitly, you can use wildcards together with automatic
variables (We will going through automatic variables in a moment):
Expand Down Expand Up @@ -44,7 +183,7 @@ Many _makefiles_ include a set of standard phony targes. The table list these:
| `check` | Run any tests associated with this application |
| | |

### empty targets
#### empty targets
An _empty target_ is similar to phony targets; it is used to hold recipes for an action that you request
explicitly. The purpose of the empty target file is to record when the rule's recipe was last executed.
It does so because one of the commands in the recipe is a `touch` command to update the target file.
Expand All @@ -60,38 +199,34 @@ The command `make print` will execute the `lpr` command if one of the source fi
last `make print`. The automatic variable `$?` is used to print only those files that have changed.
(We will discuss automatic variables in a moment)


## Variables
A variable have the syntax:
### Pattern rules
```makefile
$(variable-name)
%.o : %.c
$(CC) $(CFLAGS) -c $< -o $@
```
A variable name must be surrounded by $() or ${} to be recognized by make. Variables are case-sensitive,
hence $(CC) and $(cc) refer to two different variables. One type of variable that do
not require parentheses is the single character variable. By convention are variables that are internal
to the makefile lowercased. Variables that might be set from the command line are uppercased.

### Automatic variables
There are seven automatic variables. Automatic variables are set by `make` after a rules is matched.
They provide access to elements from the target and prerequisite lists. It this way you don't have
to explictily specify any filenames.

| Variable | Function |
| -------- | -------- |
| $@ | The filename representing the target |
| $% | The filename element of an archive member specification |
| $< | The filename of the first prerequisite |
| $? | The names of all prerequisites that are newer than the target, separated by spaces |
| $^ | The filenames all the prerequisites, separated by spaces |
| $+ | Similar to $^ except that $+ include duplicates |
| $* | The stem of the target filename. |
A pattern rule looks like an ordinary rule, except that its target contains the character '%'. The target
is considered a pattern for matching file names; the '%' can match any nonempty substring, while other
characters match only themselves. The shown rule '%.o : %.c' says how to make any file `stem.o` from another
file `stem.c`

### Implicit rules
`make` has about 90 built-in implicit rules. There are built-in pattern rules for C, C++, Pascal, Fortran,
Modula, Texinfo, TEX, Emacs, Lisp, RCS and SCCS. The two last ones are version control systems. The implicit
rules database can be listed with the command:
```sh
make --print-data-base # This gives a long output!
```
The implicit rule for building an executable from object files looks like this:
```makefile
%: %.o
# commands to execute (built-in):
$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
```
A interesting note is that this rule is not part of the implicti rulebase on my Mac with
make version 3.81, but it exists in the implicit rulebase on Linux with make version 4.3

These seven variables have variants that get just the file's directory name or just the file name within
the directory. The variant variables names are formed by appending 'D' or 'F'. These variant variables are
more than one character long and so must be enclosed in parentheses, i.e. $(@D), $(@F).
See [GNU Make Automatic variables](https://www.gnu.org/software/make/manual/html_node/Automatic-Variables.html)

### vpath
### An updated "Hello World!" example - introducing vpath
In the following example we have reworked "Hello world"-example. The source files reside in a subdirectory `src`.
The printf statement is moved to a function hello(), which is defined in a new file `module.c`.

Expand Down Expand Up @@ -172,9 +307,3 @@ One of them is how to make a executable from binary object files:

This tells `make` to invoke the linker to link all the prerequisites together with possible other libraries
to produce the target executable.

- simple expanded variable
- recursively expanded variable
- conditional variable
- append variable
- target variable

0 comments on commit a342f8d

Please sign in to comment.