From 38abeed649dd24fa508327024ded5cfd065f3400 Mon Sep 17 00:00:00 2001 From: Kenneth J Davis Date: Thu, 30 Jul 2009 03:23:05 +0000 Subject: [PATCH] create list file when assembling boot sectors git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@1492 6ac86273-5f31-0410-b378-82cca8765d1b --- boot/makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/boot/makefile b/boot/makefile index ebd3ef6..51c9107 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 boot.asm -ofat12com.bin + $(NASM) -dISFAT12 boot.asm -l$*.lst -ofat12com.bin fat16com.bin: boot.asm - $(NASM) -dISFAT16 boot.asm -ofat16com.bin + $(NASM) -dISFAT16 boot.asm -l$*.lst -ofat16com.bin fat32chs.bin: boot32.asm - $(NASM) boot32.asm -ofat32chs.bin + $(NASM) boot32.asm -l$*.lst -ofat32chs.bin fat32lba.bin: boot32lb.asm - $(NASM) boot32lb.asm -ofat32lba.bin + $(NASM) boot32lb.asm -l$*.lst -ofat32lba.bin oemfat12.bin: oemboot.asm - $(NASM) -dISFAT12 oemboot.asm -ooemfat12.bin + $(NASM) -dISFAT12 oemboot.asm -l$*.lst -ooemfat12.bin oemfat16.bin: oemboot.asm - $(NASM) -dISFAT16 oemboot.asm -ooemfat16.bin + $(NASM) -dISFAT16 oemboot.asm -l$*.lst -ooemfat16.bin clobber: clean -$(RM) *.bin status.me