Skip to content

Commit 949372d

Browse files
committed
Add make substitution link
1 parent 9c97b66 commit 949372d

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)