1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-07 15:18:46 +10:00
collapseos/apps/zasm/emul/Makefile

13 lines
410 B
Makefile
Raw Normal View History

zasm: zasm.c libz80/libz80.o kernel.h zasm.h
cc $< libz80/libz80.o -o $@
libz80/libz80.o: libz80/z80.c
make -C libz80/codegen opcodes
gcc -Wall -ansi -g -c -o libz80/libz80.o libz80/z80.c
kernel.h: glue.asm
scas -o - -I ../../../parts/z80 $< | ./bin2c.sh KERNEL | tee $@ > /dev/null
2019-05-01 05:51:39 +10:00
zasm.h: $(addprefix ../, main.asm instr.asm tok.asm util.asm)
2019-04-21 23:25:52 +10:00
scas -o - -I.. $< | ./bin2c.sh ZASM | tee $@ > /dev/null