14 lines
205 B
Makefile
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 |