mirror of
				https://github.com/tailix/kernel.git
				synced 2025-10-30 23:28:06 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			263 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			263 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
run: all
 | 
						|
	qemu-system-i386 -cdrom image.iso
 | 
						|
 | 
						|
all:
 | 
						|
	grub-file --is-x86-multiboot2 "$(KERNEL)"
 | 
						|
	cp "$(KERNEL)" rootfs/boot/kernelmq
 | 
						|
	cp "$(DUMMY)"  rootfs/boot/dummy
 | 
						|
	grub-mkrescue rootfs -o image.iso
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f image.iso rootfs/boot/kernelmq rootfs/boot/dummy
 |