Makefile 289 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

all:floppy.img
	scons
	mkdir -p tmp
	sudo mount -t vfat floppy.img tmp -o loop
	sudo cp rtthread.elf tmp/boot/oskernel
	sudo umount tmp

clean:
	scons -c clean

floppy.img:
	wget https://github.com/bajdcc/tinix/raw/master/floppy.img

run:
	qemu-system-i386 -fda floppy.img -boot a -m 64M