From 1ce16b83dba0326b13dfa3399c1497ac6b1af14d Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 27 Mar 2024 17:38:23 +0100 Subject: Kernel && Developer: Developer: - Rework System API to use C instead of C++ - Add new calls in Thread.h - Documented code. Kernel: - Rework handover stage, separated the Processor specific code from the cross platform code. Signed-off-by: Amlal El Mahrouss --- Public/Developer/System.Core/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Public/Developer/System.Core/Makefile') diff --git a/Public/Developer/System.Core/Makefile b/Public/Developer/System.Core/Makefile index 11e4760f..0f20cc72 100644 --- a/Public/Developer/System.Core/Makefile +++ b/Public/Developer/System.Core/Makefile @@ -9,7 +9,7 @@ OUTPUT=System.Core.lib .PHONY: build-core-amd64 build-core-amd64: - $(CC) -I../ -I$(HOME) -I../../../Private/ $(CCFLAGS) $(wildcard Sources/*.cxx) $(wildcard AMD64/*.s) -o $(OUTPUT) + $(CC) -I../ -I$(HOME) -I../../../Private/ $(CCFLAGS) $(wildcard Sources/*.c) $(wildcard Sources/*.cxx) $(wildcard AMD64/*.s) -o $(OUTPUT) .PHONY: all all: build-core -- cgit v1.2.3