summaryrefslogtreecommitdiffhomepage
path: root/Private/NewBoot/Source/makefile
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-26 14:23:37 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-26 14:28:09 +0200
commit313c303fab092b1c45e615f960826375e7eef093 (patch)
treee7cddb857e50a2cca41a5364b4240cd8c6c0ec13 /Private/NewBoot/Source/makefile
parentfc19214c74c39177f85a4ee0748ac4ec9c1d4f33 (diff)
MHR-16: Last commit on branch, merging now.
- boot manager and micro kernel have been unified, as the USA design states. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/NewBoot/Source/makefile')
-rw-r--r--Private/NewBoot/Source/makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Private/NewBoot/Source/makefile b/Private/NewBoot/Source/makefile
index 92128b02..8306f844 100644
--- a/Private/NewBoot/Source/makefile
+++ b/Private/NewBoot/Source/makefile
@@ -28,7 +28,7 @@ EMU_FLAGS=-net none -smp 4 -m 8G -M q35 -bios OVMF.fd -device piix3-ide,id=ide -
LD_FLAGS=-e Main --subsystem=10
-OBJ=*.o
+OBJ=*.o ../../Objects/*.obj
REM=rm
REM_FLAG=-f
@@ -53,7 +53,6 @@ all: compile-amd64
$(LD_GNU) $(OBJ) $(LD_FLAGS) -o $(BOOT_LOADER)
$(COPY) $(BOOT_LOADER) CDROM/EFI/BOOT/BOOTX64.EFI
$(COPY) $(BOOT_LOADER) CDROM/EFI/BOOT/NEWBOOT.EFI
- $(COPY) ../../$(KERNEL) CDROM/$(KERNEL)
ifneq ($(DEBUG_SUPPORT), )
DEBUG = -D__DEBUG__
@@ -61,7 +60,7 @@ endif
.PHONY: compile-amd64
compile-amd64:
- $(WINDRES) BootloaderRsrc.rsrc -O coff -o BootloaderRsrc.o
+ # $(WINDRES) BootloaderRsrc.rsrc -O coff -o BootloaderRsrc.o
$(CC_GNU) $(NEWOS_MODEL) $(FLAG_GNU) $(DEBUG) $(wildcard HEL/AMD64/*.cxx) $(wildcard HEL/AMD64/*.S) $(wildcard *.cxx)
.PHONY: run-efi-amd64