Initial commit

This commit is contained in:
2022-01-02 16:49:01 +01:00
commit fdcb46d6f2
10 changed files with 134 additions and 0 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
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