summaryrefslogtreecommitdiffhomepage
path: root/Boot/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Boot/makefile')
-rw-r--r--Boot/makefile20
1 files changed, 10 insertions, 10 deletions
diff --git a/Boot/makefile b/Boot/makefile
index 4b4ca293..63883321 100644
--- a/Boot/makefile
+++ b/Boot/makefile
@@ -27,10 +27,10 @@ IMG=epm.img
IMG_2=epm-slave.img
EMU_FLAGS=-net none -smp 4,sockets=1,cores=4,threads=1 -m 4G -M q35 \
- -bios Source/$(BIOS) -device piix3-ide,id=ide \
+ -bios Sources/$(BIOS) -device piix3-ide,id=ide \
-drive id=disk,file=$(IMG),format=raw,if=none \
-device ide-hd,drive=disk,bus=ide.0 -drive \
- file=fat:rw:Source/Root,index=2,format=raw -d int -hdd $(IMG_2)
+ file=fat:rw:Sources/Root,index=2,format=raw -d int -hdd $(IMG_2)
LD_FLAGS=-e Main --subsystem=10
@@ -59,11 +59,11 @@ invalid-recipe:
.PHONY: all
all: compile-amd64
- mkdir -p Source/Root/EFI/BOOT
- $(LD_GNU) $(OBJ) $(LD_FLAGS) -o Source/$(BOOT_LOADER)
- $(COPY) Source/$(BOOT_LOADER) Source/Root/EFI/BOOT/BOOTX64.EFI
- $(COPY) Source/$(BOOT_LOADER) Source/Root/EFI/BOOT/NEWBOOT.EFI
- $(COPY) ../Kernel/$(KERNEL) Source/Root/$(KERNEL)
+ mkdir -p Sources/Root/EFI/BOOT
+ $(LD_GNU) $(OBJ) $(LD_FLAGS) -o Sources/$(BOOT_LOADER)
+ $(COPY) Sources/$(BOOT_LOADER) Sources/Root/EFI/BOOT/BOOTX64.EFI
+ $(COPY) Sources/$(BOOT_LOADER) Sources/Root/EFI/BOOT/NEWBOOT.EFI
+ $(COPY) ../Kernel/$(KERNEL) Sources/Root/$(KERNEL)
ifneq ($(DEBUG_SUPPORT), )
DEBUG = -D__DEBUG__
@@ -73,9 +73,9 @@ endif
compile-amd64:
$(RESCMD)
$(CC_GNU) $(NEWOS_MODEL) $(STANDALONE_MACRO) $(FLAG_GNU) $(DEBUG) \
- $(wildcard Source/HEL/AMD64/*.cxx) \
- $(wildcard Source/HEL/AMD64/*.S)
- $(wildcard Source/*.cxx)
+ $(wildcard Sources/HEL/AMD64/*.cxx) \
+ $(wildcard Sources/HEL/AMD64/*.S)
+ $(wildcard Sources/*.cxx)
.PHONY: run-efi-amd64
run-efi-amd64: