os-z80/Tupfile

14 lines
405 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/libvfs/libvfs.a libs/libstd/libstd.a
2023-01-29 11:03:53 -06:00
: foreach *.z80 |> !as |>
: foreach *.o | $(LDLIBS) |> !ld |> %B.elf
2023-01-29 11:03:53 -06:00
: 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