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.

14 lines
203B

  1. TARGET = os.bin
  2. BASEDIR = ../..
  3. EDIR = $(BASEDIR)/emul
  4. STAGE = $(EDIR)/stage
  5. .PHONY: all
  6. all: $(TARGET)
  7. $(TARGET): xcomp.fs $(STAGE)
  8. cat xcomp.fs | $(STAGE) > $@
  9. $(STAGE):
  10. $(MAKE) -C $(EDIR) stage