From: Matthias Kruk Date: Thu, 3 Oct 2019 09:42:28 +0000 (+0900) Subject: Include socket.c file in compilation of kernel core X-Git-Url: https://git.corax.cc/?a=commitdiff_plain;h=2c4c95099f87528dd9b4a72990c02e648b696374;p=corax Include socket.c file in compilation of kernel core --- 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)