Fix markdown: Add required newline before list

This commit is contained in:
Philipp Oppermann
2015-08-06 12:02:34 +02:00
parent 002c97402c
commit e38f3cfe52

View File

@@ -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]