mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
Fix markdown: Add required newline before list
This commit is contained in:
@@ -264,6 +264,7 @@ build/arch/$(arch)/%.o: src/arch/$(arch)/%.asm
|
|||||||
@nasm -felf64 $< -o $@
|
@nasm -felf64 $< -o $@
|
||||||
```
|
```
|
||||||
Some comments (see the [Makefile tutorial] if you don't know `make`):
|
Some comments (see the [Makefile tutorial] if you don't know `make`):
|
||||||
|
|
||||||
- the `$(wildcard src/arch/$(arch)/*.asm)` chooses all assembly files in the src/arch/$(arch)` directory, so you don't have to update the Makefile when you add a file
|
- the `$(wildcard src/arch/$(arch)/*.asm)` chooses all assembly files in the src/arch/$(arch)` directory, so you don't have to update the Makefile when you add a file
|
||||||
- the `patsubst` operation for `assembly_object_files` just translates `src/arch/$(arch)/XYZ.asm` to `build/arch/$(arch)/XYZ.o`
|
- the `patsubst` operation for `assembly_object_files` just translates `src/arch/$(arch)/XYZ.asm` to `build/arch/$(arch)/XYZ.o`
|
||||||
- the `$<` and `$@` in the assembly target are [automatic variables]
|
- the `$<` and `$@` in the assembly target are [automatic variables]
|
||||||
|
|||||||
Reference in New Issue
Block a user