Files
KeruOS/Makefile
T

25 lines
448 B
Makefile

# Keru OS — top-level convenience targets.
# These are thin wrappers around the real shell scripts.
SHELL := sh
# sibling repos (override if cloned elsewhere)
KAMA ?= ../kama
PKGS ?= ../kama-packages
.PHONY: rootfs install recipe-check clean
rootfs:
sh scripts/build-root.sh
install:
sh installer/install.sh
recipe-check:
@for f in $(PKGS)/*.sh; do \
sh -n "$$f" && echo "OK $$f" || echo "FAIL $$f"; \
done
clean:
rm -rf /tmp/keru