Skip to content

Commit a26ead7

Browse files
Merge pull request #220 from gpiffault/lesson01-add-make-substitution-link
Add make substitution link
2 parents 83ce425 + 949372d commit a26ead7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/lesson01/rpi-os.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ OBJ_FILES = $(C_FILES:$(SRC_DIR)/%.c=$(BUILD_DIR)/%_c.o)
106106
OBJ_FILES += $(ASM_FILES:$(SRC_DIR)/%.S=$(BUILD_DIR)/%_s.o)
107107
```
108108

109-
Here we are building an array of all object files (`OBJ_FILES`) created from the concatenation of both C and assembler source files.
109+
Here we are building an array of all object files (`OBJ_FILES`) created from the concatenation of both C and assembler source files (see [Substitution References](https://www.gnu.org/software/make/manual/html_node/Substitution-Refs.html)).
110110

111111
```
112112
DEP_FILES = $(OBJ_FILES:%.o=%.d)

0 commit comments

Comments
 (0)