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.

10 lines
168B

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