summaryrefslogtreecommitdiffhomepage
path: root/Private/makefile
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-20 10:20:22 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-20 10:20:22 +0200
commit7013c094668be2204b1245496236f0cf6afa07c2 (patch)
tree2a15832577a580e51b55b758cb792d3225870157 /Private/makefile
parente5a591054ea0992acc3cb786d3af9f358febca6d (diff)
MHR-5/MHR-3: Rename PowerPC to POWER, implement NewFSParser::Format
method, documenting code. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/makefile')
-rw-r--r--Private/makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Private/makefile b/Private/makefile
index ffefecf2..b166990e 100644
--- a/Private/makefile
+++ b/Private/makefile
@@ -1,5 +1,5 @@
##################################################
-# (C) Mahrouss Logic, all rights reserved.
+# (C) Mahrouss Logic, all rights reserved.
# This is the microkernel makefile.
##################################################
@@ -24,13 +24,12 @@ ifneq ($(DEBUG_SUPPORT), )
DEBUG = -D__DEBUG__
endif
-SLEEP = sleep 1
COPY = cp
# Add assembler, linker, and object files variables.
ASMFLAGS = -f win64
LDFLAGS = -e Main --subsystem=17
-LDOBJ = $(wildcard Objects/*.obj)
+LDOBJ = Objects/*.obj
# This file is the kernel, responsible of task management, memory, drivers and more.
KERNEL = NewKernel.exe
@@ -53,7 +52,6 @@ newos-amd64-epm: clean
$(ASM) $(ASMFLAGS) HALKit/AMD64/HalSMPCoreManager.asm
$(ASM) $(ASMFLAGS) HALKit/AMD64/HalNewBoot.asm
$(ASM) $(ASMFLAGS) HALKit/AMD64/HalInstallTIB.asm
- $(SLEEP)
$(MOVEALL)
OBJCOPY=x86_64-w64-mingw32-objcopy