]> git.dujemihanovic.xyz Git - nameless-os.git/blob - Makefile
738fb0c89192daa87e3ca2a3c2e65e1b6a43fcd7
[nameless-os.git] / Makefile
1 export AS = yasm
2 export CC = i686-elf-gcc
3 QEMU = qemu-system-i386 -monitor stdio
4
5 GIT_REV = $(shell git rev-parse --short HEAD)
6
7 CFLAGS = -std=gnu89 -g -Iinclude/arch/x86 -ffreestanding -DGIT_COMMIT=\"$(GIT_REV)\"
8
9 KERNEL_OBJ = kernel/entry.o kernel/arch/x86/tty/tty.o kernel/drivers/irq/i8259a.o kernel/arch/x86/irq/idt.o kernel/arch/x86/irq/sample_handler.o kernel/kernel.o
10
11 default: kernel/kernel.elf bootloader
12
13 all: default boot/x86/disk.img
14
15 bootloader: boot/x86/mbr boot/x86/vbr-fat32 boot/x86/stage3/LOADER.BIN
16
17 run: all
18 $(QEMU) boot/x86/disk.img
19
20 boot/x86/mbr: boot/x86/mbr.s
21 $(MAKE) -C boot/x86
22 boot/x86/vbr-fat32: boot/x86/vbr-fat32.s boot/x86/fat32/*.s
23 $(MAKE) -C boot/x86
24 boot/x86/stage3/LOADER.BIN: boot/x86/stage3/*.s boot/x86/fat32/*.s
25 $(MAKE) -C boot/x86
26
27 boot/x86/disk.img: boot/x86/mbr boot/x86/vbr-fat32 boot/x86/stage3/LOADER.BIN boot/x86/disk.dump
28 truncate -s1G boot/x86/disk.img
29 sfdisk boot/x86/disk.img < boot/x86/disk.dump
30 mkfs.fat -F 32 --offset 2048 boot/x86/disk.img
31 dd if=boot/x86/mbr of=boot/x86/disk.img bs=440 count=1 conv=notrunc
32 dd if=boot/x86/vbr-fat32 of=boot/x86/disk.img bs=1 skip=90 seek=1048666 conv=notrunc
33 mcopy -i boot/x86/disk.img@@1M boot/x86/stage3/LOADER.BIN ::.
34 mcopy -i boot/x86/disk.img@@1M kernel/kernel.bin ::./KERNEL.BIN
35
36 kernel/kernel.bin: ${KERNEL_OBJ}
37 $(CC) -ffreestanding -nostdlib -o $@ -T kernel/linker.ld ${KERNEL_OBJ}
38
39 kernel/entry.o: kernel/entry.s
40 $(AS) -f elf kernel/entry.s -o $@
41
42 kernel/arch/x86/irq/sample_handler.o: kernel/arch/x86/irq/sample_handler.c
43 $(CC) $(CFLAGS) -mgeneral-regs-only -c kernel/arch/x86/irq/sample_handler.c -o $@
44
45 kernel/kernel.elf: kernel/kernel.bin
46 $(CC) -ffreestanding -nostdlib -o $@ -T kernel/linker.ld ${KERNEL_OBJ} -Wl,--oformat=elf32-i386
47
48 clean:
49 -rm kernel/kernel.bin kernel/kernel.elf ${KERNEL_OBJ}
50 cd boot/x86 && $(MAKE) clean
51
52 .PHONY: default all clean run bootloader