2019-07-22 05:37:03 +10:00
|
|
|
ZASM = ../../../tools/zasm.sh
|
|
|
|
KERNEL = ../../../kernel
|
|
|
|
APPS = ../../../apps
|
|
|
|
|
2019-07-23 00:10:42 +10:00
|
|
|
.PHONY: all clean
|
|
|
|
all: os.sms
|
2019-07-22 05:37:03 +10:00
|
|
|
|
2019-11-16 02:33:13 +11:00
|
|
|
# -o value synced with offset in glue.asm
|
2019-07-22 05:37:03 +10:00
|
|
|
ed.bin: $(APPS)/ed/glue.asm
|
2019-11-16 02:33:13 +11:00
|
|
|
$(ZASM) -o 19 $(KERNEL) $(APPS) user.h < $< > $@
|
2019-07-22 05:37:03 +10:00
|
|
|
|
2019-11-16 02:33:13 +11:00
|
|
|
# -o value synced with offset in glue.asm
|
2019-07-22 05:37:03 +10:00
|
|
|
zasm.bin: $(APPS)/zasm/glue.asm
|
2019-11-16 02:33:13 +11:00
|
|
|
$(ZASM) -o 1d $(KERNEL) $(APPS) user.h < $< > $@
|
2019-07-22 05:37:03 +10:00
|
|
|
|
|
|
|
os.sms: glue.asm ed.bin zasm.bin
|
|
|
|
$(ZASM) $(KERNEL) ed.bin zasm.bin < $< > $@
|
|
|
|
|
2019-07-23 00:10:42 +10:00
|
|
|
clean:
|
|
|
|
rm -f os.sms ed.bin zasm.bin
|