.PHONY: test shellcheck help version publish-boot

help:
	@echo "Targets: test shellcheck version publish-boot"

test:
	./tests/run.sh

shellcheck:
	shellcheck -x -s bash -S warning \
	  install.sh repair.sh update.sh uninstall.sh bootstrap/install \
	  bin/bgpx bin/bgpx-health lib/*.sh services/*.sh roles/*/install.sh tests/run.sh \
	  scripts/publish-boot.sh

version:
	@cat VERSION

publish-boot:
	./scripts/publish-boot.sh
