summaryrefslogtreecommitdiffhomepage
path: root/Public/Kits/System.Core/Makefile
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-19 22:50:16 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-19 22:50:16 +0100
commita0f82d57976648c5bfcf165b2e304d2a4c8fb0c7 (patch)
treec24cd3e850a9fc47b352ac8efa50a93b28388925 /Public/Kits/System.Core/Makefile
parentde413aa50bac1342e4ac8c7a66697ea3b551c2e4 (diff)
Kernel:Secret: Fix String class.
Improve kernel APIs.
Diffstat (limited to 'Public/Kits/System.Core/Makefile')
-rw-r--r--Public/Kits/System.Core/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Public/Kits/System.Core/Makefile b/Public/Kits/System.Core/Makefile
index 286c1120..fb0f3e87 100644
--- a/Public/Kits/System.Core/Makefile
+++ b/Public/Kits/System.Core/Makefile
@@ -7,9 +7,9 @@ CC=x86_64-w64-mingw32-g++
CCFLAGS=-shared -ffreestanding -nostdlib -fno-rtti -fno-exceptions -std=c++20 -Xlinker --subsystem=17
OUTPUT=System.Core.dll
-.PHONY: build-core
-build-core:
- $(CC) -I../ -I$(HOME) -I../../../Private/ $(CCFLAGS) $(wildcard *.cxx) $(wildcard *.s) -o $(OUTPUT)
+.PHONY: build-core-amd64
+build-core-amd64:
+ $(CC) -I../ -I$(HOME) -I../../../Private/ $(CCFLAGS) $(wildcard *.cxx) $(wildcard AMD64/*.s) -o $(OUTPUT)
.PHONY: all
all: build-core