From b79f0003ac2daaec1723b374e4be3a58b3cf4706 Mon Sep 17 00:00:00 2001 From: Kenneth J Davis Date: Sun, 17 Dec 2023 22:10:32 -0500 Subject: [PATCH] only create list file if requested, avoids error due to duplicated command line option for generating list file --- boot/makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/boot/makefile b/boot/makefile index 7f3eb84..dab48b8 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 - $(NASM) -dISFAT12 $(NASMFLAGS) boot.asm -l$*.lst -ofat12com.bin + $(NASM) -dISFAT12 $(NASMFLAGS) boot.asm -ofat12com.bin fat16com.bin: boot.asm - $(NASM) -dISFAT16 $(NASMFLAGS) boot.asm -l$*.lst -ofat16com.bin + $(NASM) -dISFAT16 $(NASMFLAGS) boot.asm -ofat16com.bin fat32chs.bin: boot32.asm - $(NASM) $(NASMFLAGS) boot32.asm -l$*.lst -ofat32chs.bin + $(NASM) $(NASMFLAGS) boot32.asm -ofat32chs.bin fat32lba.bin: boot32lb.asm - $(NASM) $(NASMFLAGS) boot32lb.asm -l$*.lst -ofat32lba.bin + $(NASM) $(NASMFLAGS) boot32lb.asm -ofat32lba.bin oemfat12.bin: oemboot.asm - $(NASM) -dISFAT12 $(NASMFLAGS) oemboot.asm -l$*.lst -ooemfat12.bin + $(NASM) -dISFAT12 $(NASMFLAGS) oemboot.asm -ooemfat12.bin oemfat16.bin: oemboot.asm - $(NASM) -dISFAT16 $(NASMFLAGS) oemboot.asm -l$*.lst -ooemfat16.bin + $(NASM) -dISFAT16 $(NASMFLAGS) oemboot.asm -ooemfat16.bin clobber: clean -$(RM) *.bin status.me