diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-08-20 15:55:03 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-08-20 15:55:03 +0200 |
| commit | dc164927e71d760a41494ab1edf8e3deeda401db (patch) | |
| tree | 65253b4a5e443c599341d5972b58449388a4b2b1 /Makefile | |
| parent | 46063e75f3f81dfb532fa5772c88e9027a0faebd (diff) | |
started implementing floppy driver etc.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -32,6 +32,12 @@ kernel_entry.o: boot/kernel_entry.asm kernel.o: kernel/kernel.c kernel/console.h gcc -ffreestanding -m32 -o $@ -c $< -fno-asynchronous-unwind-tables -O0 +x86.o: kernel/x86.c + gcc -ffreestanding -m32 -o $@ -c $< -fno-asynchronous-unwind-tables -O0 + +floppy.o: kernel/floppy.c + gcc -ffreestanding -m32 -o $@ -c $< -fno-asynchronous-unwind-tables -O0 + vmem.o: kernel/vmem.c gcc -ffreestanding -m32 -o $@ -c $< -fno-asynchronous-unwind-tables -O0 @@ -59,7 +65,7 @@ timer.o: kernel/timer.c shell.o: kernel/shell.c gcc -ffreestanding -m32 -o $@ -c $< -fno-asynchronous-unwind-tables -O0 -kernel.bin: kernel_entry.o kernel.o console.o interrupts.o keyboard.o timer.o shell.o mem.o vmem.o pci.o e1000.o +kernel.bin: kernel_entry.o kernel.o console.o interrupts.o keyboard.o timer.o floppy.o x86.o shell.o mem.o vmem.o pci.o e1000.o ld -o $@ -Ttext 0x1000 --oformat binary -melf_i386 $^ -O0 |
