ed6b46719c
git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@481 6ac86273-5f31-0410-b378-82cca8765d1b
27 lines
449 B
Makefile
27 lines
449 B
Makefile
#
|
|
# makefile for DOS-C boot
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
|
|
!include "..\mkfiles\generic.mak"
|
|
|
|
production: b_fat12.bin b_fat16.bin b_fat32.bin
|
|
|
|
b_fat12.bin: boot.asm
|
|
$(NASM) -dISFAT12 boot.asm -ob_fat12.bin
|
|
|
|
b_fat16.bin: boot.asm
|
|
$(NASM) -dISFAT16 boot.asm -ob_fat16.bin
|
|
|
|
b_fat32.bin: boot32.asm
|
|
$(NASM) boot32.asm -ob_fat32.bin
|
|
|
|
clobber: clean
|
|
-$(RM) b_fat12.bin b_fat16.bin b_fat32.bin status.me
|
|
|
|
clean:
|
|
-$(RM) *.lst *.map *.bak *.obj
|
|
|