Some checks are pending
		
		
	
	Build / test (push) Waiting to run
				Docs / test (push) Waiting to run
				
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			256 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			256 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| TARGET = bootsector.bin
 | |
| 
 | |
| FLOPPY_SRCS	= floppy.asm \
 | |
| 			../common/const.inc \
 | |
| 			../common/fat12.inc
 | |
| 
 | |
| .PHONY: all
 | |
| all: $(TARGET)
 | |
| 
 | |
| bootsector.bin: $(FLOPPY_SRCS)
 | |
| 	$(AS) floppy.asm $@
 | |
| 
 | |
| .PHONY: clean
 | |
| clean:
 | |
| 	$(RM) $(TARGET)
 | |
| 
 | |
| .PHONY: install
 | |
| install: $(TARGET)
 |