mirror of
				https://github.com/FDOS/kernel.git
				synced 2025-10-31 03:14:40 +01:00 
			
		
		
		
	git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@688 6ac86273-5f31-0410-b378-82cca8765d1b
		
			
				
	
	
		
			30 lines
		
	
	
		
			510 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			510 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # makefile for DOS-C boot
 | |
| #
 | |
| # $Id$
 | |
| #
 | |
| 
 | |
| 
 | |
| !include "../mkfiles/generic.mak"
 | |
| 
 | |
| production:     fat12com.bin fat16com.bin fat32chs.bin fat32lba.bin
 | |
| 
 | |
| fat12com.bin:    boot.asm
 | |
| 		$(NASM) -dISFAT12 boot.asm -ofat12com.bin
 | |
| 
 | |
| fat16com.bin:    boot.asm
 | |
| 		$(NASM) -dISFAT16 boot.asm -ofat16com.bin
 | |
| 
 | |
| fat32chs.bin:    boot32.asm
 | |
| 		$(NASM) boot32.asm -ofat32chs.bin
 | |
| 
 | |
| fat32lba.bin:    boot32lb.asm
 | |
| 		$(NASM) boot32lb.asm -ofat32lba.bin
 | |
| 
 | |
| clobber:        clean
 | |
| 		-$(RM) *.bin status.me
 | |
| 
 | |
| clean:
 | |
| 		-$(RM) *.lst *.map *.bak *.obj
 | |
| 
 |