From 35dd5943b9353d8a6b84c6f41db37db47040d132 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 13 Oct 2022 09:34:16 +0300 Subject: [PATCH] Fixed Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1a22ff8b..7ca8e43a 100644 --- a/Makefile +++ b/Makefile @@ -103,7 +103,7 @@ rebuild: clean build # Quickly build the operating system (it won't create the ISO file and doxygen documentation) build_lynx: ifeq ($(BOOTLOADER), lynx) - make --quiet -C boot build + make --quiet -C Lynx build endif build_kernel: @@ -122,7 +122,7 @@ build_image: cp Kernel/kernel.fsys initrd.tar.gz \ iso_tmp_data/ ifeq ($(BOOTLOADER), lynx) - cp tools/lynx.cfg boot/BIOS/loader.bin boot/UEFI/efi-loader.bin iso_tmp_data/ + cp tools/lynx.cfg Lynx/loader.bin Lynx/efi-loader.bin iso_tmp_data/ xorriso -as mkisofs -b loader.bin \ -no-emul-boot -boot-load-size 4 -boot-info-table \ --efi-boot efi-loader.bin -V FENNIX \