Add a space for clarity

This commit is contained in:
Andrew Stryker 2023-10-10 15:26:51 -07:00
parent 994a9ea35b
commit 95c875b2b6
1 changed files with 10 additions and 13 deletions

View File

@ -72,12 +72,12 @@ build: ${site_index} #> Build the site (default)
@echo Built local site in this directory: ${STAGING}
publish: #> Publish Gemini files to site
# rsync options:
# verbose: show each operation
# links: preserve symlinks
# times: preserve modification times
# delete: delete extraneous files, i.e., files on destination
# chmod: set permsions
@# rsync options:
@# verbose: show each operation
@# links: preserve symlinks
@# times: preserve modification times
@# delete: delete extraneous files, i.e., files on destination
@# chmod: set permsions
@echo Publishing in ${STAGING} to ${GEMINI_SITE}
@rsync \
--verbose \
@ -136,31 +136,28 @@ help: #> Display this help message
# building directories and changing timestamps--let's have Make deal with this
${WORKING} ${STAGING}: %:
@mkdir -p $@
@echo "\t✓Created $@"
@echo "\t✓ Created $@"
${banner}: ${banner_template} ${WORKING}
@m4 --include=${MAKO_DIR} $< > $@
@echo "\t✓ Generated site banner"
${site_index}: ${site_index_template} ${banner} ${curate_dirs} ${index_dirs}
${site_index}: ${site_index_template} ${STAGING} ${banner} ${curate_dirs} ${index_dirs}
@m4 --include=${MAKO_DIR} --define=WORKING=${WORKING} $< > $@
@echo ${BUILD_DATE_MSG} >> $@
@echo "\t✓ Generated site index file"
${curate_dirs}: %: ${WORKING} ${STAGING}
${curate_dirs}: %:
@echo
@echo "Entering section: $@"
@echo
@mkdir -p ${WORKING}/$@ ${STAGING}/$@
@#cd $@ && ${MAKE} -f ${CURATE_MAKE} build
@${MAKE} -C $@ -f ${CURATE_MAKE} build
@echo "✓ Completed $@ section"
${index_dirs}: %: ${WORKING} ${STAGING}
${index_dirs}: %:
@echo
@echo "Entering section: $@"
@echo
@mkdir -p ${WORKING}/$@ ${STAGING}/$@
@#cd ${CONTENT}/$@ && ${MAKE} -f ${index_make} build
@echo "✓ Completed $@ section"