collapseos/recipes/pcat/Makefile

28 lines
470 B
Makefile
Raw Normal View History

TARGET = disk.bin
2020-06-13 04:01:24 +10:00
BASEDIR = ../..
CDIR = $(BASEDIR)/cvm
STAGE = $(CDIR)/stage
2020-06-13 04:01:24 +10:00
.PHONY: all
all: $(TARGET)
mbr.bin: mbr.fs $(STAGE)
cat mbr.fs | $(STAGE) > $@
os.bin: xcomp.fs $(STAGE)
2020-06-13 04:01:24 +10:00
cat xcomp.fs | $(STAGE) > $@
disk.bin: mbr.bin os.bin
cat mbr.bin os.bin > $@
dd if=$(CDIR)/blkfs of=$@ bs=512 seek=16
2020-06-13 04:01:24 +10:00
$(STAGE):
$(MAKE) -C $(CDIR) stage
2020-06-13 04:01:24 +10:00
.PHONY: emul
emul: $(TARGET)
qemu-system-i386 -drive file=$(TARGET),if=floppy,format=raw
.PHONY: clean
clean:
rm *.bin