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.

9 lines
152B

  1. TARGET = stage1.bin
  2. EDIR = ../../emul
  3. STAGE2 = $(EDIR)/stage2
  4. .PHONY: all
  5. all: $(TARGET)
  6. $(TARGET): xcomp.fs $(STAGE2)
  7. cat xcomp.fs | $(STAGE2) > $@