Compare commits

..

No commits in common. "9daaace86ce332fc44f02897f87dee8b391b1839" and "b4614d5cb7c201c86dbb9377a40f1bd7efb1e9fe" have entirely different histories.

2 changed files with 7 additions and 8 deletions

View File

@ -94,11 +94,11 @@ publish: #> Publish Gemini files to site
show: #> Display key variables
@echo "Key variables defined in ${self}:"
@echo
@echo "Gemini site .................................. ${GEMINI_SITE}"
@echo "Genini site URL .............................. ${GEMINI_URL}"
@echo "Gemini site................................... ${GEMINI_SITE}"
@echo "Genini site URL............................... ${GEMINI_URL}"
@echo
@echo "\tSite index template ........................ ${site_index_template}"
@echo "\tBanner template ............................ ${banner_template}"
@echo "\tSite index template......................... ${site_index_template}"
@echo "\tBanner template............................. ${banner_template}"
@echo
@echo "\tCurated content directories:"
@echo "\t\t${curate}"

View File

@ -45,8 +45,7 @@ templates_expanded ::= $(addprefix ${staging_dir}/,${templates:.gmi.m4=.gmi})
gemtext ::= $(wildcard *.gmi)
gemtext_copied ::= $(addprefix ${staging_dir}/,${gemtext})
# Create list of potential dependencies of *.gmi.m4 templates
all ::= $(notdir $(filter-out %.gmi.m4 _% %~, $(wildcard *)))
all ::= $(notdir $(filter-out _%,%.m4,%~,.%,$(wildcard *)))
#-----------------------------------------------------------------------------#
#
@ -78,8 +77,8 @@ show: #> Show enironment variables with values
@echo
@echo "Makefile list: ${MAKEFILE_LIST}"
@echo
@echo "Content section .............................. ${content_section}"
@echo "Staging space ................................ ${staging_dir}"
@echo "Content section............................... ${content_section}"
@echo "Staging space................................. ${staging_dir}"
@echo
@echo "Templates found:"
@for x in ${templates}; do echo "\t$$x"; done