WIP: libc.obj: Impl allocator #338

Draft
Egor00f wants to merge 49 commits from Egor00f/kolibrios:libc.obj--add-allocator into main
Showing only changes of commit cfacd6c89e - Show all commits

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