From 95c875b2b6870f428ce42ddaf065d9fef9e74b64 Mon Sep 17 00:00:00 2001 From: Andrew Stryker Date: Tue, 10 Oct 2023 15:26:51 -0700 Subject: [PATCH] Add a space for clarity --- Makefile | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/Makefile b/Makefile index 99d7722..777bd0f 100644 --- a/Makefile +++ b/Makefile @@ -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"