diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-17 21:38:54 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-17 21:39:15 +0100 |
| commit | a4bfc396a78ddd553de519ab927d8479d0c3c45d (patch) | |
| tree | 6ff41607784ee4db226843c1aec6b06d4be5a779 /Public/Kits/System.Graphics/Makefile | |
| parent | a8366afaf39321ae2bbae70740f5ca65bee06769 (diff) | |
unrelated: See below.
Public: Kits: Implemented System API and the concept of object handles.
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 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Public/Kits/System.Graphics/Makefile b/Public/Kits/System.Graphics/Makefile index c049857f..1530f699 100644 --- a/Public/Kits/System.Graphics/Makefile +++ b/Public/Kits/System.Graphics/Makefile @@ -1,5 +1,5 @@ ################################################## -# ; (C) Mahrouss Logic, 2024, all rights reserved. +# (C) Mahrouss Logic, 2024, all rights reserved. # This is the System.Graphics Makefile. ################################################## @@ -7,12 +7,12 @@ 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: +.PHONY: build-gfx +build-gfx: $(CC) -I../ -I$(HOME) -I../../../Private/ $(CCFLAGS) *.cxx -o $(OUTPUT) .PHONY: all -all: build-gkit +all: build-gfx @echo "[System.Graphics.dll] Build done." .PHONY: clean |
