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.

12 lines
275B

  1. zasm: zasm.c libz80/libz80.so kernel.h zasm.h
  2. cc $< -l z80 -L./libz80 -Wl,-rpath ./libz80 -o $@
  3. libz80/libz80.so: libz80/Makefile
  4. make -C libz80
  5. kernel.h: glue.asm
  6. scas -o - $< | ./bin2c.sh KERNEL > $@
  7. zasm.h: ../zasm.asm
  8. scas -o - -I ./emul $< | ./bin2c.sh ZASM > $@