mittos65/Makefile
2022-01-02 16:49:01 +01:00

14 lines
205 B
Makefile

ifeq ($(BUILDROOT),)
$(error BUILDROOT IS NOT SET!)
endif
SYSROOT := $(BUILDROOT)/sysroot
DIST := $(BUILDROOT)/dist/mittos.iso
$(DIST):
grub-mkrescue -o $@ $(SYSROOT)
install: $(DIST)
.PHONY: install