summaryrefslogtreecommitdiff
path: root/Makefile
blob: 297e6a089aebedf5dc544734cda17ccf8616be5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59

    #####################
    #			#
    # FoolOS Makefile	#
    #			#
    #####################

#TODO: use implicit rules !!

#lets use the size of a 1.44 floppy for a start for our boot img
IMAGE_SIZE=1474560

#final image
all: FoolOS.img

#assembling of final image
FoolOS.img: mbr.bin kernel.bin fill.bin
	cat $^ | head -c $(IMAGE_SIZE) > $@

#some data just to fill up to the target image_size
fill.bin: boot/fill.asm
	nasm -f bin $^ -o $@

#this is the MASTER BOOT RECORD, where our bootloader lives
mbr.bin: boot/mbr.asm
	nasm -f bin $^ -o $@

kernel_entry.o: boot/kernel_entry.asm
	nasm -f elf $^ -o $@


kernel.o: kernel/kernel.c kernel/console.h
	gcc -ffreestanding -m32 -o $@ -c $< -fno-asynchronous-unwind-tables -O0

console.o: kernel/console.c kernel/console.h
	gcc -ffreestanding -m32 -o $@ -c $< -fno-asynchronous-unwind-tables -O0

interrupts.o: kernel/interrupts.c kernel/interrupts.h
	gcc -ffreestanding -m32 -o $@ -c $< -fno-asynchronous-unwind-tables -O0

keyboard.o: kernel/keyboard.c 
	gcc -ffreestanding -m32 -o $@ -c $< -fno-asynchronous-unwind-tables -O0

kernel.bin: kernel_entry.o kernel.o console.o interrupts.o keyboard.o
	ld -o $@ -Ttext 0x1000 --oformat binary -melf_i386 $^ -O0


# dump from vbox
dump: FoolOS.img
	vboxmanage debugvm FoolOs dumpguestcore --filename dump.elf
	xxd dump.elf > dump.xxd

run: FoolOS.img
	bochs

clean:
	-rm *.bin *.o *.img dump.elf dump.xxd

.PHONY: all clean