Add VFS, start of initrd
diff --git a/src/kernel/Makefile b/src/kernel/Makefile
index 4137f84..3cb20f8 100644
--- a/src/kernel/Makefile
+++ b/src/kernel/Makefile
@@ -13,15 +13,17 @@
switch_table.o \
scan_codes.o \
kheap.o \
- alloc.o
+ alloc.o \
+ vfs.o
+
+JAYROOT = ../../
CFLAGS = -nostdlib -nostdinc -fno-builtin -fno-stack-protector -ffreestanding \
- -m32 -O2 -g -Wall -Wno-unused-function -Wno-unused-variable
+ -m32 -O2 -g -Wall -Wno-unused-function -Wno-unused-variable \
+ -I$(JAYROOT)/include
LDFLAGS = -Tlink.ld -melf_i386
ASMFLAGS = -felf
QEMUFLAGS = -d cpu_reset
-JAYROOT = ../../
-
kernel.elf: $(SOURCES)
ld $(LDFLAGS) -o $@ $^