From 2c4c95099f87528dd9b4a72990c02e648b696374 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Thu, 3 Oct 2019 18:42:28 +0900 Subject: [PATCH] Include socket.c file in compilation of kernel core --- kernel/core/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/core/Makefile b/kernel/core/Makefile index 8ca96b0..b9a74e0 100644 --- a/kernel/core/Makefile +++ b/kernel/core/Makefile @@ -1,4 +1,4 @@ -OBJECTS = main.o process.o sched.o cxnet.o +OBJECTS = main.o process.o sched.o cxnet.o socket.o OUTPUT = core.o INCLUDES = -I../include -I../../include -I../.. CFLAGS += $(INCLUDES) -- 2.47.3