1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-07 01:58:46 +10:00
collapseos/recipes/pcat/Makefile
2020-06-12 14:03:31 -04:00

17 lines
267 B
Makefile

TARGET = boot.bin
BASEDIR = ../..
EDIR = $(BASEDIR)/emul
STAGE = $(EDIR)/stage
.PHONY: all
all: $(TARGET)
$(TARGET): xcomp.fs $(STAGE)
cat xcomp.fs | $(STAGE) > $@
$(STAGE):
$(MAKE) -C $(EDIR) stage
.PHONY: emul
emul: $(TARGET)
qemu-system-i386 -fda $(TARGET)