Fixed kernel's Makefile by removing bootbios target
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 1m7s
Build system / Build (pull_request) Successful in 12m30s

This commit is contained in:
2025-06-13 12:32:32 +02:00
parent a7ada1c586
commit c112873dbd

View File

@@ -4,9 +4,9 @@ languages=en_US|ru_RU|de_DE|et_EE|es_ES
.PHONY: all kernel bootloader clean
all: kernel bootloader bootbios
all: kernel bootloader
kernel: check_lang bootbios
kernel: check_lang
@echo "*** building kernel with language '$(lang)' ..."
@mkdir -p bin
@echo "lang fix $(lang)" > lang.inc
@@ -15,14 +15,6 @@ kernel: check_lang bootbios
@$(FASM) $(FLAGS) -dUEFI=1 kernel.asm bin/kernel.bin
@rm -f lang.inc
bootbios: check_lang
@echo "*** building bootbios.bin with language '$(lang)' ..."
@mkdir -p bin
@echo "lang fix $(lang)" > lang.inc
@echo "--- building 'bootbios.bin' ..."
@$(FASM) $(FLAGS) bootbios.asm bootbios.bin
@rm -f lang.inc
bootloader: check_lang
@echo "*** building bootloader with language '$(lang)' ..."
@mkdir -p bin