From 5b4f91a20017dce96d83806d42be5a07ae2ca52c Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Mon, 10 Feb 2020 19:50:29 +0900 Subject: [PATCH] kernel/core: Exclude sched.c from compilation --- kernel/core/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/core/Makefile b/kernel/core/Makefile index 4d13743..68090c5 100644 --- a/kernel/core/Makefile +++ b/kernel/core/Makefile @@ -1,4 +1,4 @@ -OBJECTS = main.o process.o sched.o cxipc.o syscall.o posixcall.o net.o signal.o +OBJECTS = main.o process.o cxipc.o syscall.o posixcall.o net.o signal.o OUTPUT = core.o INCLUDES = -I../include -I../../include -I../.. CFLAGS += $(INCLUDES) -- 2.47.3