os-z80/Tupfile

14 lines
371 B
Plaintext
Raw Normal View History

2023-01-29 11:03:53 -06:00
include_rules
export RUSTUP_HOME
RUSTC_FLAGS = -C debuginfo=0 -C opt-level=3 --edition 2021
LDLIBS = libs/*.o
: foreach *.z80 |> !as |>
: foreach *.o | libs/*.o |> !ld |> %B.elf
: initrd_maker.rs |> rustc $(RUSTC_FLAGS) -o %o %f |> bin/%B
: kernel/kernel.elf *.elf | bin/initrd_maker |> bin/initrd_maker %f |> initrd
: boot/boot.bin initrd |> cat %f > %o |> os.dsk