From efc7adcade7c493d92f5f8cc90b95336dc72e806 Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Sun, 9 Jun 2024 20:55:48 +0200 Subject: [PATCH] make check --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index 93d029f..5dc63a7 100644 --- a/Makefile +++ b/Makefile @@ -3,12 +3,21 @@ help: @echo "\tmake pdf" @echo "\tmake creature" @echo "\tmake show" + @echo "\tmake check (to check your dependencies)" @echo "\tmake install-godot" @echo "\tmake uninstall-godot" .PHONY: pdf pdf: overview.pdf +.PHONY: check +check: + @which lowdown >/dev/null || echo 'install lowdown (optional)' + @which git-lfs >/dev/null || echo 'install git-lfs' + @which pdflatex >/dev/null || echo 'install pdflatex (optional)' + @which less >/dev/null || echo 'install less (you absolute cave-man)' + @godot --version | grep -q '4.2' || echo 'install godot version 4.2' + rubbish/: mkdir rubbish