X-Git-Url: http://git.dujemihanovic.xyz/%7B%7B%20%24.Site.BaseURL%20%7D%7Dposts/index.xml?a=blobdiff_plain;f=Makefile;h=502430a15416276d15b523929b7ec878ba26867b;hb=refs%2Fheads%2Fmm;hp=a4c88b392be52822dea6e890cacc9b200b7acdcd;hpb=9a7a5d850eae7445098e7c6af99e2a4009bb11b1;p=nameless-os.git diff --git a/Makefile b/Makefile index a4c88b3..502430a 100644 --- a/Makefile +++ b/Makefile @@ -1,31 +1,40 @@ -AS = yasm -LD = i686-elf-ld -CC = i686-elf-gcc - -KERNEL_OBJ = kernel/entry.o kernel/arch/x86/tty/tty.o kernel/kernel.o - -all: boot.img - -boot.img: boot kernel/kernel.bin - cat boot kernel/kernel.bin > $@ - truncate -s1440K $@ - -boot: boot.s - $(AS) -f bin boot.s -o $@ - -kernel/kernel.bin: ${KERNEL_OBJ} - $(LD) -o $@ -T kernel/linker.ld ${KERNEL_OBJ} --oformat=binary - -kernel/entry.o: kernel/entry.s - $(AS) -f elf kernel/entry.s -o $@ - -kernel/arch/x86/tty/tty.o: kernel/arch/x86/tty/tty.c - $(CC) -g -o $@ -ffreestanding -c kernel/arch/x86/tty/tty.c - -kernel/kernel.o: kernel/kernel.c - $(CC) -g -o $@ -Iinclude/arch/x86 -ffreestanding -c kernel/kernel.c +export CROSS_COMPILE = i686-elf- +export AS = yasm +export CC = gcc +export QEMU = qemu-system-i386 -monitor stdio -cpu pentium2 +export GIT_REV = $(shell git describe --long HEAD) +export REAL_CC = $(CROSS_COMPILE)$(CC) +export CFLAGS +export LDFLAGS +export ASFLAGS +MAKEFLAGS += -rR + +default: kernel/kernel.elf bootloader +all: default boot/x86/disk.img +run: all + $(QEMU) -drive file=boot/x86/disk.img,format=raw,throttling.iops-total=100 +debug: all + $(QEMU) -s -S -drive file=boot/x86/disk.img,format=raw,throttling.iops-total=100 + +kernel/kernel.elf: + $(MAKE) -C kernel +bootloader: + $(MAKE) -C boot/x86 + +boot/x86/disk.img: bootloader boot/x86/disk.dump kernel/kernel.elf + truncate -s1G boot/x86/disk.img + sfdisk boot/x86/disk.img < boot/x86/disk.dump + mkfs.fat -F 32 --offset 2048 boot/x86/disk.img + dd if=boot/x86/mbr of=boot/x86/disk.img bs=440 count=1 conv=notrunc + dd if=boot/x86/vbr-fat32 of=boot/x86/disk.img bs=1 skip=90 seek=1048666 conv=notrunc + mcopy -i boot/x86/disk.img@@1M boot/x86/stage3/LOADER.BIN ::. + mcopy -i boot/x86/disk.img@@1M kernel/kernel.elf ::./KERNEL.ELF clean: - rm boot kernel/kernel.bin ${KERNEL_OBJ} boot.img + $(MAKE) -C boot/x86 clean + $(MAKE) -C kernel clean -.PHONY: all clean +# Even though kernel.elf is a real target, it's considered phony so that the +# kernel Makefile is always run. We don't check is the kernel binary up-to-date +# here because we want to be more recursive. +.PHONY: default all clean run debug bootloader kernel/kernel.elf