toaruos/Makefile

55 lines
1.3 KiB
Makefile
Raw Normal View History

2011-01-17 22:58:31 +03:00
include Makefile.inc
DIRS = core
2011-02-05 08:14:54 +03:00
.PHONY: all clean install core run curses initrd
2011-01-16 04:01:19 +03:00
2011-02-05 08:14:54 +03:00
all: kernel
2011-01-16 04:01:19 +03:00
install: kernel
@${ECHO} -n "\e[32m -- Installing floppy image...\e[0m"
@cp bootdisk.src.img bootdisk.img
@mount bootdisk.img /mnt -o loop
@cp kernel /mnt/kernel
@cp initrd /mnt/initrd
@umount /mnt
@cp kernel /boot/toaruos-kernel
@cp initrd /boot/toaruos-initrd
@${ECHO} "\r\e[32;1m -- Floppy image created. \e[0m"
2011-01-16 04:01:19 +03:00
run: bootdisk.img
qemu -fda bootdisk.img
curses: bootdisk.img
@qemu -curses -fda bootdisk.img
2011-01-17 22:58:31 +03:00
kernel: start.o link.ld main.o core
@${ECHO} -n "\e[32m LD $<\e[0m"
@${LD} -T link.ld -o kernel *.o core/*.o core/fs/*.o
@${ECHO} "\r\e[32;1m LD $<\e[0m"
2011-01-16 04:01:19 +03:00
%.o: %.c
@${ECHO} -n "\e[32m CC $<\e[0m"
@${CC} ${CFLAGS} -I./include -c -o $@ $<
@${ECHO} "\r\e[32;1m CC $<\e[0m"
2011-01-17 22:58:31 +03:00
core:
@cd core; ${MAKE} ${MFLAGS}
2011-01-16 04:01:19 +03:00
start.o: start.asm
@${ECHO} -n "\e[32m nasm start.asm\e[0m"
@nasm -f elf -o start.o start.asm
@${ECHO} "\r\e[32;1m nasm start.asm\e[0m"
2011-01-16 04:01:19 +03:00
initrd: fs
@${ECHO} -n "\e[32m initrd Generating initial RAM disk\e[0m"
@-rm -f initrd
@genext2fs -d fs -q -b 249 initrd
@${ECHO} "\r\e[32;1m initrd Generated initial RAM disk image\e[0m"
2011-01-16 04:01:19 +03:00
clean:
@-rm -f *.o kernel
@-rm -f bootdisk.img
@-rm -f initrd
@-for d in ${DIRS}; do (cd $$d; ${MAKE} clean); done