diff options
Diffstat (limited to 'Public/Developer/System.Core/Makefile')
| -rw-r--r-- | Public/Developer/System.Core/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Public/Developer/System.Core/Makefile b/Public/Developer/System.Core/Makefile new file mode 100644 index 00000000..28ce0bea --- /dev/null +++ b/Public/Developer/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 -nostdlib -fno-rtti -fno-exceptions -std=c++20 -Xlinker --subsystem=17 +OUTPUT=System.Core.lib + +.PHONY: build-core-amd64 +build-core-amd64: + $(CC) -I../ -I$(HOME) -I../../../Private/ $(CCFLAGS) $(wildcard Sources/*.cxx) $(wildcard AMD64/*.s) -o $(OUTPUT) + +.PHONY: all +all: build-core + @echo "[System.Core.dll] Build done." + +.PHONY: clean +clean: + rm -f *.o |
