deps: check if pandoc and awk are installed #8

Merged
igor merged 1 commits from deps into main 2022-12-21 16:42:15 +01:00
1 changed files with 14 additions and 0 deletions

View File

@ -6,6 +6,10 @@
.DEFAULT_GOAL:=help
SHELL:=/bin/bash
pandoc=$(shell command -v pandoc)
pandoc_version=$(shell pandoc --version | sed -e 's/.* // ; 1q')
awk=$(shell command -v awk)
.PHONY: help deps
help: ## Display this help
@ -13,3 +17,13 @@ help: ## Display this help
deps: ## Check dependencies
$(info Checking and getting dependencies)
ifeq ($(strip ($pandoc)),)
@echo "pandoc is required"
else
@echo "pandoc" $(pandoc_version) "is installed"
endif
ifeq ($(strip ($awk)),)
@echo "awk is required"
else
@echo "awk is installed"
endif