summaryrefslogtreecommitdiffhomepage
path: root/Public/Kits/System.Core/Makefile
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-17 21:38:54 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-17 21:39:15 +0100
commita4bfc396a78ddd553de519ab927d8479d0c3c45d (patch)
tree6ff41607784ee4db226843c1aec6b06d4be5a779 /Public/Kits/System.Core/Makefile
parenta8366afaf39321ae2bbae70740f5ca65bee06769 (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.Core/Makefile')
-rw-r--r--Public/Kits/System.Core/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Public/Kits/System.Core/Makefile b/Public/Kits/System.Core/Makefile
index d710b2e8..f358dfa5 100644
--- a/Public/Kits/System.Core/Makefile
+++ b/Public/Kits/System.Core/Makefile
@@ -1,18 +1,18 @@
##################################################
-# ; (C) Mahrouss Logic, 2024, all rights reserved.
+# (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
+CCFLAGS=-shared -ffreestanding -fno-rtti -fno-exceptions -std=c++20 -Xlinker --subsystem=17
OUTPUT=System.Core.dll
-.PHONY: build-gkit
-build-gkit:
- $(CC) -I../ -I$(HOME) -I../../../Private/ $(CCFLAGS) *.cxx -o $(OUTPUT)
+.PHONY: build-core
+build-core:
+ $(CC) -I../ -I$(HOME) -I../../../Private/ $(CCFLAGS) $(wildcard *.cxx) $(wildcard *.s) -o $(OUTPUT)
.PHONY: all
-all: build-gkit
+all: build-core
@echo "[System.Core.dll] Build done."
.PHONY: clean