From 5468ca71a59c9e24c1d392554e8f97f0c1705394 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 10 Mar 2024 15:41:08 +0100 Subject: Kernel: Reworked StorageKit to add AHCI support. Signed-off-by: Amlal El Mahrouss --- Public/Kits/System.Core/Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Public/Kits/System.Core/Makefile (limited to 'Public/Kits/System.Core/Makefile') diff --git a/Public/Kits/System.Core/Makefile b/Public/Kits/System.Core/Makefile new file mode 100644 index 00000000..d710b2e8 --- /dev/null +++ b/Public/Kits/System.Core/Makefile @@ -0,0 +1,20 @@ +################################################## +# ; (C) Mahrouss Logic, 2024, all rights reserved. +# This is the System.Graphics Makefile. +################################################## + +CC=x86_64-w64-mingw32-g++ +CCFLAGS=-shared -ffreestanding -fno-rtti -fno-exceptions -std=c++20 +OUTPUT=System.Core.dll + +.PHONY: build-gkit +build-gkit: + $(CC) -I../ -I$(HOME) -I../../../Private/ $(CCFLAGS) *.cxx -o $(OUTPUT) + +.PHONY: all +all: build-gkit + @echo "[System.Core.dll] Build done." + +.PHONY: clean +clean: + rm -f *.o -- cgit v1.2.3