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.

11 lines
206B

  1. TARGET = os.sms
  2. BASEDIR = ../..
  3. ZASM = $(BASEDIR)/emul/zasm/zasm
  4. KERNEL = $(BASEDIR)/kernel
  5. APPS = $(BASEDIR)/apps
  6. .PHONY: all
  7. all: $(TARGET)
  8. $(TARGET): glue.asm
  9. $(ZASM) $(KERNEL) $(APPS) < glue.asm > $@