diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-10 15:41:08 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-10 15:41:08 +0100 |
| commit | 5468ca71a59c9e24c1d392554e8f97f0c1705394 (patch) | |
| tree | 1e8af47da852d4ad02a2ea48a967694c7bfc19c3 /Public/Kits/System.Graphics/Makefile | |
| parent | 94d7585ae766d777f41d07b1a98051d12a6a0256 (diff) | |
Kernel: Reworked StorageKit to add AHCI support.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Public/Kits/System.Graphics/Makefile')
| -rw-r--r-- | Public/Kits/System.Graphics/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Public/Kits/System.Graphics/Makefile b/Public/Kits/System.Graphics/Makefile new file mode 100644 index 00000000..c049857f --- /dev/null +++ b/Public/Kits/System.Graphics/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.Graphics.dll + +.PHONY: build-gkit +build-gkit: + $(CC) -I../ -I$(HOME) -I../../../Private/ $(CCFLAGS) *.cxx -o $(OUTPUT) + +.PHONY: all +all: build-gkit + @echo "[System.Graphics.dll] Build done." + +.PHONY: clean +clean: + rm -f *.o |
