collapseos/recipes/sms/Makefile

20 lines
329 B
Makefile
Raw Normal View History

2020-05-15 12:15:31 +10:00
TARGET = os.bin
STAGE = ../../emul/stage
EMUL = ../../emul/hw/sms/sms
.PHONY: all
2020-05-15 12:15:31 +10:00
all: $(TARGET)
$(TARGET): xcomp.fs $(STAGE)
cat xcomp.fs | $(STAGE) > $@
2020-05-16 11:49:10 +10:00
os.sms: $(TARGET)
dd if=$(TARGET) bs=32752 conv=sync | cat - sega.bin > $@
2020-05-15 12:15:31 +10:00
$(EMUL):
$(MAKE) -C ${@:%/sms=%}
.PHONY: emul
emul: $(EMUL) $(TARGET)
$(EMUL) $(TARGET)