From 8552d833bbca657591fa8e6f7276d307d7d0c7c6 Mon Sep 17 00:00:00 2001 From: "E. C. Masloch" Date: Wed, 7 Feb 2024 01:03:08 +0100 Subject: [PATCH] boot: fix boot loader assembly listing files [fixes #97] --- boot/makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/boot/makefile b/boot/makefile index 9be6f78..01ea832 100644 --- a/boot/makefile +++ b/boot/makefile @@ -8,22 +8,22 @@ production: fat12com.bin fat16com.bin fat32chs.bin fat32lba.bin oemfat12.bin oemfat16.bin fat12com.bin: boot.asm magic.mac - $(NASM) -dISFAT12 $(NASMBOOTFLAGS) boot.asm -l$*.lst -ofat12com.bin + $(NASM) -dISFAT12 $(NASMBOOTFLAGS) boot.asm -lfat12com.lst -ofat12com.bin fat16com.bin: boot.asm magic.mac - $(NASM) -dISFAT16 $(NASMBOOTFLAGS) boot.asm -l$*.lst -ofat16com.bin + $(NASM) -dISFAT16 $(NASMBOOTFLAGS) boot.asm -lfat16com.lst -ofat16com.bin fat32chs.bin: boot32.asm magic.mac - $(NASM) $(NASMBOOTFLAGS) boot32.asm -l$*.lst -ofat32chs.bin + $(NASM) $(NASMBOOTFLAGS) boot32.asm -lfat32chs.lst -ofat32chs.bin fat32lba.bin: boot32lb.asm magic.mac - $(NASM) $(NASMBOOTFLAGS) boot32lb.asm -l$*.lst -ofat32lba.bin + $(NASM) $(NASMBOOTFLAGS) boot32lb.asm -lfat32lba.lst -ofat32lba.bin oemfat12.bin: oemboot.asm magic.mac - $(NASM) -dISFAT12 $(NASMBOOTFLAGS) oemboot.asm -l$*.lst -ooemfat12.bin + $(NASM) -dISFAT12 $(NASMBOOTFLAGS) oemboot.asm -loemfat12.lst -ooemfat12.bin oemfat16.bin: oemboot.asm magic.mac - $(NASM) -dISFAT16 $(NASMBOOTFLAGS) oemboot.asm -l$*.lst -ooemfat16.bin + $(NASM) -dISFAT16 $(NASMBOOTFLAGS) oemboot.asm -loemfat16.lst -ooemfat16.bin clobber: clean -$(RM) *.bin status.me