From 29478baf24532391cd94bd08d94cf867dee976e6 Mon Sep 17 00:00:00 2001 From: James Barnett Date: Sun, 6 Oct 2019 18:39:36 +0100 Subject: Start on ram backed filesystem --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a0ae7a6..a62e0cd 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CC = gcc -CFLAGS = -m32 -std=c99 -fno-stack-protector +CFLAGS = -m32 -std=c99 -fno-stack-protector -Wno-builtin-declaration-mismatch default: build @@ -17,6 +17,8 @@ build: setup kernel/kernel.c kernel/global_descriptor_table.c kernel/gpu/text_mo $(CC) $(CFLAGS) -c os/shell/shell.c -o bin/shell.o $(CC) $(CFLAGS) -c os/stdlib/stdlib.c -o bin/stdlib.o $(CC) $(CFLAGS) -c os/commands/echo.c -o bin/echo.o + $(CC) $(CFLAGS) -c os/commands/files.c -o bin/files.o + $(CC) $(CFLAGS) -c os/filesystem/ramfs.c -o bin/ramfs.o ld -m elf_i386 -T link.ld -o bin/kernel.bin bin/*.o clean: -- cgit v1.2.3