Add a space for clarity
This commit is contained in:
parent
994a9ea35b
commit
95c875b2b6
21
Makefile
21
Makefile
@ -72,12 +72,12 @@ build: ${site_index} #> Build the site (default)
|
|||||||
@echo Built local site in this directory: ${STAGING}
|
@echo Built local site in this directory: ${STAGING}
|
||||||
|
|
||||||
publish: #> Publish Gemini files to site
|
publish: #> Publish Gemini files to site
|
||||||
# rsync options:
|
@# rsync options:
|
||||||
# verbose: show each operation
|
@# verbose: show each operation
|
||||||
# links: preserve symlinks
|
@# links: preserve symlinks
|
||||||
# times: preserve modification times
|
@# times: preserve modification times
|
||||||
# delete: delete extraneous files, i.e., files on destination
|
@# delete: delete extraneous files, i.e., files on destination
|
||||||
# chmod: set permsions
|
@# chmod: set permsions
|
||||||
@echo Publishing in ${STAGING} to ${GEMINI_SITE}
|
@echo Publishing in ${STAGING} to ${GEMINI_SITE}
|
||||||
@rsync \
|
@rsync \
|
||||||
--verbose \
|
--verbose \
|
||||||
@ -142,25 +142,22 @@ ${banner}: ${banner_template} ${WORKING}
|
|||||||
@m4 --include=${MAKO_DIR} $< > $@
|
@m4 --include=${MAKO_DIR} $< > $@
|
||||||
@echo "\t✓ Generated site banner"
|
@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} $< > $@
|
@m4 --include=${MAKO_DIR} --define=WORKING=${WORKING} $< > $@
|
||||||
@echo ${BUILD_DATE_MSG} >> $@
|
@echo ${BUILD_DATE_MSG} >> $@
|
||||||
@echo "\t✓ Generated site index file"
|
@echo "\t✓ Generated site index file"
|
||||||
|
|
||||||
${curate_dirs}: %: ${WORKING} ${STAGING}
|
${curate_dirs}: %:
|
||||||
@echo
|
@echo
|
||||||
@echo "Entering section: $@"
|
@echo "Entering section: $@"
|
||||||
@echo
|
@echo
|
||||||
@mkdir -p ${WORKING}/$@ ${STAGING}/$@
|
|
||||||
@#cd $@ && ${MAKE} -f ${CURATE_MAKE} build
|
|
||||||
@${MAKE} -C $@ -f ${CURATE_MAKE} build
|
@${MAKE} -C $@ -f ${CURATE_MAKE} build
|
||||||
@echo "✓ Completed $@ section"
|
@echo "✓ Completed $@ section"
|
||||||
|
|
||||||
${index_dirs}: %: ${WORKING} ${STAGING}
|
${index_dirs}: %:
|
||||||
@echo
|
@echo
|
||||||
@echo "Entering section: $@"
|
@echo "Entering section: $@"
|
||||||
@echo
|
@echo
|
||||||
@mkdir -p ${WORKING}/$@ ${STAGING}/$@
|
|
||||||
@#cd ${CONTENT}/$@ && ${MAKE} -f ${index_make} build
|
@#cd ${CONTENT}/$@ && ${MAKE} -f ${index_make} build
|
||||||
@echo "✓ Completed $@ section"
|
@echo "✓ Completed $@ section"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user