Skip to content

Commit 8552d83

Browse files
ecm-pushbxPerditionC
authored andcommitted
boot: fix boot loader assembly listing files [fixes #97]
1 parent 1cd4a75 commit 8552d83

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

boot/makefile

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@
88
production: fat12com.bin fat16com.bin fat32chs.bin fat32lba.bin oemfat12.bin oemfat16.bin
99

1010
fat12com.bin: boot.asm magic.mac
11-
$(NASM) -dISFAT12 $(NASMBOOTFLAGS) boot.asm -l$*.lst -ofat12com.bin
11+
$(NASM) -dISFAT12 $(NASMBOOTFLAGS) boot.asm -lfat12com.lst -ofat12com.bin
1212

1313
fat16com.bin: boot.asm magic.mac
14-
$(NASM) -dISFAT16 $(NASMBOOTFLAGS) boot.asm -l$*.lst -ofat16com.bin
14+
$(NASM) -dISFAT16 $(NASMBOOTFLAGS) boot.asm -lfat16com.lst -ofat16com.bin
1515

1616
fat32chs.bin: boot32.asm magic.mac
17-
$(NASM) $(NASMBOOTFLAGS) boot32.asm -l$*.lst -ofat32chs.bin
17+
$(NASM) $(NASMBOOTFLAGS) boot32.asm -lfat32chs.lst -ofat32chs.bin
1818

1919
fat32lba.bin: boot32lb.asm magic.mac
20-
$(NASM) $(NASMBOOTFLAGS) boot32lb.asm -l$*.lst -ofat32lba.bin
20+
$(NASM) $(NASMBOOTFLAGS) boot32lb.asm -lfat32lba.lst -ofat32lba.bin
2121

2222
oemfat12.bin: oemboot.asm magic.mac
23-
$(NASM) -dISFAT12 $(NASMBOOTFLAGS) oemboot.asm -l$*.lst -ooemfat12.bin
23+
$(NASM) -dISFAT12 $(NASMBOOTFLAGS) oemboot.asm -loemfat12.lst -ooemfat12.bin
2424

2525
oemfat16.bin: oemboot.asm magic.mac
26-
$(NASM) -dISFAT16 $(NASMBOOTFLAGS) oemboot.asm -l$*.lst -ooemfat16.bin
26+
$(NASM) -dISFAT16 $(NASMBOOTFLAGS) oemboot.asm -loemfat16.lst -ooemfat16.bin
2727

2828
clobber: clean
2929
-$(RM) *.bin status.me

0 commit comments

Comments
 (0)