summaryrefslogtreecommitdiff
path: root/kernel/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/Makefile')
-rw-r--r--kernel/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/Makefile b/kernel/Makefile
index 29b5566..f9e14e8 100644
--- a/kernel/Makefile
+++ b/kernel/Makefile
@@ -1,7 +1,7 @@
TARGET = kernel.o
-SRCS = $(wildcard *.c)
-ASMS = $(wildcard *.s)
+SRCS = $(wildcard *.c) $(wildcard fs/*.c)
+ASMS = $(wildcard *.s) $(wildcard fs/*.s)
OBJS = $(SRCS:.c=.o) $(ASMS:.s=.o)
CFLAGS = -m32 -I../include -ffreestanding -nostdinc -nostdlib -fno-stack-protector -fno-pie -gstabs+ -g