#
# makefile for DOS-C boot
#
# $Id: makefile,v 1.4 2002/11/18 22:48:37 bartoldeman Exp $
#


!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

