Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
357B

  1. # See /doc/hw/z80/trs80.txt
  2. TARGET = os.bin
  3. BASE = ../../..
  4. BLKPACK = $(BASE)/tools/blkpack
  5. STAGE = $(BASE)/cvm/stage
  6. .PHONY: all
  7. all: $(TARGET)
  8. $(TARGET): xcomp.fs $(STAGE) blkfs
  9. cat xcomp.fs | $(STAGE) blkfs > $@
  10. $(BLKPACK):
  11. $(MAKE) -C ../tools
  12. blkfs: $(BLKPACK)
  13. cat $(BASE)/blk.fs blk.fs | $(BLKPACK) > $@
  14. $(STAGE):
  15. $(MAKE) -C $(BASE)/cvm stage