FreeDOS/boot/boot.mak
Jim Tabor b7590bbfc0 Clean up and Release
git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@11 6ac86273-5f31-0410-b378-82cca8765d1b
2000-05-11 03:57:10 +00:00

60 lines
1.2 KiB
Makefile

#
# makefile for DOS-C boot
#
# $Id$
#
# $Log$
# Revision 1.2 2000/05/11 03:56:42 jimtabor
# Clean up and Release
#
# Revision 1.3 1999/04/23 03:44:17 jprice
# Ported to NASM by ror4. Improvements
#
# Revision 1.2 1999/04/01 07:23:20 jprice
# New boot loader
#
# Revision 1.1.1.1 1999/03/29 15:39:39 jprice
# New version without IPL.SYS
#
# Revision 1.3 1999/02/09 04:49:17 jprice
# Make makefile use common config.mak file
#
# Revision 1.2 1999/01/21 05:03:58 jprice
# Formating.
#
# Revision 1.1.1.1 1999/01/20 05:51:00 jprice
# Imported sources
#
#
# Rev 1.3 10 Jan 1997 4:51:54 patv
#Changed to use FreeDOS exe2bin and support new boot code
#
# Rev 1.2 17 Dec 1996 12:52:32 patv
#Converted to FreeDOS exe2bin.
#
# Rev 1.1 29 Aug 1996 13:06:50 patv
#Bug fixes for v0.91b
#
# Rev 1.0 02 Jul 1995 9:11:26 patv
#Initial revision.
#
!include "..\config.mak"
production: b_fat12.bin b_fat16.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
clobber: clean
$(RM) b_fat12.bin b_fat16.bin status.me
clean:
$(RM) *.lst *.map *.bak *.obj