mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-25 06:14:18 +08:00
Fix missing build directory
Currently, `build/bootloader` is the first make target being executed during `make all`. However, after a clean checkout, the `build` directory does not yet exist. Create it accordingly.
This commit is contained in:
parent
024ba4386b
commit
49867f754c
@ -1,4 +1,5 @@
|
||||
build/bootloader: bootloader/$(ARCH)/**
|
||||
mkdir -p build
|
||||
nasm -f bin -o $@ -D ARCH_$(ARCH) -ibootloader/$(ARCH)/ bootloader/$(ARCH)/disk.asm
|
||||
|
||||
build/harddrive.bin: build/filesystem.bin bootloader/$(ARCH)/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user