.PHONY: help docker-image docker-shell citadel-image citadel-kernel user-rootfs update-submodules build-appimg install-build-deps

BASE_DIR = $(shell pwd)
BASE_BINDMOUNT = type=bind,source=$(BASE_DIR),target=/home/builder/citadel
DOCKER_RUN = docker run -it --mount $(BASE_BINDMOUNT) citadel-builder
DOCKER_RUN_PRIV = docker run -it --privileged --mount $(BASE_BINDMOUNT) citadel-builder

#
# https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
# 
help:
	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) \
	| awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

docker-image: ## Create docker builder image.  You need to run this one time before running anything else.
	docker build -t citadel-builder scripts/docker

docker-shell: ## Open an interactive shell in the docker build container configured for running bitbake commands.
	$(DOCKER_RUN)

citadel-image: ## Build citadel-image with bitbake 
	$(DOCKER_RUN) bash -c "source setup-build-env && bitbake citadel-image"

citadel-kernel: ## Build citadel-kernel with bitbake
	$(DOCKER_RUN) bash -c "source setup-build-env && bitbake citadel-kernel"

bootloader: ## Build systemd-boot
	$(DOCKER_RUN) bash -c "source setup-build-env && bitbake systemd-boot"

build-appimg: ## Build an application image
	$(DOCKER_RUN_PRIV) bash -c 'sudo APPIMG_BUILDER_BASE=$${PWD}/appimg-builder appimg-builder/stage-one.sh --no-confirm -z -d build/appimg'

update-submodules: ## Retrieve or update submodule projects
	git submodule update --init

install-build-deps:
	sudo apt install --no-install-recommends build-essential python bzip2 cpio chrpath diffstat file texinfo inkscape libgmp-dev libmpc-dev libelf-dev gawk

clean-citadel-tools:
	$(DOCKER_RUN) bash -c "source setup-build-env && bitbake -ccleansstate citadel-rootfs && bitbake -ccleansstate citadel-realms && bitbake -ccleansstate citadel-desktopd"